:root {
    --primary: #2d3b36;
    --secondary: #e6cec0;
    --text-main: #333333;
    --text-light: #666666;
    --bg-main: #fcfbf9;
    --bg-alt: #f5f0eb;
    --border: #eaeaea;
    --white: #ffffff;
    --accent: #d2a792;
    --pink-bg: #f8eef2;
    --green-bg: #eaf0ec;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-center {
    flex-grow: 1;
    text-align: center;
}

.top-bar-right {
    display: flex;
    gap: 16px;
}

/* Header */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}

.logo i {
    color: var(--accent);
}

.logo span {
    font-size: 10px;
    display: block;
    letter-spacing: 2px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.search-bar {
    flex-grow: 1;
    max-width: 500px;
    position: relative;
    margin: 0 40px;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg-main);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    border-color: var(--primary);
}

.search-bar button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 0 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.header-actions {
    display: flex;
    gap: 24px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: var(--text-main);
    position: relative;
    cursor: pointer;
}

.action-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.badge {
    position: absolute;
    top: -4px;
    right: 0px;
    background: var(--accent);
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav */
.main-nav {
    padding: 16px 0;
    border-top: 1px solid var(--border);
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 14px;
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--accent);
}

/* Hero */
.hero {
    position: relative;
    background-color: var(--pink-bg);
    height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 55%;
    object-fit: cover;
    object-position: center 15%;
    /* Perfect framing for the face */
    z-index: 1;
    /* Creates a premium seamless fade into the background color */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
    mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero .container {
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.mobile-slogan {
    display: none;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-main);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--text-main);
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-light);
}

.hero-features i {
    margin-right: 6px;
}

/* Category Section */
.category-section {
    background-color: #1a4412;
    padding: 20px 0 20px;
}

.category-section-title {
    color: var(--white);
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-left: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.cat-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px 0;
    flex-wrap: wrap;
}

.cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cat-img-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-circle-item:hover .cat-img-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cat-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
}

/* Promos Grid */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px auto;
}

.promo-card {
    border-radius: 8px;
    overflow: visible;
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
    margin-bottom: 30px;
}

.promo-card.bg-green,
.promo-card.bg-pink,
.promo-card.bg-sand {
    /* Background colors no longer needed as image fills entire card, but kept for fallback */
}

.promo-img {
    position: relative;
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    z-index: 1;
}

.promo-content {
    position: relative;
    margin-top: -50px;
    width: 85%;
    z-index: 2;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promo-title {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--text-main);
}

.promo-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.btn-small {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--text-main);
}

/* Horizontal Promo */
.horizontal-promo {
    background-color: var(--primary);
    color: var(--pink-bg);
    border-radius: 8px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hp-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hp-percent {
    font-size: 60px;
    font-weight: 500;
    color: var(--pink-bg);
    display: flex;
    align-items: flex-start;
}

.hp-percent-small {
    font-size: 24px;
    margin-top: 8px;
    margin-left: 2px;
}

.hp-off {
    font-size: 16px;
    letter-spacing: 2px;
    align-self: center;
    margin-top: 8px;
}

.hp-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(248, 238, 242, 0.3);
    margin: 0 40px;
}

.hp-center {
    flex: 1;
}

.hp-center h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--pink-bg);
}

.hp-center p {
    font-size: 14px;
    opacity: 0.9;
}

.hp-right {
    margin-left: 40px;
}

