@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --bg-primary: #FAF5F3;
    --bg-card: #FFFFFF;
    --text-dark: #2C2224;
    --text-muted: #7A686B;
    --accent-rose: #D49B9B;
    --accent-burgundy: #6E2D3B;
    --accent-burgundy-hover: #54222D;
    --accent-light-pink: #F7EBEB;
    --border-light: #EFE4E0;
    --shadow-soft: 0 10px 30px rgba(110, 45, 59, 0.05);
    --shadow-hover: 0 15px 35px rgba(110, 45, 59, 0.12);
    --font-family: 'Montserrat', sans-serif;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
    transition: all 0.3s ease;
}

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

/* --- Container & Utilities --- */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 1.5px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-burgundy);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-burgundy);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 4px;
    border: 1px solid var(--accent-burgundy);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-burgundy-hover);
    border-color: var(--accent-burgundy-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 45, 59, 0.25);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-burgundy);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 13px 30px;
    border-radius: 4px;
    border: 1px solid var(--accent-burgundy);
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--accent-burgundy);
    color: #FFFFFF;
}

/* --- Header Announcement Bar --- */
.announcement-bar {
    background-color: var(--accent-burgundy);
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 0;
    letter-spacing: 0.5px;
}

.announcement-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.announcement-text-row {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.announcement-links a {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 18px;
    font-size: 11px;
}

.announcement-links a:hover {
    color: #FFFFFF;
}

/* --- Navigation Header --- */
.site-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    display: block;
    transition: transform 0.3s ease;
}

.brand-logo:hover .site-logo-img {
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-burgundy);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
}

/* --- Hero Banner Slider Section --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: #FAF4F6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-slider-wrapper {
    display: flex;
    flex-wrap: nowrap;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.hero-slide {
    width: 20%;
    min-width: 20%;
    max-width: 20%;
    flex: 0 0 20%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 550px;
    position: relative;
}

.slide-content-col {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    height: 100%;
    z-index: 2;
}

.slide-title {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFF7EB;
    line-height: 1.05;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-family: 'Montserrat', sans-serif;
}

.slide-tagline {
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.slide-offer {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFDE00;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px #B85D00, 4px 4px 0px #7A3500, 4px 6px 12px rgba(0, 0, 0, 0.4);
    display: inline-block;
}

.slide-cta-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 2px solid #FFFFFF;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.slide-cta-btn:hover {
    color: #FFDE00;
    border-color: #FFDE00;
    transform: translateX(4px);
}

.slide-image-col {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.slide-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Slider Controls (Circular white buttons & light pill overlay inside bottom edge) */
.slider-pagination-bar {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    z-index: 10;
}

.slider-arrow-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #111111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    z-index: 10;
    transition: all 0.25s ease;
}

.slider-arrow-btn:hover {
    background-color: #FFFFFF;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}

.slider-arrow-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #111111;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-pagination-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #222222;
}

.slider-counter-pill {
    background: rgba(238, 238, 238, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    padding: 3px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.slider-counter-pill .dot-sep {
    font-size: 12px;
    color: #444444;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .slide-content-col {
        padding: 35px 20px 25px;
    }

    .slide-title {
        font-size: 34px;
    }

    .slide-tagline {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .slide-offer {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .slide-image-col {
        min-height: 260px;
        max-height: 340px;
    }

    .slider-arrow-btn {
        width: 36px;
        height: 36px;
    }

    .slider-arrow-btn.prev-btn {
        left: 10px;
    }

    .slider-arrow-btn.next-btn {
        right: 10px;
    }

    .slider-pagination-bar {
        bottom: 10px;
    }
}

/* --- Value Badges Bar (Soft Pink Box) --- */
.features-bar-section {
    padding: 40px 0 !important;
    margin: 0 !important;
}

.features-box-card {
    background-color: #FFF0F3;
    border-radius: 10px;
    border: 1px solid #FADFE4;
    padding: 16px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.feature-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    padding: 0 10px;
}

.feature-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #F5D3DB;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C44D66;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- About ETAAM Section --- */
.about-etaam-section {
    padding: 40px 0 !important;
    margin: 0 !important;
    background-color: #FAF4F6;
}

.about-etaam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-etaam-img-col {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(196, 13, 46, 0.1);
    border: 1px solid #F3E2E6;
}

.about-etaam-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-etaam-text-col {
    padding: 10px;
}

.about-etaam-text-col .tagline {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #C44D66;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.about-etaam-text-col h2 {
    font-size: 32px;
    font-weight: 800;
    color: #3D1C24;
    margin-bottom: 14px;
    line-height: 1.25;
    font-family: 'Montserrat', sans-serif;
}

.about-etaam-text-col p {
    font-size: 14.5px;
    color: #663340;
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.highlight-mini-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #F7E4E8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.highlight-mini-item:hover {
    transform: translateY(-2px);
    border-color: #F0C4CE;
    box-shadow: 0 6px 18px rgba(196, 13, 46, 0.1);
}

.highlight-mini-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background-color: #FFF0F3;
    color: #C44D66;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-mini-text {
    font-size: 13px;
    font-weight: 700;
    color: #3D1C24;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #58242F, #3D1C24);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 13px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(88, 36, 47, 0.22);
}

.btn-know-more:hover {
    background: linear-gradient(135deg, #C40D2E, #58242F);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 13, 46, 0.35);
}

/* --- Marketplace Trust Bar Section (Continuous Infinite Marquee Loop) --- */
.marketplace-trust-section {
    padding: 24px 0;
    background-color: #FAF4F6;
    border-top: 1px solid #F3E2E6;
    border-bottom: 1px solid #F3E2E6;
}

.marketplace-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.marketplace-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #663340;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.marketplace-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 6px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marketplace-logos-grid {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: continuousMarquee 18s linear infinite;
    will-change: transform;
}

.marketplace-logos-grid:hover {
    animation-play-state: paused;
}

.marketplace-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #F7E4E8;
    padding: 10px 22px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.marketplace-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(196, 13, 46, 0.12);
    border-color: #F0C4CE;
}

@keyframes continuousMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Circular Shop By Category Section --- */
.circle-category-section {
    padding: 40px 0 !important;
    margin: 0 !important;
    background-color: #FFFFFF;
}

.shop-category-header {
    margin-bottom: 24px;
    text-align: center;
}

.shop-category-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #3D1C24;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.circle-category-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap;
}

.circle-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    width: 130px;
    cursor: pointer;
}

.circle-avatar-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #C40D2E, #FF8096, #58242F);
    box-shadow: 0 6px 20px rgba(196, 13, 46, 0.15);
    margin-bottom: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.circle-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.circle-category-card:hover .circle-avatar-wrap {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 25px rgba(196, 13, 46, 0.25);
}

.circle-name {
    font-size: 13px;
    font-weight: 700;
    color: #3D1C24;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.circle-category-card:hover .circle-name {
    color: #C40D2E;
}

.circle-pink-bar {
    width: 24px;
    height: 2.5px;
    background: #C44D66;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.circle-category-card:hover .circle-pink-bar {
    width: 40px;
    background: #C40D2E;
}

/* --- Curated Collection Header & Right Shop Button --- */
.curated-header-flex {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid #F0D5DC;
}

.curated-title-group h2 {
    font-size: 24px;
    font-weight: 800;
    color: #3D1C24;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.curated-title-group p {
    font-size: 13px;
    color: #663340;
    margin: 0;
}

