:root {
    --color-green-light-bg: #ecfdf5;
    --color-primary: #009966;
    --color-primary-dark: #004f3b;
    --color-bg-dark: #0f172a;
    --color-text-dark: #0f172b;
    --color-text-secondary: #314158;
    --color-text-muted: #6a7282;
    --color-text-light: #99a1af;
    --color-white: #ffffff;
    --color-nav-link: rgba(255, 255, 255, 0.70);
    --color-border: #f3f4f6;
    --color-bg-page: #f9fafb;
    --color-orange: #f54900;
    --color-red: #fb2c36;

    --font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg-page);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sub-nav {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 0;
}

.sub-nav-container {
    max-width: 1431px;
    margin: 0 auto;
    padding: 0 76px;
    display: flex;
    justify-content: space-between;
}

.sub-nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.18px;
    transition: color 0.2s;
}

.sub-nav-link:hover {
    color: var(--color-text-dark);
}

.sub-nav-item {
    position: relative;
}

.sub-nav-item > .sub-nav-link {
    padding: 4px 0;
}

.sub-nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    min-width: 200px;
    z-index: 100;
    margin-top: 12px;
}

.sub-nav-item:hover .sub-nav-dropdown {
    display: block;
}

.sub-nav-dropdown-link {
    display: block;
    padding: 8px 16px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.sub-nav-dropdown-link:hover {
    background: var(--color-green-light-bg);
    color: var(--color-primary);
}

.main-content {
    max-width: 1431px;
    margin: 0 auto;
    padding: 0 76px;
}

.categories-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 0 32px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.nav-btn img {
    width: 7px;
    height: 12px;
}

.categories-row {
    display: flex;
    gap: 16px;
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-row::-webkit-scrollbar {
    display: none;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 140px;
}

.category-image {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    transition: transform 0.2s;
}

.category-card:hover .category-image {
    transform: scale(1.02);
}

.category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.18px;
    color: var(--color-text-secondary);
    text-align: center;
}

.sofia-pro-nowdix,
.sofia-pro-nowdix * {
    font-size : 15px !important;
    font-family: "sofia-pro", Arial, sans-serif !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-synthesis: none !important;
    letter-spacing: -0.055em !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.announcement-band {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ff5a36;
    border-bottom: 0;
}

.announcement-band-inner {
    max-width: 1431px;
    margin: 0 auto;
    padding: 6px 24px;
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 0;
    text-align: center;
}

.announcement-message {
    flex: 0 1 auto;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: -0.14px;
}

.announcement-link {
    flex: 0 1 auto;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.announcement-link:hover {
    color: #ffffff;
}

.hero-banner {
    position: relative;
    border-radius: 24px;
    margin-bottom: 32px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    animation: heroFadeIn 0.5s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-slide-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1924 / 361;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.18px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
    width: fit-content;
}

.hero-slide-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 36px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.hero-slide-subtitle {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.18px;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 16px;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #00bc7d;
    color: var(--color-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.13px;
    padding: 8px 16px;
    border-radius: 10px;
    width: fit-content;
    transition: background-color 0.2s;
}

.hero-slide-btn:hover {
    background-color: var(--color-primary);
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}

.hero-nav-btn:hover {
    background: var(--color-white);
}

.hero-nav-btn img {
    width: 7px;
    height: 12px;
}

.hero-nav-prev {
    left: 12px;
}

.hero-nav-next {
    right: 12px;
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.hero-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.40);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.hero-dot.active {
    width: 24px;
    border-radius: 9999px;
    background-color: var(--color-white);
}

.featured-section {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

.featured-picks {
    flex: 1;
    background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
    border-radius: 24px;
    padding: 24px;
}

.picks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.picks-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.picks-title {
    font-size: 30px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.75px;
    line-height: 36px;
    color: var(--color-white);
}

.picks-subtitle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.18px;
    color: #ffedd4;
}

.lightning-icon {
    width: 13px;
    height: 15px;
}

.view-all-btn {
    background-color: var(--color-white);
    color: var(--color-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.18px;
    padding: 12px 24px;
    border-radius: 10px;
    transition: opacity 0.2s;
}

.view-all-btn:hover {
    opacity: 0.9;
}

.picks-products {
    display: flex;
    gap: 20px;
}

.pick-card {
    flex: 1;
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.10), 0px 1px 3px rgba(0, 0, 0, 0.10), 0px 0px 0px 1px #f3f4f6;
    display: flex;
    flex-direction: column;
}

.pick-image {
    height: 180px;
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: #00bc7d;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: -0.18px;
    padding: 4px 8px;
    border-radius: 6px;
}

.discount-badge.orange {
    background-color: var(--color-orange);
}

.pick-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.pick-brand {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.18px;
    text-transform: uppercase;
    color: rgba(245, 73, 0, 0.90);
}

.pick-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.38px;
    line-height: 20.63px;
    color: var(--color-text-dark);
}

.pick-footer {
    padding: 16px 18px;
    background-color: rgba(249, 250, 251, 0.80);
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pick-footer.no-discount {
    padding-top: 20px;
}

.pick-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.old-price {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.18px;
    line-height: 10px;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.new-price {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.18px;
    color: var(--color-text-dark);
}

.decimal {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.18px;
    color: #62748e;
}

.add-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    color: var(--color-orange);
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.18px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #ffd6a7;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.10), 0px 1px 3px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: all 0.2s;
}

.add-btn:hover {
    background-color: #fff7ed;
}

.add-btn .cart-icon {
    width: 14px;
    height: 14px;
}

.daily-deal {
    width: 353px;
    background: linear-gradient(135deg, rgba(0, 79, 59, 1) 0%, rgba(0, 95, 90, 1) 100%);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.10), 0px 20px 25px rgba(0, 0, 0, 0.10);
}

.deal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.deal-title {
    font-size: 24px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.60px;
    color: var(--color-white);
}

.deal-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(251, 44, 54, 0.20);
    border: 1px solid rgba(251, 44, 54, 0.30);
    border-radius: 9999px;
    padding: 4px 12px 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.50px;
    text-transform: uppercase;
    color: var(--color-white);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.92);
}

.countdown {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.countdown-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background-color: rgba(0, 0, 0, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 10px;
}

.countdown-value {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.18px;
    line-height: 20px;
    color: var(--color-white);
}

.countdown-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: -0.18px;
    text-transform: uppercase;
    color: #a4f4cf;
}

.deal-product {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.25);
}

