/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.grid {
    display: grid;
}

body {
    font-family: "Sofia Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f6f6f6;
    color: #3b4656;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3b1a6e;
    margin: 0;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-status {
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #3b4656;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-primary {
    background-color: #3b1a6e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #2d1454;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 26, 110, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3b1a6e;
    border: 1px solid #3b1a6e;
}

.btn-secondary:hover {
    background-color: #3b1a6e;
    color: #fff;
}


/* Search Container */
.search-container {
    width: 100%;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.search-box {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: row;
    height: 40px;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-ai-icon {
    line-height: 1.5;
    position: relative;
    left: 12px;
    top: 2px;
    width: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    font-size: 13px;
    width: 100%;
    margin-left: 5px;
    height: 35px;
    display: block;
    border: 0;
    flex: 1 1 100%;
    padding-left: 10px;
    color: #424747;
    background: transparent;
    outline: none;
    font-family: inherit;
}

.search-input::placeholder {
    color: #999;
}

.speak-mic-btn {
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    width: 40px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0;
    padding: 0;
    margin: 0 5px;
    transition: opacity 0.3s;
}

.speak-mic-btn:hover {
    opacity: 0.7;
}

.search-btn {
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    width: 70px;
    align-items: center;
    justify-content: center;
    background-color: rgb(59, 26, 110);
    border: 0;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    padding: 0;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: rgb(45, 20, 84);
}

.search-btn svg {
    height: 20px;
    width: 20px;
}

/* Products Section */
.main-content {
    margin-top: 2rem;
}

/* Promotion Banners */
.promo-banner {
    flex-wrap: wrap;
    min-height: 125px;
    overflow: hidden;
    margin-top: 0.5rem;
    border-radius: 10px;
}

.promo-banner-1 {
    background-color: rgb(248, 246, 252);
}

.promo-banner-2 {
    background-color: rgb(246, 246, 246);
}

.promo-banner-content {
    display: flex;
    gap: 1rem;
    flex: 1 0 100%;
    margin: 0.0625rem;
    align-items: center;
    padding: 1rem;
}

.promo-banner-content-2 {
    gap: 0px;
}

.promo-image-wrapper {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image-wrapper .van-image {
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-image-wrapper .van-image__img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.promo-text-wrapper {
    padding-right: 1rem;
    flex: 1 1 100%;
}

.promo-text-content {
    display: flex;
    flex-direction: column;
    height: 99px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
}

.promo-title {
    text-align: center;
    color: rgb(59, 26, 110);
    font-weight: 500;
    line-height: 1.5;
    font-size: 15px;
    min-width: 233px;
    margin: 0;
    padding: 0;
}

.promo-title.text-truncate {
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.promo-btn {
    display: flex;
    padding: 10px 15px;
    min-width: 100px;
    min-height: 2.1875rem;
    background-color: rgb(59, 26, 110);
    border-radius: 2.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.promo-btn:hover {
    background-color: rgb(45, 20, 84);
}

/* Customize Banner */
.customize-banner {
    display: flex;
    flex-direction: column;
    min-height: 223px;
    padding: 12px;
    background-color: rgb(227, 218, 240);
    border-radius: 10px;
    margin-top: 10px;
}

.customize-banner .van-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customize-banner .van-image__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.customize-btn {
    display: flex;
    padding: 10px 15px;
    height: 3rem;
    min-width: 12rem;
    background-color: rgb(59, 26, 110);
    border-radius: 2.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 1rem;
}

.customize-btn:hover {
    background-color: rgb(45, 20, 84);
}

/* Recently Viewed Section */
.recently-viewed-section {
    margin-top: 10px;
}

.recently-viewed-title {
    padding: 5px 0;
    margin: 0;
}

.recently-viewed-title span {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.recently-viewed-container {
    padding: 10px;
    background-color: rgb(227, 218, 240);
    height: 100%;
    justify-content: flex-start;
    min-height: 180px;
    overflow-x: hidden;
}

.recently-viewed-list {
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    position: relative;
    overflow: auto hidden;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.recently-viewed-list::-webkit-scrollbar {
    height: 6px;
}

.recently-viewed-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.recently-viewed-list::-webkit-scrollbar-thumb {
    background: rgb(59, 26, 110);
    border-radius: 3px;
}

.recently-viewed-item {
    list-style: none;
    margin: 5px 0;
    position: relative;
    padding-left: 5px;
    flex-shrink: 0;
}

.recent-item-content {
    gap: 2px;
}


.recent-item-name {
    font-weight: 400;
    font-size: 15px;
}

.recent-item-price {
    color: rgb(59, 26, 110);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Multi-Brand Cards Section */
.multi-brand-section {
    margin-top: 10px;
}

.multi-brand-title {
    padding: 5px 0;
    margin: 0;
}

.multi-brand-title span {
    text-transform: uppercase;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.multi-brand-container {
    flex-wrap: nowrap;
    align-items: flex-start;
    overflow-x: scroll;
    scrollbar-width: none;
    scroll-padding: 0px 1.25rem;
    padding: 10px;
    background-color: rgb(227, 218, 240);
    height: 100%;
    justify-content: flex-start;
    min-height: 180px;
}

.multi-brand-container::-webkit-scrollbar {
    display: none;
}

.multi-brand-list {
    top: 0px;
    left: 0px;
    width: auto;
    gap: 8px;
    overflow: auto hidden;
    align-items: flex-start;
    justify-content: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.multi-brand-list::-webkit-scrollbar {
    display: none;
}

.multi-brand-item {
    width: unset;
    list-style: none;
    margin: 5px 0;
    position: relative;
    padding-left: 5px;
    flex-shrink: 0;
}

.multi-brand-content {
    gap: 2px;
    width: 180px;
}

.multi-brand-name {
    font-weight: 400;
    font-size: 15px;
}

.multi-brand-price {
    color: rgb(59, 26, 110);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Personalize Gift Card Section */
.personalize-section {
    padding: 1rem;
    background-color: rgb(246, 246, 246);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.personalize-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    place-self: flex-start;
}

.personalize-content {
    gap: 1rem;
}

.personalize-hero-image {
    width: 100%;
}

.personalize-hero-image .van-image__img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.personalize-text-section {
    gap: 1rem;
}

.personalize-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
}

.personalize-text p {
    margin: 0;
}

.personalize-options {
    gap: 1rem;
}

.personalize-options-row {
    gap: 1rem;
    font-size: 15px;
}

.personalize-option {
    gap: 1.5rem;
}

.personalize-option-image {
    width: 155px;
    height: 98px;
}

.personalize-option-image .van-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.van-image__error {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    border-radius: 6px;
}

.van-image__error-icon {
    font-size: 2rem;
    color: #999;
}

.personalize-btn {
    padding: 10px;
    min-width: 120px;
    min-height: 2.1875rem;
    background-color: rgb(59, 26, 110);
    border-radius: 2.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s;
}

.personalize-btn:hover {
    background-color: rgb(45, 20, 84);
}

/* Kids Section */
.kids-section {
    padding: 1rem;
    background-color: rgb(246, 246, 246);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.kids-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    place-self: flex-start;
}

.kids-content {
    gap: 1rem;
}

.kids-hero-image {
    width: 100%;
}

.kids-hero-image .van-image__error {
    width: 100%;
    min-height: 200px;
}

.kids-text-section {
    gap: 1rem;
}

.kids-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
}

.kids-text p {
    margin: 0;
}

.kids-options {
    gap: 1rem;
}

.kids-grid {
    display: grid;
    gap: 1rem;
    font-size: 14px;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
}

.kids-option {
    gap: 1.5rem;
}

.kids-option-image {
    width: 155px;
    height: 98px;
}

.kids-option-image .van-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Mastercard Gift Card Section */
.mastercard-section {
    padding: 1rem;
    background-color: rgb(246, 246, 246);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.mastercard-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    place-self: flex-start;
}

.mastercard-content {
    gap: 1rem;
}

.mastercard-hero-image {
    width: 100%;
}

.mastercard-hero-image .van-image__img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.mastercard-text-section {
    gap: 1rem;
}

.mastercard-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
}

.mastercard-text p {
    margin: 0;
}

.mastercard-text b {
    font-weight: 700;
}

.mastercard-options {
    gap: 1rem;
}

.mastercard-options-row {
    gap: 1rem;
    font-size: 15px;
}

.mastercard-option {
    gap: 1.5rem;
}

.mastercard-option-image {
    width: 155px;
    height: 98px;
}

.mastercard-option-image .van-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mastercard-btn {
    padding: 10px;
    min-width: 120px;
    min-height: 2.1875rem;
    background-color: rgb(59, 26, 110);
    border-radius: 2.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s;
}

.mastercard-btn:hover {
    background-color: rgb(45, 20, 84);
}

/* Experiences Section */
.experiences-section {
    padding: 1rem;
    background-color: rgb(246, 246, 246);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.experiences-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    place-self: flex-start;
}

.experiences-content {
    gap: 1rem;
}

.experiences-top {
    gap: 1rem;
}

.experiences-options-wrapper {
    gap: 1rem;
}

.experiences-grid {
    display: grid;
    gap: 1rem;
    font-size: 14px;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
}

.experiences-option {
    gap: 1.5rem;
}

.experiences-option-image {
    width: 155px;
    height: 98px;
}

.experiences-option-image .van-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.experiences-hero-image {
    width: 100%;
}

.experiences-hero-image .van-image__img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Business Section */
.business-section {
    padding: 1rem;
    background-color: rgb(246, 246, 246);
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

.business-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    place-self: flex-start;
}

.business-content {
    gap: 1rem;
}

.business-hero-image {
    width: 100%;
}

.business-hero-image .van-image__img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.business-text-section {
    gap: 1rem;
}

.business-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: 15px;
    line-height: 1.5;
    padding: 0;
}

.business-text p {
    margin: 0;
}

.business-options {
    gap: 1rem;
}

.business-options-row {
    gap: 1rem;
    font-size: 15px;
}

.business-option {
    gap: 1.5rem;
}

.business-option-image {
    width: 155px;
    height: 98px;
}

.business-option-image .van-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.business-btn {
    padding: 10px;
    min-width: 120px;
    min-height: 2.1875rem;
    background-color: rgb(59, 26, 110);
    border-radius: 2.5rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.3s;
}

.business-btn:hover {
    background-color: rgb(45, 20, 84);
}

/* Footer */
.footer {
    background-color: rgb(255, 255, 255);
    width: 100%;
}

.footer-content {
    width: 100%;
    padding: 1.25rem;
    background-color: rgb(59, 26, 110);
}

.footer-newsletter {
    gap: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: rgb(255, 255, 255);
}

.footer-newsletter-title {
    margin: 0;
}

.footer-email-form {
    margin: 0;
}

.footer-email-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-email-label {
    font-size: 0.875rem;
    white-space: nowrap;
}

.footer-email-input-wrapper {
    background-color: #FFFFFF;
    padding: 2.5px;
    width: 100%;
    box-sizing: border-box;
}

.footer-email-input-container {
    display: flex;
    align-items: center;
    position: relative;
    background-color: #FFFFFF;
    height: 2.1875rem;
    box-sizing: border-box;
}

.footer-email-input {
    border: 0;
    height: 35px;
    font-size: 1rem;
    color: #4a5a68;
    font-weight: 500;
    font-style: normal;
    width: 90%;
    padding-left: 10px;
    outline: none;
}

.footer-email-submit {
    position: absolute;
    right: 0;
    height: 100%;
    width: 10%;
    background-color: rgb(59, 26, 110);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s;
}

.footer-email-submit:hover {
    background-color: rgb(45, 20, 84);
}

.footer-social {
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin: 1rem 0px;
}

.footer-social > *:first-child {
    margin-bottom: 0;
}

.footer-social-title {
    font-size: 1.5rem;
    text-align: center;
    display: block;
    align-items: center;
}

.footer-social-list {
    gap: 2rem;
    display: flex;
    align-items: center;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon .van-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-links {
    margin-top: 1rem;
}

.footer-link-item {
    margin: 0.9375rem 5px;
    padding-bottom: 8px;
    position: relative;
    border-bottom: 1px solid #d7d5d5;
}

.footer-link-button {
    font-size: 0.875rem;
    text-transform: uppercase;
    width: 100%;
    display: flex;
    padding: 10px 0;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.footer-link-button span {
    display: flex;
    align-items: center;
}

.footer-link-button:hover {
    opacity: 0.8;
}

.footer-cookie {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cookie-link {
    height: 2rem;
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.footer-cookie-link:hover {
    opacity: 0.8;
}

.footer-disclaimer {
    margin: 2rem;
    min-height: 3rem;
    padding: 0px;
    border: 0px;
}

.footer-disclaimer-empty {
    font-family: inherit;
    line-height: 1.5;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0px;
    padding: 0px;
}

.footer-disclaimer-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-disclaimer-image .van-image {
    width: 100%;
    max-width: 600px;
}

.footer-disclaimer-image .van-image__img {
    width: 100%;
    height: auto;
}

.products-section {
    background-color: rgb(227, 218, 240);
    padding: 10px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
    flex-direction: column;
    border-radius: 10px;
}

.section-title {
    color: rgb(59, 26, 110);
    font-size: 1.5rem;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

.products-grid {
    width: 100%;
    gap: 0.75rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 850px;
    display: grid;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.product-card {
    min-height: 16.25rem;
    width: 100%;
    background: rgb(247, 249, 250);
    border-radius: 0.9375rem;
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-card-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-tag {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    background-color: rgb(255, 220, 0);
    color: rgb(59, 26, 110);
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    padding: 4px 8px;
}

.product-image-container {
    min-height: 7rem;
    padding: 8px 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(247, 249, 250);
}

.van-image {
    overflow: hidden;
    border-radius: 6px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

.product-info {
    gap: 0;
    display: flex;
    justify-content: space-between;
    max-height: 8.5rem;
    min-height: 7.5rem;
    background: rgb(255, 255, 255);
    border-radius: 0 0 0.75rem 0.75rem;
    flex-direction: column;
    padding: 0.75rem;
    position: unset;
    width: 100%;
}

.product-name {
    font-weight: 600;
    color: rgb(74, 90, 104);
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

.btn-buy {
    border-radius: 30px;
    padding: 10px;
    align-self: flex-end;
    background-color: rgb(59, 26, 110);
    color: rgb(255, 255, 255);
    font-size: 1rem;
    line-height: 1.5;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
    font-weight: 600;
    width: auto;
    margin-top: auto;
}

.btn-buy:hover {
    background-color: rgb(45, 20, 84);
}

.btn-buy span {
    display: inline-block;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b1a6e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#messageText {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #3b4656;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .search-container {
        margin: 1rem 0;
        padding: 0 10px;
    }
    
    .search-box {
        height: 38px;
    }
    
    .search-ai-icon {
        width: 30px;
        left: 8px;
    }
    
    .search-ai-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .search-input {
        font-size: 12px;
        padding-left: 8px;
    }
    
    .speak-mic-btn {
        width: 35px;
    }
    
    .speak-mic-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .search-btn {
        width: 60px;
    }
    
    .search-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .products-section {
        padding: 10px 15px 30px;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
    }
    
    .product-card {
        min-height: auto;
    }
    
    .product-tag {
        font-size: 0.85rem;
        min-height: 20px;
        padding: 2px 4px;
    }
    
    .product-name {
        font-size: 13px;
    }
    
    .btn-buy {
        font-size: 0.9rem;
        padding: 8px;
    }
    
    .promo-banner {
        min-height: auto;
        margin-top: 0.5rem;
    }
    
    .promo-banner-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .promo-image-wrapper {
        width: 100%;
    }
    
    .promo-image-wrapper .van-image {
        width: 80px;
        margin: 0 auto;
    }
    
    .promo-text-wrapper {
        padding-right: 0;
        width: 100%;
    }
    
    .promo-text-content {
        height: auto;
        align-items: center;
    }
    
    .promo-title {
        min-width: auto;
        font-size: 14px;
        margin-bottom: 0.5rem;
    }
    
    .promo-btn {
        min-width: 120px;
    }
    
    .customize-banner {
        min-height: auto;
        padding: 10px;
    }
    
    .customize-banner .van-image {
        margin-bottom: 0.5rem;
    }
    
    .customize-btn {
        min-width: 10rem;
        height: 2.5rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .recently-viewed-title span {
        font-size: 1.5rem;
    }
    
    .recently-viewed-container {
        min-height: 160px;
        padding: 8px;
    }
    
    
    .recent-item-name {
        font-size: 14px;
    }
    
    .recent-item-price {
        font-size: 0.8rem;
    }
    
    .multi-brand-title span {
        font-size: 1.5rem;
    }
    
    .multi-brand-container {
        min-height: 160px;
        padding: 8px;
        scroll-padding: 0px 1rem;
    }
    
    .multi-brand-content {
        width: 150px;
    }
    
    .personalize-section {
        padding: 0.75rem;
        gap: 10px;
    }
    
    .personalize-title {
        font-size: 1.25rem;
    }
    
    .personalize-options-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .personalize-option-image {
        width: 100%;
        max-width: 155px;
    }
    
    .kids-section,
    .mastercard-section,
    .experiences-section {
        padding: 0.75rem;
        gap: 10px;
    }
    
    .kids-title,
    .experiences-title {
        font-size: 1.25rem;
    }
    
    .mastercard-title {
        font-size: 1.4rem;
    }
    
    .kids-grid,
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mastercard-options-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .mastercard-option-image {
        width: 100%;
        max-width: 155px;
    }
    
    .business-section {
        padding: 0.75rem;
        gap: 10px;
    }
    
    .business-title {
        font-size: 1.25rem;
    }
    
    .business-options-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .business-option-image {
        width: 100%;
        max-width: 155px;
    }
    
    .footer-social-list {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-social-title {
        font-size: 1.25rem;
    }
    
    .footer-email-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-email-input-wrapper {
        width: 100%;
    }
}