.curated-tabs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.curated-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.curated-tab-item {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #885562;
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.curated-tab-item.active {
    color: #3D1C24;
    border-bottom-color: #3D1C24;
}

.curated-link-right {
    font-size: 13px;
    font-weight: 700;
    color: #58242F;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 7px 16px;
    border: 1.5px solid #58242F;
    border-radius: 22px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

.curated-link-right:hover {
    background-color: #58242F;
    color: #FFFFFF;
    transform: translateX(3px);
}

/* --- 8 Collections Portrait Avatar Row --- */
.collections-portrait-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
    margin-bottom: 35px;
}

.collection-portrait-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.collection-portrait-card:hover {
    transform: translateY(-4px);
}

.collection-portrait-img-wrap {
    width: 100%;
    height: 150px;
    border-radius: 12px;
    background-color: #FFF0F3;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(196, 77, 102, 0.08);
    border: 2px solid #FFFFFF;
}

.collection-portrait-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.collection-portrait-card:hover .collection-portrait-img-wrap img {
    transform: scale(1.08);
}

.collection-portrait-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
    transition: color 0.3s ease;
}

.collection-portrait-card:hover .collection-portrait-title {
    color: #C44D66;
}

/* --- Mid-Page Luxury 3-Image Product Variant Banner Slider --- */
.mid-banner-slider-section {
    padding: 30px 0;
}

.mid-slider-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background-color: #FAF4F6;
    box-shadow: 0 8px 30px rgba(184, 85, 107, 0.12);
    border: 1px solid #F3E2E6;
    height: 440px;
}

.mid-slide-track {
    display: flex;
    flex-wrap: nowrap;
    width: 500%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.mid-slide.variant-trio-slide {
    width: 20%;
    min-width: 20%;
    max-width: 20%;
    flex: 0 0 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 20px 38px 20px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

.trio-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    height: 310px;
    width: 100%;
}

.trio-img-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
}

.trio-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.trio-img-card:hover img {
    transform: scale(1.05);
}

.img-variant-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(61, 28, 36, 0.82);
    backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.variant-slide-caption-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 18px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #F3E2E6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.caption-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.caption-badge {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8C4054;
    background: #FAF0F3;
    padding: 3px 10px;
    border-radius: 10px;
}

.caption-title {
    font-size: 15px;
    font-weight: 800;
    color: #3D1C24;
    margin: 0;
}

.btn-caption-cta {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #8C4054;
    text-decoration: none;
    transition: color 0.25s ease;
}

.btn-caption-cta:hover {
    color: #C40D2E;
}

/* Mid Slider Arrow Controls & Dots */
.mid-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #3D1C24;
    border: 1px solid #F0D5DC;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    z-index: 10;
    transition: all 0.25s ease;
}

.mid-slider-btn:hover {
    background-color: #58242F;
    color: #FFFFFF;
    border-color: #58242F;
}

.mid-slider-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

.mid-slider-btn.prev-btn {
    left: 16px;
}

.mid-slider-btn.next-btn {
    right: 16px;
}

.mid-slider-dots-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.mid-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(61, 28, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mid-slider-dot.active {
    width: 24px;
    border-radius: 12px;
    background-color: #8C4054;
}



.mid-slide-bg-alt1 {
    background-color: #EFE3D8;
}

.mid-slide-bg-alt2 {
    background-color: #F7E5E9;
}

.mid-slide-bg-alt3 {
    background-color: #EAE6F0;
}

.mid-slide-bg-alt4 {
    background-color: #F5EAE0;
}

.mid-slide-bg-alt5 {
    background-color: #EAF0E6;
}

.mid-slide-img-col {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.mid-slide-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.mid-slide-center-col {
    text-align: center;
    padding: 30px 20px;
    z-index: 2;
}

.mid-slide-center-col h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #3D1C24;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: 'Playfair Display', 'Georgia', serif;
}

.mid-slide-center-col .mid-slide-tagline {
    font-size: 22px;
    font-weight: 700;
    color: #C44D66;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.mid-slide-center-col p {
    font-size: 13px;
    color: #5C4A4F;
    max-width: 380px;
    margin: 0 auto 20px auto;
    line-height: 1.6;
}

.btn-mid-slide-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8C4054;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(140, 64, 84, 0.25);
}

.btn-mid-slide-cta:hover {
    background-color: #723143;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(140, 64, 84, 0.35);
}

/* Shoppable Hotspot Dot */
.hotspot-dot {
    display: none !important;
}

/* Mid Slider Navigation Arrows & Dots */
.mid-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: #2C2224;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.mid-slider-btn:hover {
    background-color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mid-slider-btn.prev-btn {
    left: 16px;
}

.mid-slider-btn.next-btn {
    right: 16px;
}

.mid-slider-dots-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.mid-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(61, 28, 36, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mid-slider-dot.active {
    background-color: #8C4054;
    width: 24px;
    border-radius: 12px;
}

/* --- Also Available On - Marketplace Trust Bar --- */
.marketplace-trust-section {
    padding: 35px 0;
    background-color: #FAF3F5;
    border-top: 1px solid #F3E0E5;
    border-bottom: 1px solid #F3E0E5;
    margin: 25px 0 35px 0;
}

.marketplace-trust-card {
    text-align: center;
}

.marketplace-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #D44D6B;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.marketplace-logos-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.marketplace-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #F0D5DC;
    box-shadow: 0 4px 14px rgba(184, 85, 107, 0.06);
    transition: all 0.3s ease;
    height: 52px;
    min-width: 140px;
}

.marketplace-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 77, 107, 0.18);
    border-color: #D44D6B;
}

/* --- Circular Shop By Category Section --- */
.circle-category-section {
    background-color: #FFFFFF;
    padding: 45px 0 40px 0;
}

.shop-category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 35px;
    position: relative;
}

.shop-category-header::before,
.shop-category-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #EFE4E0 30%, #E0D0CB 100%);
    max-width: 260px;
}

.shop-category-header::after {
    background: linear-gradient(90deg, #E0D0CB 0%, #EFE4E0 70%, transparent 100%);
}

.shop-category-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-dark);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shop-category-title .leaf-icon {
    display: inline-block;
    color: #D47B90;
    font-size: 16px;
}

.circle-category-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.circle-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 145px;
}

.circle-avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #FDE8EE;
    overflow: hidden;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(212, 123, 144, 0.12);
    border: 3px solid #FFFFFF;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.circle-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.circle-category-card:hover .circle-avatar-wrap,
.circle-category-card.glow-active .circle-avatar-wrap {
    box-shadow: 0 0 25px rgba(232, 0, 113, 0.35);
    transform: translateY(-4px) scale(1.03);
    border-color: #E80071;
}

.circle-category-card:hover .circle-avatar-wrap img {
    transform: scale(1.08);
}

.circle-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.circle-category-card:hover .circle-name {
    color: #C42D50;
}

.circle-pink-bar {
    width: 24px;
    height: 2.5px;
    background-color: #E88399;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.circle-category-card:hover .circle-pink-bar {
    width: 38px;
    background-color: #C42D50;
}

.btn-view-all-products {
    display: inline-block;
    padding: 10px 30px;
    border: 1.5px solid #E88399;
    border-radius: 4px;
    color: #C42D50;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    margin-top: 36px;
}

.btn-view-all-products:hover {
    background-color: #C42D50;
    color: #FFFFFF;
    border-color: #C42D50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 45, 80, 0.2);
}