.horizontal-promo::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(248, 238, 242, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Story Promo Wrapper */
.story-promo-wrapper {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
}

.story-content-area {
    display: flex;
    flex-wrap: wrap;
    background: var(--pink-bg);
    border-radius: 8px;
    overflow: hidden;
    padding-bottom: 60px;
}

.story-promo-wrapper .horizontal-promo {
    margin-top: -70px;
    position: relative;
    z-index: 2;
    width: 95%;
    align-self: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-text-col {
    flex: 1;
    padding: 60px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-subtitle {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-title {
    font-size: 36px;
    margin: 16px 0;
    color: var(--primary);
    line-height: 1.2;
}

.story-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

.story-icons-row {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.story-icon-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex: 1;
    min-width: 140px;
}

.story-icon-item i {
    font-size: 24px;
    color: var(--accent);
}

.story-icon-item h4 {
    font-size: 12px;
    margin: 0 0 6px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-icon-item p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.story-img-col {
    flex: 1;
    min-width: 300px;
}

.story-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ad Banner Section */
.ad-banner-section {
    display: flex;
    gap: 20px;
    margin: 40px auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 20px; /* Space for shadow */
}

.ad-banner-section::-webkit-scrollbar {
    display: none;
}

.ad-banner-card {
    flex: 0 0 calc(50% - 10px);
    background: linear-gradient(135deg, #fdf6f7 0%, #f2dee4 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 280px;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ad-img-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    width: 45%;
    position: relative;
    z-index: 1;
}

.ad-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-content {
    flex: 0 0 55%;
    max-width: 55%;
    width: 55%;
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.ad-subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.ad-title {
    font-size: 26px;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 12px;
}

.ad-desc {
    font-size: 13px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.btn-ad {
    display: inline-block;
    background-color: #93384c; /* Burgundy button */
    color: white;
    padding: 10px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-ad:hover {
    background-color: var(--primary);
}

.ad-banner-card::before,
.ad-banner-card::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23d0ded5" d="M21 3C21 3 14 3 9 8C4 13 3 21 3 21C3 21 10 21 15 16C20 11 21 3 21 3Z"/></svg>');
    background-size: cover;
    z-index: 0;
    opacity: 0.5;
}
.ad-banner-card::before {
    top: -20px;
    right: -20px;
    transform: rotate(45deg);
}
.ad-banner-card::after {
    bottom: -20px;
    right: 40px;
    transform: rotate(135deg);
}

/* Elegant Heading */
.elegant-heading-wrapper {
    text-align: center;
    margin: 60px 0 30px;
}
.elegant-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.elegant-title {
    font-size: 38px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
}
.elegant-divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

/* Products Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
}

.section-title {
    font-size: 28px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    margin-left: 12px;
}

.view-all {
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-main);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.view-all:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
}

.product-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 16px;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 0 16px;
    height: 42px;
    overflow: hidden;
}

.product-price {
    font-weight: 600;
    font-size: 16px;
    padding: 0 16px;
    margin-bottom: 8px;
}

.product-old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 14px;
    margin-left: 8px;
    font-weight: 400;
}

.buy-now-container {
    padding: 0 16px 16px;
    margin-top: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-card:hover .buy-now-container {
    opacity: 1;
    visibility: visible;
}

.buy-now-btn {
    display: block;
    width: 100%;
    background-color: var(--text-main);
    color: var(--white);
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.buy-now-btn:hover {
    background-color: var(--primary);
}

.product-reviews {
    color: var(--text-light);
    margin-left: 4px;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 60px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-icon {
    font-size: 24px;
    color: var(--text-main);
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
}

.feature-desc {
    font-size: 12px;
    color: var(--text-light);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
}

.testi-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-content {
    flex: 1;
}

.testi-rating {
    color: #f5c518;
    font-size: 12px;
    margin-bottom: 8px;
}

.testi-text {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 8px;
}

.testi-author {
    font-size: 12px;
    font-weight: 600;
}

/* Newsletter */
.newsletter {
    background: var(--pink-bg);
    padding: 60px 0;
    text-align: center;
}

.news-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.news-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.news-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.news-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--white);
    border-radius: 4px 0 0 4px;
    outline: none;
}

.news-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 24px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.footer-desc {
    font-size: 13px;
    color: #a0aab2;
    margin-bottom: 24px;
}

.socials {
    display: flex;
    gap: 16px;
    font-size: 18px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aab2;
    font-size: 13px;
}

.footer-links a:hover {
    color: white;
}

.app-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.app-links img {
    height: 35px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #a0aab2;
}

.view-all-card,
.mobile-view-all-container {
    display: none;
}

.mobile-search-btn {
    display: none;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .promos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .feature-item {
        width: calc(33.33% - 24px);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-main {
        flex-wrap: wrap;
        padding: 15px 0;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 24px;
    }

    /* Icon-only header actions on mobile to save space */
    .header-actions {
        gap: 16px;
    }

    .action-item {
        font-size: 0;
    }

    .action-item i {
        font-size: 24px;
        margin-bottom: 0;
    }

    .badge {
        top: -6px;
        right: -8px;
    }

    .logo img {
        height: 55px !important;
    }

    .mobile-search-btn {
        display: flex;
    }

    .search-bar {
        display: none;
        order: 3;
        max-width: 100%;
        margin: 16px 0 0 0;
        width: 100%;
        flex: 1 1 100%;
    }

    .search-bar.active {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
        margin-right: 12px;
    }

    /* Dropdown Navigation for Mobile */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border);
    }

    .main-nav.active {
        display: block !important;
    }

    .main-nav .nav-list {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        align-items: flex-start;
    }

    /* Stacked Hero for Mobile */
    .hero {
        height: 380px;
        padding: 0;
        background: linear-gradient(135deg, #fdf6f6, #faecec);
        border-radius: 16px;
        margin: 16px;
        text-align: left;
        display: flex;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .hero .container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        padding: 0;
        margin: 0;
    }

    .hero-content {
        padding: 40px 20px 20px 20px;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .hero-title,
    .hero-tag,
    .hero-desc,
    .hero .btn,
    .hero-features {
        display: none;
    }

    .mobile-slogan {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        color: var(--primary);
        font-weight: 700;
        text-shadow: none;
        text-align: center;
        line-height: 1.2;
    }

    .hero-img {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right top;
        border-radius: 0;
        margin: 0;
        z-index: 1;
        mix-blend-mode: multiply;
    }

    .hero-features {
        display: none;
    }

    /* Scrollable Categories */
    .category-section {
        padding: 15px 0 10px;
    }

    .category-section-title {
        font-size: 20px;
        margin-bottom: 10px;
        padding-left: 16px;
    }

    .cat-circles {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 16px 20px;
        gap: 16px;
        scrollbar-width: none;
        margin: 0;
    }

    .cat-img-wrapper {
        width: 85px;
        height: 85px;
        border: 2px solid var(--white);
        background: #fff;
        padding: 0;
    }

    .cat-circle-item {
        gap: 8px;
    }

    .cat-name {
        font-size: 11px;
        color: var(--white);
    }

    .cat-circles::-webkit-scrollbar {
        display: none;
    }

    .cat-circle-item {
        padding: 0 10px;
    }

    .promos-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        gap: 16px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .promos-grid::-webkit-scrollbar {
        display: none;
    }

    .promos-grid .promo-card {
        min-width: 85vw;
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    /* Mobile Horizontal Promo */
    .horizontal-promo {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .hp-divider {
        width: 60px;
        height: 1px;
        margin: 20px 0;
    }
    
    .hp-right {
        margin-left: 0;
        margin-top: 20px;
    }

    /* Mobile Story Promo */
    .story-content-area {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .story-content-area::-webkit-scrollbar {
        display: none;
    }
    .story-text-col, .story-img-col {
        flex: 0 0 auto;
        width: 85vw;
        min-width: unset;
        scroll-snap-align: center;
    }
    .story-text-col {
        padding: 15px 20px;
    }
    .story-title {
        font-size: 24px;
        margin: 10px 0;
    }
    .story-icons-row {
        gap: 16px;
        margin-top: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .elegant-heading-wrapper {
        margin: 40px 0 20px;
    }
    .elegant-title {
        font-size: 26px;
    }

    /* Mobile Ad Banner Section */
    .ad-banner-section {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 20px;
    }
    .ad-banner-section::-webkit-scrollbar {
        display: none;
    }
    .ad-banner-card {
        flex: 0 0 auto;
        width: 92vw;
        scroll-snap-align: center;
    }
    .ad-img-wrapper {
        flex: 0 0 48%;
        max-width: 48%;
        width: 48%;
    }
    .ad-content {
        flex: 0 0 52%;
        max-width: 52%;
        width: 52%;
        padding: 20px 15px;
    }
    .ad-title {
        font-size: 22px;
    }

    .product-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding: 4px 0 16px 0;
        background-color: transparent;
        border: none;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .product-grid::-webkit-scrollbar {
        display: none;
    }

    .view-all {
        display: none;
    }

    .view-all-card {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: #fdf8f8 !important;
        border: none !important;
        box-shadow: none !important;
        cursor: pointer;
    }

    .view-all-card a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
        width: 100%;
        color: #333;
        font-weight: 600;
        font-size: 12px;
    }

    .view-all-card .circle-icon {
        width: 44px;
        height: 44px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        font-size: 18px;
        color: #e57c7c;
        transition: transform 0.2s;
    }

    .product-card {
        width: 45vw;
        flex: 0 0 45vw;
        scroll-snap-align: start;
        border-radius: 8px;
        border: 1px solid #eaeaea;
        padding: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        display: flex;
        flex-direction: column;
        background: #ffffff;
        overflow: hidden;
        position: relative;
    }

    .mobile-view-all-container {
        display: flex;
        justify-content: center;
        padding: 0 16px 20px 16px;
        margin-top: -12px;
    }

    .mobile-view-all-container .btn-outline {
        display: inline-block;
        width: auto;
        min-width: 160px;
        text-align: center;
        background: transparent;
        border: 1px solid #c2bdae;
        color: #333;
        padding: 10px 32px;
        border-radius: 4px;
        font-weight: 500;
        text-decoration: none;
    }

    .product-img {
        width: 100%;
        margin: 0 0 10px 0;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: contain;
        border-radius: 0;
        background-color: transparent;
        padding: 4px;
        filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.08));
    }

    .product-title {
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 10px 10px 0 10px;
        height: auto;
        min-height: 28px;
        line-height: 1.4;
        color: #121e12;
        margin: 0 0 5px 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-align: center;
    }

    .buy-now-container {
        padding: 0 10px 10px 10px;
    }

    .buy-now-btn {
        padding: 6px 0;
        font-size: 11px;
    }

    .product-price {
        font-family: 'Poppins', sans-serif;
        font-size: 11.5px;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #121e12;
        padding: 0 10px 5px 10px;
        text-align: center;
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .product-old-price {
        color: #aaa;
        text-decoration: line-through;
        font-weight: 300;
        font-size: 11.5px;
    }

    .wishlist-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 20px;
        color: #121e12;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 5px;
        width: auto;
        height: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        bottom: auto;
    }

    .feature-item {
        width: calc(50% - 24px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* Stacked Newsletter */
    .news-form {
        flex-direction: column;
        gap: 12px;
        padding: 0 24px;
    }

    .news-input {
        border-radius: 4px;
        text-align: center;
    }

    .news-btn {
        border-radius: 4px;
        padding: 12px;
    }

    .section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .section-subtitle {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}

@media (max-width: 480px) {



    .features {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 20px;
        padding-bottom: 10px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .features::-webkit-scrollbar {
        display: none;
    }

    .feature-item {
        width: 45vw;
        flex: 0 0 auto;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        scroll-snap-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }

    .app-links {
        justify-content: center;
    }
}