.deal-discount-ribbon {
    position: absolute;
    top: -10px;
    right: 16px;
    width: 56px;
    height: 70px;
    background-color: #ef4444;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.18px;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
}

.deal-image {
    display: block;
    height: 161px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.12);
}

.deal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deal-brand {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.18px;
    color: var(--color-text-muted);
    text-decoration: none;
}

.deal-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.45px;
    color: #101828;
    margin-bottom: 8px;
    text-decoration: none;
}

.deal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.deal-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.deal-old-price {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.18px;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.deal-new-price {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.18px;
    color: var(--color-primary);
}

.deal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-family);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.15px;
    padding: 10px 24px;
    border-radius: 16px;
    box-shadow: 0px 4px 6px #a4f4cf, 0px 10px 15px #a4f4cf;
    cursor: pointer;
    transition: all 0.2s;
}

.deal-btn:hover {
    background-color: #008855;
}

.deal-btn-icon {
    width: 16px;
    height: 16px;
}

.products-section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.60px;
    color: var(--color-text-dark);
}

.section-subtitle {
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.section-nav {
    width: 72px;
    height: 32px;
}

.slider-nav {
    display: flex;
    gap: 8px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.slider-btn:hover {
    background-color: #f3f4f6;
    border-color: #d1d5dc;
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.slider-btn img {
    width: 16px;
    height: 16px;
}

.products-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-row::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 240px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-image {
    height: 180px;
    border-radius: 12px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.45px;
    line-height: 21.60px;
    color: var(--color-text-dark);
}

.product-brand {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.18px;
    line-height: 1.2;
    color: var(--color-primary);
    text-decoration: none;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.product-prices {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.product-old-price {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.18px;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.product-new-price {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.18px;
    color: var(--color-primary);
}

.product-cart-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.product-cart-btn:hover {
    background-color: #ecfdf5;
    border-color: var(--color-primary);
}

.product-cart-btn img {
    width: 16px;
    height: 16px;
}

.price-offers-section {
    margin-bottom: 40px;
}

.price-offer-card {
    flex: 0 0 320px;
    width: 320px;
    height: 400px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.10), 0px 1px 3px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.price-offer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 11px;
    font-weight: 700;
}

.price-offer-note {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.price-offer-brand {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.18px;
    text-transform: none;
    color: var(--color-primary);
}

.price-offer-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-offer-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background-color: #f8fafc;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.price-offer-product-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-offer-product-thumb {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.price-offer-product-copy {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 4px;
}

.price-offer-product-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.18px;
    line-height: 1.35;
    color: var(--color-text-dark);
    text-decoration: none;
}

.price-offer-line-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
}

.price-offer-line-qty {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
}

.price-offer-line-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.price-offer-line-current-price {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-secondary);
}

.price-offer-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.price-offer-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-offer-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-primary);
}