@media (max-width: 768px) {
    .circle-category-grid {
        gap: 16px;
    }

    .circle-category-card {
        width: 105px;
    }

    .circle-avatar-wrap {
        width: 95px;
        height: 95px;
    }

    .circle-name {
        font-size: 12px;
    }

    .shop-category-header::before,
    .shop-category-header::after {
        display: none;
    }
}

/* --- About Etaam Feature Card --- */
.about-etaam-section {
    padding: 30px 0;
}

.about-etaam-card {
    background-color: #FFF5F7;
    border-radius: 14px;
    padding: 45px 40px;
    border: 1px solid #F5E2E6;
}

.about-etaam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-etaam-img-col img {
    border-radius: 12px;
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(184, 85, 107, 0.12);
}

.about-etaam-text-col .tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #C44D66;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.about-etaam-text-col h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-etaam-text-col p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.highlight-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-mini-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #F8DDE3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C44D66;
    flex-shrink: 0;
}

.highlight-mini-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-know-more {
    display: inline-block;
    background-color: #8C4054;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-know-more:hover {
    background-color: #723143;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(140, 64, 84, 0.3);
}

/* --- Promise Rose Banner --- */
.promise-rose-banner {
    background-color: #B8556B;
    border-radius: 12px;
    padding: 26px 30px;
    color: #FFFFFF;
    margin: 40px 0;
}

.promise-rose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    text-align: center;
}

.promise-rose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.promise-rose-item svg {
    stroke: #FFFFFF;
}

.promise-rose-item h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.promise-rose-item p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.88);
}

/* --- Unique Luxury VIP Newsletter Subscription Card --- */
.newsletter-section-wrap {
    padding: 10px 0;
    margin: 0;
}

.unique-vip-newsletter-card {
    background: linear-gradient(135deg, #FFF5F7 0%, #FAF0F3 100%);
    border: 1px solid #F0D5DC;
    border-radius: 18px;
    padding: 32px 36px;
    margin: 10px auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(140, 64, 84, 0.06);
    position: relative;
    overflow: hidden;
}

.vip-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, #8C4054 0%, #A64E68 100%);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(140, 64, 84, 0.2);
}

.vip-newsletter-title {
    font-size: clamp(20px, 4.5vw, 28px);
    font-weight: 900;
    color: #3D1C24;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.vip-newsletter-desc {
    font-size: clamp(12.5px, 3vw, 14.5px);
    color: #66454E;
    margin-bottom: 20px;
    max-width: 520px;
    line-height: 1.5;
}

.vip-newsletter-form {
    width: 100%;
    max-width: 540px;
    margin: 0 auto 14px auto;
}

.vip-input-pill {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #F0D5DC;
    border-radius: 30px;
    padding: 4px 6px 4px 16px;
    box-shadow: 0 4px 18px rgba(140, 64, 84, 0.08);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.vip-input-pill:focus-within {
    border-color: #8C4054;
    box-shadow: 0 4px 22px rgba(140, 64, 84, 0.16);
}

.vip-mail-icon {
    color: #8C4054;
    flex-shrink: 0;
    margin-right: 10px;
}

.vip-email-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    color: #3D1C24;
    padding: 8px 0;
}

.vip-email-input::placeholder {
    color: #997B83;
}

.vip-submit-btn {
    background: linear-gradient(135deg, #8C4054 0%, #703042 100%);
    color: #FFFFFF;
    border: none;
    outline: none;
    border-radius: 24px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(140, 64, 84, 0.25);
}

.vip-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(140, 64, 84, 0.35);
}

.vip-trust-perks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #7A5B64;
}

.trust-perk-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7A5B64;
}

.trust-perk-item svg {
    color: #8C4054;
    flex-shrink: 0;
}

.perk-dot {
    color: #C44D66;
    font-weight: 800;
}

.newsletter-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.newsletter-left h3 {
    font-size: 20px;
    font-weight: 800;
    color: #3D1C24;
    margin-bottom: 2px;
}

.newsletter-sub-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background-color: #F8DDE3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C44D66;
    flex-shrink: 0;
}

.newsletter-icon svg {
    width: 14px;
    height: 14px;
}

.newsletter-sub-row p {
    font-size: 13px;
    color: #663340;
    margin: 0;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 420px;
    width: 100%;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 4px;
    border: 1px solid #E2C2C9;
    font-size: 13px;
    outline: none;
    background: #FFFFFF;
}

.newsletter-input:focus {
    border-color: #C44D66;
}

.btn-subscribe {
    background-color: #8C4054;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #723143;
}

.feature-text p {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- Categories Section --- */
.section-padding {
    padding: 40px 0 !important;
    margin: 0 !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    text-align: center;
    background: #FFFFFF;
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-rose);
}

.category-thumb {
    width: 110px;
    height: 110px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-light-pink);
}

/* --- MARKETPLACE TRUST BAR ("ALSO AVAILABLE ON") - SEAMLESS CONTINUOUS INFINITE MARQUEE --- */
.marketplace-trust-section {
    padding: 24px 0;
    background-color: #FAF2F4;
    border-top: 1px solid #F0D5DC;
    border-bottom: 1px solid #F0D5DC;
    overflow: hidden;
}

.marketplace-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.marketplace-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #8C4054;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.marketplace-marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.marketplace-logos-grid {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: continuousMarqueeLoop 18s linear infinite;
    will-change: transform;
}

.marketplace-logos-grid:hover {
    animation-play-state: paused;
}

.marketplace-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid #F0D5DC;
    box-shadow: 0 4px 12px rgba(140, 64, 84, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marketplace-logo-item:hover {
    transform: translateY(-3px);
    border-color: #C44D66;
    box-shadow: 0 8px 20px rgba(196, 77, 102, 0.15);
}

@keyframes continuousMarqueeLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- Essence & Social Links Section --- */
.essence-social-section {
    padding: 40px 0 !important;
    margin: 0 !important;
    background: #FFFFFF;
    border-top: 1px solid #F4E8EC;
    border-bottom: 1px solid #F4E8EC;
}

.essence-title {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 800;
    color: #3D1C24;
    margin-bottom: 14px;
}

.essence-short-text {
    font-size: clamp(13.5px, 3.2vw, 15.5px);
    color: #554045;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.essence-short-text em {
    color: #8C4054;
    font-weight: 600;
    display: block;
    margin-top: 8px;
    font-style: normal;
}

.essence-social-wrap {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px dashed #F2DCE1;
}

.essence-social-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #8C4054;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.essence-social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    background: #FAF2F4;
    color: #3D1C24;
    border: 1px solid #F0D5DC;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #FFFFFF;
    border-color: transparent;
}

.social-btn.facebook:hover {
    background: #1877F2;
    color: #FFFFFF;
    border-color: #1877F2;
}

.social-btn.youtube:hover {
    background: #FF0000;
    color: #FFFFFF;
    border-color: #FF0000;
}

.social-btn.whatsapp:hover {
    background: #25D366;
    color: #FFFFFF;
    border-color: #25D366;
}

/* --- Brand Philosophy Section --- */
.about-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 50px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.about-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.philosophy-item h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-burgundy);
    margin-bottom: 4px;
}

.philosophy-item p {
    font-size: 12px;
    margin-bottom: 0;
}

/* --- Products Collection Grid --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.product-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background-color: #F9F9F9;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent-burgundy);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-category {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-rose);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-burgundy);
}

.price-original {
    font-size: 13px;
    color: #A09093;
    text-decoration: line-through;
    margin-left: 6px;
}

.btn-buy-trigger {
    width: 100%;
    margin-top: 15px;
}

/* --- FAQ Accordion Section --- */
.faq-section {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 14px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.faq-question {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: var(--accent-light-pink);
}

.faq-toggle-icon {
    font-size: 18px;
    color: var(--accent-burgundy);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px 24px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- UNIQUE & LUXURY BUY NOW STORE SELECTION MODAL --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 10, 12, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 16px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.unique-buy-modal {
    position: relative;
    width: 95%;
    max-width: 450px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: clamp(16px, 4vw, 26px) clamp(14px, 3.5vw, 22px);
    box-shadow: 0 25px 60px rgba(44, 18, 24, 0.35), 0 0 0 1px rgba(196, 77, 102, 0.15);
    transform: scale(0.92) translateY(15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box !important;
}

.modal-overlay.active .unique-buy-modal {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F5EBF0;
    border: none;
    font-size: 18px;
    color: #554045;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: #8C4054;
    color: #FFFFFF;
    transform: rotate(90deg);
}

.modal-header-unique {
    text-align: center;
    margin-bottom: 16px;
}

.modal-luxury-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FAF0F3;
    color: #8C4054;
    font-size: clamp(9px, 2.4vw, 10.5px);
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #F0D5DC;
    margin-bottom: 8px;
    text-transform: uppercase;
    white-space: nowrap !important;
}

.modal-header-unique h3 {
    font-size: clamp(17px, 4.8vw, 22px);
    font-weight: 800;
    color: #3D1C24;
    margin-bottom: 4px;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.short-modal-desc {
    font-size: clamp(10.5px, 2.8vw, 12px);
    color: #665256;
    margin-top: 2px !important;
    white-space: nowrap !important;
}

.modal-urgency-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF0F3;
    border: 1px dashed #F0B8C5;
    border-radius: 12px;
    padding: 7px 10px;
    margin-bottom: 14px;
    font-size: clamp(9px, 2.6vw, 11px);
    color: #3D1C24;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    gap: 6px;
}

.urgency-left,
.urgency-right {
    white-space: nowrap !important;
    display: flex;
    align-items: center;
    gap: 3px;
}

.pulse-flame {
    display: inline-block;
    animation: flamePulse 1.2s ease infinite;
}

@keyframes flamePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.urgency-right strong {
    color: #D32F2F;
    font-family: monospace;
    font-size: clamp(10px, 2.7vw, 12px);
}

.modal-product-card-unique {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FAF2F4 0%, #FFF8FA 100%);
    border: 1px solid #F0D5DC;
    border-radius: 16px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.modal-prod-img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(140, 64, 84, 0.12);
    flex-shrink: 0;
}

.modal-prod-info {
    flex: 1;
    overflow: hidden;
    text-align: left;
}

.modal-prod-info h4 {
    font-size: clamp(12px, 3.2vw, 13.5px);
    font-weight: 700;
    color: #3D1C24;
    margin-bottom: 3px;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-prod-price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 3px;
    white-space: nowrap !important;
}

.modal-prod-price {
    font-size: clamp(14.5px, 4vw, 17px);
    font-weight: 800;
    color: #C44D66;
    white-space: nowrap !important;
}

.modal-old-price {
    font-size: clamp(10.5px, 2.8vw, 12px);
    color: #999999;
    text-decoration: line-through;
    white-space: nowrap !important;
}

.modal-discount-pill {
    background: #111111;
    color: #FFFFFF;
    font-size: clamp(9px, 2.4vw, 10px);
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap !important;
}

.modal-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: clamp(9.5px, 2.5vw, 11px);
    white-space: nowrap !important;
}

.modal-stars {
    color: #FFC107;
    font-size: clamp(10px, 2.6vw, 12px);
    white-space: nowrap !important;
}

.modal-reviews {
    color: #77666A;
    font-weight: 500;
    white-space: nowrap !important;
}

/* Store Options in 1 Single Line Row */
.store-options-one-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-store-oneline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 6px;
    border-radius: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-flipkart-oneline {
    background: linear-gradient(135deg, #2874F0 0%, #1059CD 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(40, 116, 240, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-flipkart-oneline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(40, 116, 240, 0.42);
    background: linear-gradient(135deg, #1D66E0 0%, #0849B3 100%);
}

.btn-amazon-oneline {
    background: linear-gradient(135deg, #FF9900 0%, #E68A00 100%);
    color: #111111;
    box-shadow: 0 6px 20px rgba(255, 153, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-amazon-oneline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 153, 0, 0.45);
    background: linear-gradient(135deg, #F59300 0%, #D47F00 100%);
}

.store-btn-top {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 22px;
    margin-bottom: 3px;
}

.btn-sub-label {
    font-size: clamp(8.5px, 2.4vw, 10px);
    font-weight: 600;
    opacity: 0.92;
    margin-bottom: 6px;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.btn-flipkart-oneline .btn-sub-label {
    color: rgba(255, 255, 255, 0.92);
}

.btn-amazon-oneline .btn-sub-label {
    color: rgba(0, 0, 0, 0.8);
}

.btn-action-text {
    font-size: clamp(9px, 2.4vw, 10.5px);
    font-weight: 800;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.22);
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap !important;
    transition: all 0.25s ease;
}

.btn-amazon-oneline .btn-action-text {
    background: rgba(0, 0, 0, 0.12);
    color: #111111;
}

.btn-store-oneline:hover .btn-action-text {
    background: #FFFFFF;
    color: #111111;
    transform: scale(1.04);
}

.modal-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: clamp(8.5px, 2.4vw, 10.5px);
    font-weight: 600;
    color: #7A666A;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed #F0D5DC;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
}

.modal-trust-footer span {
    white-space: nowrap !important;
}

/* --- Footer --- */
.site-footer {
    background-color: #22191B;
    color: #E2D9DC;
    padding: 70px 0 25px 0;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: #A39699;
    max-width: 320px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #A39699;
}

.footer-col ul li a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #8C7E81;
}

/* --- CMS Admin Styles --- */
.admin-wrapper {
    min-height: 100vh;
    background-color: #F4F6F8;
    font-family: var(--font-family);
}

.admin-nav {
    background: #2C2224;
    color: #FFFFFF;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.admin-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.admin-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #EFEFEF;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-family: inherit;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.admin-table th,
.admin-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #EFEFEF;
    font-size: 13px;
}

.admin-table th {
    background: #F8F9FA;
    font-weight: 600;
}

/* --- Watch and Buy Shoppable Video Reels Section --- */
.watch-buy-section {
    padding: 40px 0 !important;
    background-color: #FAF4F6;
    border-top: 1px solid #F0D5DC;
    border-bottom: 1px solid #F0D5DC;
    margin: 0 !important;
}

.watch-buy-header {
    text-align: center;
    margin-bottom: 35px;
}

.watch-buy-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.watch-buy-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

.watch-buy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.watch-buy-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(184, 85, 107, 0.08);
    border: 1px solid #F2DCE1;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.watch-buy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(184, 85, 107, 0.18);
    border-color: #D44D6B;
}

.watch-video-wrapper {
    position: relative;
    width: 100% !important;
    height: 420px !important;
    overflow: hidden !important;
    background-color: transparent;
}

.watch-video-element {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
    display: block !important;
}

.video-overlay-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #FFFFFF;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
}

.reel-social-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    z-index: 5;
}