.price-offer-line-note {
    font-size: 12px;
    color: var(--color-text-secondary);
}

.price-offer-add-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.price-offer-add-btn:hover {
    opacity: 0.92;
}

.favorites-section {
    background-color: rgba(236, 253, 245, 0.50);
    margin-left: -76px;
    margin-right: -76px;
    padding: 32px 76px 48px;
    margin-bottom: 0;
}

.large-cards .product-card-large {
    flex: 0 0 280px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-image-large {
    height: 220px;
    border-radius: 12px;
}

.product-name-large {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.80px;
    color: var(--color-text-dark);
}

.product-brand-large {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.18px;
    line-height: 1.2;
    color: var(--color-primary);
    text-decoration: none;
}

.product-cart-btn-large {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.product-cart-btn-large:hover {
    background-color: #ecfdf5;
    border-color: var(--color-primary);
}

.product-cart-btn-large img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1200px) {

    .sub-nav-container,
    .main-content {
        padding: 0 32px;
    }

    .favorites-section {
        margin-left: -32px;
        margin-right: -32px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .featured-section {
        flex-direction: column;
    }

    .daily-deal {
        width: 100%;
    }

    .hero-slide-image {
        aspect-ratio: 16 / 7;
    }

    .hero-slide-overlay {
        padding: 32px 48px;
    }
}

@media (max-width: 768px) {

    .sub-nav {
        padding: 12px 0;
    }

    .sub-nav-container {
        overflow-x: auto;
        gap: 20px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 16px;
    }

    .sub-nav-container::-webkit-scrollbar {
        display: none;
    }

    .sub-nav-link {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .main-content {
        padding: 0 16px;
    }

    .categories-section {
        padding: 16px 0 20px;
    }

    .categories-row {
        overflow-x: auto;
    }

    .category-card {
        min-width: 100px;
    }

    .category-image {
        width: 100px;
        height: 100px;
        border-radius: 12px;
    }

    .announcement-band-inner {
        padding: 6px 16px;
    }

    .announcement-item {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        padding: 2px 0;
        flex-wrap: wrap;
    }

    .announcement-message {
        font-size: 11px;
        line-height: 15px;
    }

    .announcement-link {
        font-size: 11px;
    }

    .picks-title {
        font-size: 22px;
        line-height: 28px;
    }

    .picks-products {
        flex-direction: column;
    }

    .products-row,
    .large-cards {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .product-card {
        flex: 0 0 280px;
        overflow: hidden;
    }

    .price-offer-card {
        flex: 0 0 300px;
        width: 300px;
    }

    .product-card .product-image {
        height: 220px;
    }

    .product-card .product-name {
        font-size: 17px;
        font-weight: 600;
        letter-spacing: -0.80px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .product-card .product-cart-btn {
        width: 44px;
        height: 44px;
    }

    .product-card .product-cart-btn img {
        width: 20px;
        height: 20px;
    }

    .product-card-large {
        flex: 0 0 280px;
    }

    .favorites-section {
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-banner {
        border-radius: 16px;
    }

    .hero-slide {
        border-radius: 16px;
    }

    .hero-slide-image {
        aspect-ratio: auto;
        min-height: 200px;
        background-size: contain;
        background-position: center;
    }

    .hero-slide-overlay {
        padding: 24px 24px 24px 56px;
    }

    .hero-slide-title {
        font-size: 22px;
        line-height: 28px;
        letter-spacing: -0.8px;
    }

    .hero-slide-subtitle {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .hero-nav-btn {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {

    .hero-slide-image {
        aspect-ratio: auto;
        min-height: 180px;
        background-size: contain;
        background-position: center;
    }

    .hero-slide-overlay {
        padding: 16px 16px 16px 48px;
    }

    .hero-slide-title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: -0.5px;
    }

    .hero-slide-badge {
        font-size: 9px;
        padding: 3px 8px;
    }

    .hero-slide-btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-nav-prev {
        left: 8px;
    }

    .hero-nav-next {
        right: 8px;
    }
}