.reel-social-badge:hover {
    background: #E1306C;
    border-color: #E1306C;
    color: #FFFFFF;
    transform: scale(1.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #00E676;
    box-shadow: 0 0 10px #00E676;
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
        box-shadow: 0 0 4px #00E676;
    }

    50% {
        transform: scale(1.35);
        opacity: 1;
        box-shadow: 0 0 12px #00E676;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.8;
        box-shadow: 0 0 4px #00E676;
    }
}

.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 14px 14px 14px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #FFFFFF;
}

.video-overlay-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.video-overlay-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.watch-product-bar {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    border-top: 1px solid #F5E2E6;
}

.watch-product-thumb {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #F0D0D7;
}

.watch-product-details {
    flex: 1;
    min-width: 0;
}

.watch-product-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.watch-product-price {
    font-size: 13px;
    font-weight: 800;
    color: #C44D66;
}

.watch-product-price .old-price {
    font-size: 11px;
    font-weight: 400;
    color: #999999;
    text-decoration: line-through;
    margin-left: 4px;
}

.btn-watch-buy {
    background-color: #8C4054;
    color: #FFFFFF;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-watch-buy:hover {
    background-color: #723143;
}

/* --- Curated & Featured Collection Header & Card Styles --- */
.curated-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 1px solid #EFE4E0;
    padding-bottom: 15px;
    width: 100%;
}

.curated-title-group {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.curated-title-group h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    text-align: left !important;
}

.curated-title-group p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    text-align: left !important;
}

.curated-tabs {
    display: flex;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.curated-tab-item {
    color: #999999;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.curated-tab-item.active,
.curated-tab-item:hover {
    color: var(--text-dark);
    border-bottom-color: var(--text-dark);
}

.curated-link-right {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid #8C4054;
    color: #8C4054;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease;
    margin-left: auto !important;
}

.curated-link-right:hover {
    background-color: #8C4054;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 64, 84, 0.25);
}

/* Swatch Strip & Product Meta */
.product-swatch-strip {
    display: flex;
    gap: 6px;
    margin: 10px 0 8px 0;
}

.swatch-thumb {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #E5D5DA;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.swatch-thumb:hover {
    border-color: #C44D66;
}

.product-mrp-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin: 4px 0;
    width: 100%;
}

.mrp-label {
    color: #888888;
}

.mrp-current {
    font-weight: 700;
    color: var(--text-dark);
}

.mrp-old {
    text-decoration: line-through;
    color: #999999;
}

.mrp-discount-badge {
    background-color: #111111;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: auto !important;
}

.product-star-rating {
    color: #FFC107;
    font-size: 12px;
    margin-top: 2px;
}

/* Product Card Headings & Category Subtitles - Strictly 1 Single Line */
.product-category {
    font-size: 11px;
    font-weight: 700;
    color: #885562;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    display: block !important;
    margin-bottom: 3px;
}

.product-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #3D1C24;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    max-width: 100% !important;
    display: block !important;
    margin-bottom: 6px;
}

/* --- Etaam Blog / Journal Section --- */
.etaam-blog-section {
    padding: 40px 0 !important;
    margin: 0 !important;
    background-color: #FFFFFF;
    border-top: 1px solid #EFE4E0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img-wrap {
    width: 100%;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #F8ECEF;
    margin-bottom: 16px;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-date {
    font-size: 11px;
    font-weight: 600;
    color: #999999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #C44D66;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: underline;
    transition: color 0.3s ease;
    margin-top: auto;
}

.blog-read-link:hover {
    color: #C44D66;
}

/* --- Mobile Navigation & Hamburger Toggle Styles --- */
.mobile-menu-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-menu-toggle-btn:hover {
    background-color: rgba(140, 64, 84, 0.08);
}

/* Comprehensive Mobile Responsive Media Queries */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }


    /* Mid-Page Promo Slider Tablet Adjustment */
    .mid-slider-wrapper {
        height: auto;
        min-height: 340px;
    }

    .mid-slide {
        grid-template-columns: 1fr;
        padding: 30px 20px 45px 20px;
        text-align: center;
    }

    .mid-slide-img-col {
        display: none;
    }

    .mid-slide-center-col h2 {
        font-size: clamp(24px, 7vw, 34px);
        font-weight: 900;
        letter-spacing: 1px;
    }

    .mid-slide-center-col .mid-slide-tagline {
        font-size: 18px;
    }

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

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

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box !important;
    }

    section,
    .section-padding,
    .circle-category-section,
    .features-bar-section,
    .about-etaam-section,
    .watch-buy-section,
    .essence-social-section,
    .etaam-blog-section {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .hero-slider-section {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Top Announcement Bar Mobile (Icon & Text 100% on 1 Single Line) */
    .announcement-bar {
        padding: 6px 0;
        font-size: clamp(9px, 2.7vw, 11px);
        width: 100%;
        overflow-x: hidden;
    }

    .announcement-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        gap: 4px;
        width: 100%;
    }

    .announcement-text-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        width: 100%;
    }

    .announcement-text-row span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .announcement-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

    .announcement-links a {
        margin-left: 0;
        font-size: 10px;
        white-space: nowrap;
    }

    /* Mobile Header Main Padding & Right Placement */
    .header-main {
        padding: 12px 0;
    }

    .site-logo-img {
        height: 38px;
    }

    .header-right-group {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
}

/* ==========================================================================
   DEDICATED MOBILE NAVIGATION POPUP DRAWER (100% Isolated from Desktop Header)
   ========================================================================== */
.mobile-drawer-overlay,
.mobile-drawer-popup {
    display: none !important;
}

    @media (max-width: 991px) {
        .mobile-menu-toggle-btn {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            background: #FAF0F3 !important;
            border: 1px solid #F0D5DC !important;
            color: #8C4054 !important;
            width: 38px !important;
            height: 38px !important;
            border-radius: 10px !important;
            cursor: pointer !important;
            transition: all 0.25s ease !important;
            padding: 0 !important;
        }

        .mobile-menu-toggle-btn svg,
        .hamburger-icon {
            width: 22px !important;
            height: 22px !important;
            stroke: #8C4054 !important;
            color: #8C4054 !important;
            display: block !important;
            flex-shrink: 0 !important;
            transition: stroke 0.25s ease !important;
        }

        .mobile-menu-toggle-btn:hover {
            background: #8C4054 !important;
            color: #FFFFFF !important;
            border-color: #8C4054 !important;
        }

        .mobile-menu-toggle-btn:hover svg,
        .mobile-menu-toggle-btn:hover .hamburger-icon {
            stroke: #FFFFFF !important;
            color: #FFFFFF !important;
        }

        .mobile-drawer-overlay {
            display: block !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            background: rgba(18, 10, 12, 0.75) !important;
            backdrop-filter: blur(8px) !important;
            -webkit-backdrop-filter: blur(8px) !important;
            z-index: 999998 !important;
            opacity: 0 !important;
            visibility: hidden !important;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }

        .mobile-drawer-overlay.active {
            opacity: 1 !important;
            visibility: visible !important;
        }

        .mobile-drawer-popup {
            display: flex !important;
            flex-direction: column !important;
            justify-content: space-between !important;
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 84% !important;
            max-width: 320px !important;
            height: 100vh !important;
            height: 100dvh !important;
            background: #FFFFFF !important;
            z-index: 999999 !important;
            box-shadow: 12px 0 40px rgba(24, 10, 14, 0.35) !important;
            transform: translateX(-100%) !important;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
            overflow-y: auto !important;
            -webkit-overflow-scrolling: touch !important;
        }

        .mobile-drawer-popup.active {
            transform: translateX(0) !important;
        }

        .drawer-header-unique {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            padding: 16px 20px !important;
            background: linear-gradient(135deg, #FAF2F4 0%, #FFF8FA 100%) !important;
            border-bottom: 1px solid #F0D5DC !important;
        }

        .drawer-logo-img {
            height: 34px !important;
            max-height: 34px !important;
            width: auto !important;
            max-width: 140px !important;
            object-fit: contain !important;
            display: block !important;
            mix-blend-mode: multiply !important;
        }

        .drawer-close-unique {
            width: 34px !important;
            height: 34px !important;
            border-radius: 50% !important;
            background: #FFFFFF !important;
            border: 1px solid #F0D5DC !important;
            color: #554045 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            cursor: pointer !important;
            transition: all 0.25s ease !important;
        }

        .drawer-close-unique:hover {
            background: #8C4054 !important;
            color: #FFFFFF !important;
        }

        .drawer-body-unique {
            flex: 1 !important;
            padding: 8px 0 !important;
        }

        .drawer-menu-list {
            list-style: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .drawer-menu-list li a {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            padding: 14px 22px !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            color: #3D1C24 !important;
            background: #FFFFFF !important;
            text-decoration: none !important;
            border-bottom: 1px solid #F6EDF0 !important;
            transition: all 0.25s ease !important;
        }

        .drawer-menu-list li a.active {
            background: #FFFFFF !important;
            color: #3D1C24 !important;
            padding-left: 22px !important;
        }

        .drawer-menu-list li a:hover {
            background: #FAF0F3 !important;
            color: #8C4054 !important;
            padding-left: 26px !important;
        }

        .drawer-link-arrow {
            font-size: 14px !important;
            font-weight: 800 !important;
            color: #C44D66 !important;
            transition: transform 0.25s ease !important;
        }

        .drawer-menu-list li a:hover .drawer-link-arrow {
            transform: translateX(4px) !important;
        }

        .drawer-footer-unique {
            padding: 20px !important;
            background: #FAF2F4 !important;
            border-top: 1px solid #F0D5DC !important;
            display: flex !important;
            flex-direction: column !important;
            gap: 10px !important;
        }

        .drawer-tagline {
            font-size: 10px !important;
            font-weight: 800 !important;
            letter-spacing: 1.5px !important;
            color: #8C4054 !important;
        }

        .drawer-contact-links {
            display: flex !important;
            flex-direction: column !important;
            gap: 6px !important;
            font-size: 12px !important;
            font-weight: 600 !important;
        }

        .drawer-contact-links a {
            color: #554045 !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
            transition: color 0.2s ease !important;
        }

        .drawer-contact-links a:hover {
            color: #8C4054 !important;
        }

        .drawer-contact-links a svg {
            color: #8C4054 !important;
            flex-shrink: 0 !important;
        }

        .drawer-social-row {
            display: flex !important;
            align-items: center !important;
            gap: 14px !important;
            font-size: 11px !important;
            font-weight: 700 !important;
            margin-top: 4px !important;
        }

        .drawer-social-row a {
            color: #8C4054 !important;
            text-decoration: none !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 5px !important;
            transition: opacity 0.2s ease !important;
        }

        .drawer-social-row a:hover {
            opacity: 0.8 !important;
        }

        .drawer-social-row a svg {
            color: #8C4054 !important;
            flex-shrink: 0 !important;
        }

        .nav-container {
            display: none !important;
        }
    }

    /* Default Logo Safety Constraints (Applies to all logo images globally) */
    .site-logo-img,
    .drawer-logo-img,
    .site-logo-img img,
    .drawer-logo-img img,
    img[src*="FinalLogoetaam"] {
        height: 42px !important;
        max-height: 42px !important;
        width: auto !important;
        max-width: 180px !important;
        object-fit: contain !important;
        display: block !important;
        mix-blend-mode: multiply !important;
    }

    /* Desktop View Header (Strictly Clean Horizontal Links & Hide Mobile Drawer) */
    @media (min-width: 992px) {

        .mobile-drawer-overlay,
        .mobile-drawer-popup,
        .mobile-drawer-overlay.active,
        .mobile-drawer-popup.active,
        .mobile-menu-toggle-btn {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
            transform: translateX(-9999px) !important;
        }

        .site-header {
            background-color: #FFFFFF !important;
            border-bottom: 1px solid #F0D5DC !important;
            position: sticky !important;
            top: 0 !important;
            z-index: 1000 !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04) !important;
        }

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

        .brand-logo {
            display: flex !important;
            align-items: center !important;
        }

        .site-logo-img {
            height: 44px !important;
            max-height: 44px !important;
            width: auto !important;
            max-width: 190px !important;
        }

        .nav-container {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            position: static !important;
            width: auto !important;
            height: auto !important;
            background: transparent !important;
            box-shadow: none !important;
            transform: none !important;
            padding: 0 !important;
            margin: 0 !important;
        }

        .nav-menu {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 28px !important;
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
        }

        .nav-menu li {
            width: auto !important;
            margin: 0 !important;
        }

        .nav-menu li a {
            display: inline-block !important;
            padding: 6px 0 !important;
            font-size: 13px !important;
            font-weight: 700 !important;
            color: #3D1C24 !important;
            text-decoration: none !important;
            border-bottom: none !important;
            background: transparent !important;
            position: relative !important;
            transition: color 0.25s ease !important;
        }

        .nav-menu li a::after {
            content: '' !important;
            position: absolute !important;
            bottom: 0 !important;
            left: 0 !important;
            width: 0% !important;
            height: 1.5px !important;
            background-color: #8C4054 !important;
            transition: width 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #8C4054 !important;
            border-bottom: none !important;
            background: transparent !important;
            padding-left: 0 !important;
        }

        .nav-menu li a:hover::after,
        .nav-menu li a.active::after {
            width: 100% !important;
        }

        .header-right-group {
            display: flex !important;
            align-items: center !important;
        }

        .header-actions {
            display: flex !important;
            align-items: center !important;
            gap: 15px !important;
        }

        .header-action-btn {
            background: none !important;
            border: none !important;
            font-size: 16px !important;
            color: #3D1C24 !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 4px !important;
        }
    }

    /* Hero Slider Mobile View (Full Height Slide & Light Overlay Navigation) */
    @media (max-width: 991px) {
        .hero-slider-section {
        height: 520px;
        position: relative;
        overflow: hidden;
    }

    .hero-slider-wrapper {
        display: flex;
        flex-wrap: nowrap;
        width: 500%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .hero-slide {
        width: 20%;
        min-width: 20%;
        max-width: 20%;
        flex: 0 0 20%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .slide-content-col {
        padding: 20px 16px 10px 16px;
        height: 200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        z-index: 2;
        color: #FFFFFF;
    }

    .slide-title {
        font-size: clamp(24px, 6.8vw, 36px);
        font-weight: 900;
        letter-spacing: 1px;
        margin-bottom: 8px;
        line-height: 1.1;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        color: #FFF7EB;
    }

    .slide-tagline {
        font-size: clamp(11px, 3.2vw, 13.5px);
        font-weight: 500;
        margin-bottom: 10px;
        line-height: 1.2;
        white-space: nowrap;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        color: #FFFFFF;
    }

    .slide-offer {
        font-size: clamp(16px, 5vw, 22px);
        font-weight: 900;
        margin-bottom: 12px;
        white-space: nowrap;
        color: #FFDE00;
        text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .slide-cta-btn {
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding-bottom: 3px;
        white-space: nowrap;
        color: #FFFFFF;
        border-bottom-color: #FFFFFF;
    }

    .slide-image-col {
        height: 320px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .slide-image-col img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .slider-pagination-bar {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        gap: 12px;
        background: transparent;
        z-index: 10;
    }

    .slider-counter-pill {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        color: #111111;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .slider-arrow-btn {
        width: 36px;
        height: 36px;
    }

    .slider-arrow-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Circular Shop By Category Mobile (Unique Touch-Swipeable App Story Carousel) */
    .circle-category-section {
        padding: 22px 0 16px 0;
    }

    .shop-category-header {
        margin-bottom: 16px;
    }

    .shop-category-title {
        font-size: 17px;
        letter-spacing: 1px;
    }

    .circle-category-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 6px 16px 16px 16px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .circle-category-grid::-webkit-scrollbar {
        display: none;
    }

    .circle-category-card {
        flex: 0 0 auto;
        width: 86px;
        scroll-snap-align: start;
    }

    .circle-avatar-wrap {
        width: 74px;
        height: 74px;
        padding: 2.5px;
        margin-bottom: 6px;
        box-shadow: 0 4px 14px rgba(196, 13, 46, 0.12);
    }

    .circle-avatar-wrap img {
        border-width: 2px;
    }

    .circle-name {
        font-size: 11px;
        font-weight: 700;
        white-space: nowrap;
        margin-bottom: 3px;
    }

    .circle-pink-bar {
        width: 18px;
        height: 2px;
    }

    /* Features Box Mobile Layout (Unique 2x2 Glassmorphic Luxury Card Grid) */
    .features-bar-section {
        padding: 16px 0;
    }

    .features-box-card {
        background-color: #FAF4F6;
        border-radius: 16px;
        border: 1px solid #F3E2E6;
        padding: 12px;
        box-shadow: 0 4px 18px rgba(196, 13, 46, 0.04);
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .feature-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        padding: 14px 8px;
        background: #FFFFFF;
        border-radius: 12px;
        border: 1px solid #F7E4E8;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        transition: all 0.25s ease;
        position: relative;
    }

    .feature-box:not(:last-child)::after {
        display: none !important;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #FFF0F3;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #C44D66;
        margin-bottom: 2px;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
        stroke: #C44D66;
    }

    .feature-text {
        text-align: center;
    }

    .feature-text h4 {
        font-size: 12.5px;
        font-weight: 700;
        color: #3D1C24;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .feature-text p {
        font-size: 10.5px;
        font-weight: 500;
        color: #885562;
        margin-bottom: 0;
        line-height: 1.2;
    }

    /* Marketplace Trust Bar Mobile (Continuous Infinite Marquee Loop) */
    .marketplace-trust-section {
        padding: 16px 0;
    }

    .marketplace-title {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .marketplace-logos-grid {
        gap: 14px;
        animation: continuousMarquee 12s linear infinite;
    }

    /* 3-Image Product Variant Banner Slider Mobile (1 Image Slide at a Time on Mobile) */
    .mid-banner-slider-section {
        padding: 16px 0;
    }

    .mid-slider-wrapper {
        height: 395px;
        border-radius: 14px;
    }

    .mid-slide.variant-trio-slide {
        padding: 12px 12px 32px 12px;
    }

    .trio-images-grid {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
        height: 300px !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        gap: 0 !important;
    }

    .trio-images-grid::-webkit-scrollbar {
        display: none !important;
    }

    .trio-img-card {
        min-width: 100% !important;
        width: 100% !important;
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        height: 100% !important;
        border-radius: 12px !important;
    }

    .variant-slide-caption-bar {
        padding: 8px 12px !important;
        margin-top: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .caption-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 3px !important;
        flex: 1 !important;
        min-width: 0 !important;
        margin-right: 8px !important;
    }

    .caption-badge {
        font-size: 8px !important;
        font-weight: 800 !important;
        padding: 2px 7px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        display: inline-block !important;
        letter-spacing: 0.5px !important;
    }

    .caption-title {
        font-size: 12.5px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }

    .btn-caption-cta {
        font-size: 10px !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        padding: 6px 11px !important;
        background: #FAF0F3 !important;
        border-radius: 20px !important;
        color: #8C4054 !important;
        letter-spacing: 0.5px !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    .mid-slide-tagline {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .mid-slide-center-col p {
        font-size: 12px;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .btn-mid-slide-cta {
        font-size: 11.5px;
        padding: 9px 20px;
    }

    /* About ETAAM Section Mobile Fix (Exact Equal 14px Left & Right Side Gaps) */
    .about-etaam-section {
        padding: 20px 0;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        background-color: #FFFFFF;
    }

    .about-etaam-card {
        background-color: #FAF4F6;
        border-radius: 20px;
        border: 1px solid #F3E2E6;
        padding: 14px;
        box-shadow: 0 4px 20px rgba(196, 13, 46, 0.05);
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .about-etaam-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .about-etaam-img-col {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        border-radius: 14px;
        overflow: hidden !important;
    }

    .about-etaam-img-col img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 14px;
        margin: 0 !important;
    }

    .about-etaam-text-col {
        background-color: #FFFFFF !important;
        border-radius: 16px;
        border: 1px solid #F7E4E8;
        padding: 18px 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .about-etaam-text-col h2 {
        font-size: 21px;
        margin-bottom: 8px;
    }

    .about-etaam-text-col p {
        font-size: 12.5px;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 20px;
        width: 100%;
    }

    .highlight-mini-item {
        padding: 8px 6px;
        border-radius: 10px;
        gap: 5px;
        justify-content: flex-start;
        align-items: center;
        box-sizing: border-box;
        overflow: hidden;
    }

    .highlight-mini-icon {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }

    .highlight-mini-icon svg {
        width: 12px;
        height: 12px;
    }

    .highlight-mini-text {
        font-size: 10.5px;
        font-weight: 700;
        white-space: nowrap;
        line-height: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-know-more {
        width: 100%;
        text-align: center;
        padding: 13px 16px;
        font-size: 12.5px;
        letter-spacing: 1px;
        border-radius: 25px;
        box-shadow: 0 4px 16px rgba(88, 36, 47, 0.2);
    }

    /* OUR COLLECTIONS Mobile (Touch-Swipeable App Story Capsule Carousel) */
    .collections-portrait-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding: 6px 16px 16px 16px;
        margin-bottom: 25px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .collections-portrait-grid::-webkit-scrollbar {
        display: none;
    }

    .collection-portrait-card {
        flex: 0 0 auto;
        width: 92px;
        scroll-snap-align: start;
    }

    .collection-portrait-img-wrap {
        width: 100%;
        height: 145px;
        border-radius: 16px;
        box-shadow: 0 6px 16px rgba(196, 13, 46, 0.12);
        border: 2px solid #FFFFFF;
        margin-bottom: 8px;
    }

    .collection-portrait-title {
        font-size: clamp(10px, 2.9vw, 11.5px);
        font-weight: 700;
        color: #3D1C24;
        text-align: center;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        display: block !important;
    }

    .product-category {
        font-size: clamp(9px, 2.6vw, 10.5px) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        display: block !important;
        text-align: center;
    }

    .product-title {
        font-size: clamp(11px, 3.2vw, 13px) !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
        display: block !important;
        text-align: center;
    }

    .mid-slider-btn {
        display: none !important;
    }

    /* Watch and Buy Mobile Video - Unique, Short & Compact */
    .watch-video-wrapper {
        width: 100% !important;
        height: 420px !important;
        background-color: transparent !important;
        overflow: hidden !important;
    }

    .watch-video-element {
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center 15% !important;
        display: block !important;
    }

    /* Curated Collection Header Mobile: Heading & Paragraph Left, Button Right */
    /* Curated Collection Header Mobile: Heading 1 Line -> Paragraph 1 Line -> Left 2 Tabs -> Right Shop Button */
    .curated-header-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 6px !important;
        margin-bottom: 16px !important;
        padding-bottom: 8px !important;
        width: 100% !important;
    }

    .curated-title-group {
        text-align: left !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
    }

    .curated-title-group h2 {
        font-size: clamp(16px, 5.2vw, 22px) !important;
        text-align: left !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
    }

    .curated-title-group p {
        font-size: clamp(10.5px, 2.9vw, 12.5px) !important;
        text-align: left !important;
        margin: 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        width: 100% !important;
        color: #665055 !important;
    }

    .curated-tabs-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 10px !important;
        margin-top: 6px !important;
    }

    .curated-tabs {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .curated-tab-item {
        font-size: 12px !important;
        white-space: nowrap !important;
    }

    .curated-link-right {
        align-self: flex-end !important;
        position: static !important;
        font-size: 11.5px !important;
        padding: 5px 14px !important;
        border-radius: 20px !important;
        margin-top: 2px !important;
    }

    /* Shop By Category Touch Carousel */
    .circle-categories-grid {
        gap: 14px;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .circle-categories-grid::-webkit-scrollbar {
        display: none;
    }

    .circle-category-card {
        flex: 0 0 auto;
    }

    .circle-avatar-wrap {
        width: 105px;
        height: 105px;
    }

    .circle-avatar-wrap img {
        width: 105px;
        height: 105px;
    }

    /* Mid-Page Promo Slider Mobile */
    .mid-banner-slider-section {
        padding: 22px 0;
    }

    .mid-slider-wrapper {
        min-height: 320px;
        border-radius: 12px;
    }

    .mid-slide-center-col {
        padding: 22px 14px 40px 14px;
    }

    .mid-slide-center-col h2 {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .mid-slide-center-col .mid-slide-tagline {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .mid-slide-center-col p {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .btn-mid-slide-cta {
        padding: 10px 24px;
        font-size: 11px;
    }

    .mid-slider-btn {
        width: 36px;
        height: 36px;
    }

    .mid-slider-btn.prev-btn {
        left: 8px;
    }

    .mid-slider-btn.next-btn {
        right: 8px;
    }

    /* Curated & Featured Header */
    .curated-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .curated-title-group h2 {
        font-size: 20px;
    }

    /* 2-Column Mobile Product Shopping Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-info {
        padding: 10px 8px;
    }

    .product-title {
        font-size: 11px;
        height: 30px;
        line-height: 1.3;
        overflow: hidden;
    }

    .product-swatch-strip {
        gap: 4px;
        margin: 6px 0;
    }

    .swatch-thumb {
        width: 22px;
        height: 22px;
    }

    .product-mrp-row {
        gap: 4px;
        font-size: 11px;
        flex-wrap: wrap;
    }

    .mrp-discount-badge {
        font-size: 9px;
        padding: 1px 4px;
    }

    .btn-buy-trigger {
        width: 100%;
        padding: 8px 6px;
        font-size: 11px;
    }

    /* Collections Portrait Grid Mobile Touch Scroll */
    .collections-portrait-grid {
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .collections-portrait-grid::-webkit-scrollbar {
        display: none;
    }

    .collection-portrait-card {
        flex: 0 0 110px;
    }

    .collection-portrait-img-wrap {
        height: 145px;
    }

    /* Watch and Buy Video Reels Mobile */
    .watch-buy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .watch-video-wrapper {
        height: 420px !important;
    }

    .watch-product-bar {
        padding: 8px 10px;
    }

    .watch-product-thumb {
        width: 36px;
        height: 36px;
    }

    .watch-product-name {
        font-size: 11px;
    }

    .btn-watch-buy {
        padding: 5px 10px;
        font-size: 10px;
    }

    /* About ETAAM Card Mobile */
    .about-etaam-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-etaam-card {
        padding: 20px 16px;
    }

    .about-etaam-text-col h2 {
        font-size: 20px;
    }

    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Blog Grid Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-img-wrap {
        height: 180px;
    }

    .blog-card-title {
        font-size: 15px;
    }

    /* Value Promise & Newsletter Mobile */
    .promise-rose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Unique VIP Luxury Newsletter Card Mobile */
    .newsletter-section-wrap {
        padding: 6px 0 !important;
    }

    .unique-vip-newsletter-card {
        padding: 22px 14px !important;
        margin: 6px auto !important;
        border-radius: 16px !important;
        width: calc(100% - 24px) !important;
        max-width: 440px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .vip-card-badge {
        padding: 4px 12px !important;
        font-size: 9.5px !important;
        margin-bottom: 8px !important;
    }

    .vip-newsletter-title {
        font-size: 19px !important;
        margin-bottom: 4px !important;
    }

    .vip-newsletter-desc {
        font-size: 11.5px !important;
        line-height: 1.4 !important;
        margin-bottom: 14px !important;
        padding: 0 4px !important;
    }

    .vip-input-pill {
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 3px 3px 3px 12px !important;
    }

    .vip-mail-icon {
        width: 15px !important;
        height: 15px !important;
        margin-right: 6px !important;
    }

    .vip-email-input {
        flex: 1 !important;
        min-width: 0 !important;
        font-size: 11.5px !important;
        padding: 6px 2px !important;
    }

    .vip-submit-btn {
        flex-shrink: 0 !important;
        padding: 8px 13px !important;
        font-size: 10.5px !important;
        border-radius: 20px !important;
        white-space: nowrap !important;
    }

    .vip-trust-perks {
        gap: 6px !important;
        font-size: 10px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .trust-perk-item svg {
        width: 11px !important;
        height: 11px !important;
    }

    /* Connect With Us Social Buttons Mobile Single-Line */
    .essence-social-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .social-btn {
        flex: 1 1 auto !important;
        padding: 6px 7px !important;
        font-size: 10px !important;
        gap: 3px !important;
        border-radius: 18px !important;
        white-space: nowrap !important;
    }

    .social-btn svg {
        width: 12px !important;
        height: 12px !important;
        min-width: 12px !important;
    }

    /* Footer Mobile Columns */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    /* Buy Modal Mobile Dialog */
    .modal-content-card {
        width: 92%;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        height: auto;
    }

    .hero-slider-wrapper {
        height: 540px;
    }

    .hero-slide {
        height: 540px;
    }

    .slide-image-col {
        height: 320px;
    }

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

    .watch-buy-grid {
        grid-template-columns: 1fr;
    }

    .promise-rose-grid {
        grid-template-columns: 1fr;
    }
}