/* ========================================================
   assets/css/home.css — Luminellic Boutique Homepage Architecture
   Clean Production Stylesheet (Hero, Marquee, Rails & Lookbooks)
   ======================================================== */

/* --------------------------------------------------------
   1. HERO SECTION (LEFT-ALIGNED EDITORIAL)
   -------------------------------------------------------- */
.dream-hero-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--bg-main, #fffafc);
    overflow: hidden;
    margin-top: 0;
    contain: layout paint;
}

.dream-hero-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.dream-hero-visual {
    position: relative;
    width: 100%;
    height: 52vh;
    min-height: 360px;
    order: 1;
    transform: translateZ(0);
}

.visual-inner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-auto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.dream-hero-visual:hover .hero-auto-img {
    transform: scale(1.03) translateZ(0);
}

.placeholder-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #f6e6ec 100%);
}

.image-gradient-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--bg-main, #fffafc) 0%, rgba(255,250,252,0) 100%);
    pointer-events: none;
}

.image-desktop-blend {
    display: none;
}

.floating-review-badge {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.42rem 0.9rem;
    border-radius: 30px;
    font-size: 0.78rem;
    color: var(--text-light, #9a8c93);
    box-shadow: 0 4px 15px rgba(244, 166, 193, 0.2);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    z-index: 5;
    border: 1px solid rgba(244, 166, 193, 0.25);
}
.floating-review-badge .star { 
    color: var(--brand-primary, #f4a6c1); 
    font-size: 0.9rem; 
    margin: 0 2px; 
}

.dream-hero-content {
    position: relative;
    padding: 1.8rem 6% 3.5rem;
    order: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--bg-main, #fffafc);
    z-index: 2;
    text-align: left;
}

.content-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(244, 166, 193, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(244, 166, 193, 0.12) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
}

.content-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    text-align: left;
}

.dream-hero-content .hero-overline {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 0.85rem !important;
    width: auto !important;
}

.dream-hero-content .hero-overline .text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--brand-dark, #d1648a) !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-align: left !important;
}

.hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 6.5vw, 3.4rem);
    color: var(--text-main, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 1.1rem;
    letter-spacing: -0.4px;
    text-align: left;
}

.dynamic-word-wrapper {
    display: inline-grid;
    position: relative;
    text-align: left;
    vertical-align: baseline;
    padding-bottom: 6px;
    padding-right: 14px;
    margin-top: 2px;
    overflow: visible;
}

.dream-word {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(18px) scale(0.94);
    filter: blur(5px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.45s ease;
    pointer-events: none;
    white-space: nowrap;
    padding: 0 4px 6px 2px;
    will-change: opacity, transform, filter;
    color: var(--brand-dark, #d1648a);
}

.dream-word.active { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
    filter: blur(0);
    pointer-events: auto; 
}

.dream-word.exit { 
    opacity: 0; 
    transform: translateY(-16px) scale(0.96); 
    filter: blur(4px);
}

.hero-desc {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(0.98rem, 2vw, 1.15rem);
    color: #7d6b75;
    line-height: 1.6;
    margin: 0 0 1.8rem 0;
    max-width: 95%;
    text-align: left;
}

.hero-actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: nowrap;
}

.dream-btn-primary, .dream-btn-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    padding: 0.85rem 1.4rem;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    will-change: transform;
}
.dream-btn-primary {
    background: linear-gradient(90deg, #f6b4cb 0%, #dfaec5 100%);
    color: white;
    box-shadow: 0 5px 16px rgba(246, 180, 203, 0.35);
}
.dream-btn-primary:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(246, 180, 203, 0.45); 
    color: white; 
}

.dream-btn-secondary {
    background: white;
    color: var(--text-light, #9a8c93);
    border: 1px solid #efe5e8;
}
.dream-btn-secondary:hover { 
    border-color: var(--brand-primary, #f4a6c1); 
    color: var(--brand-primary, #f4a6c1); 
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding-top: 0.4rem;
    text-align: left;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-val {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #d1648a;
    margin-bottom: 0.1rem;
}
.trust-val .star { font-size: 0.82rem; }
.trust-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    color: var(--text-light, #9a8c93);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .dream-hero-container {
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        min-height: 86vh;
        position: relative;
    }
    
    .dream-hero-visual {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 55vw;
        height: 100%;
        min-height: 100%;
        order: 2;
        z-index: 1;
    }

    .image-gradient-overlay { 
        display: none; 
    }

    .image-desktop-blend {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 35%;
        background: linear-gradient(to right, var(--bg-main, #fffafc) 0%, rgba(255, 250, 252, 0.75) 30%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }

    .dream-hero-content {
        position: relative;
        order: 1;
        width: 52vw;
        max-width: 720px;
        padding: 4.5rem 2rem 4.5rem 6vw;
        background: transparent;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .content-inner {
        width: 100%;
        max-width: 540px;
        margin: 0;
    }
    
    .hero-desc { 
        max-width: 480px; 
    }
    
    .dream-btn-primary, .dream-btn-secondary {
        font-size: 0.8rem;
        padding: 1rem 1.8rem;
    }

    .floating-review-badge {
        bottom: 2rem;
        right: 3rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
}

@media (min-width: 1400px) {
    .dream-hero-content {
        padding-left: 8vw;
    }
}

/* --------------------------------------------------------
   2. MARQUEE TICKER RIBBON
   -------------------------------------------------------- */
.atelier-ticker-ribbon {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #fffbfd 0%, #faedf3 50%, #fffbfd 100%);
    border-top: 1px solid rgba(244, 166, 193, 0.28);
    border-bottom: 1px solid rgba(244, 166, 193, 0.28);
    padding: 0.75rem 0;
    display: flex;
    user-select: none;
    contain: content;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    font-family: 'Poppins', sans-serif;
}

.ticker-track {
    display: flex;
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: streamTicker 26s linear infinite;
}

.atelier-ticker-ribbon:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-sequence {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    padding-right: 1.8rem;
    flex-shrink: 0;
}

.ticker-item {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #5a4b52;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.ticker-item.highlight {
    color: #c94b79;
    font-weight: 700;
}

.gem-sparkle {
    color: #e48db5;
    font-size: 0.84rem;
    display: inline-block;
}

.ticker-dot {
    color: #dca3d0;
    font-size: 0.85rem;
    opacity: 0.6;
    user-select: none;
}

@keyframes streamTicker {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 992px) {
    .atelier-ticker-ribbon {
        padding: 0.95rem 0;
    }
    .ticker-sequence {
        gap: 2.2rem;
        padding-right: 2.2rem;
    }
    .ticker-item {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* --------------------------------------------------------
   3. CATEGORIES CIRCULAR RAIL
   -------------------------------------------------------- */
.dream-categories-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #fffafc 0%, #fff0f5 50%, #fffafc 100%);
    padding: 4.5rem 0 5.5rem;
    border-top: 1px solid rgba(244, 166, 193, 0.25);
    border-bottom: 1px solid rgba(244, 166, 193, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    contain: content;
    font-family: 'Poppins', sans-serif;
}

.cat-ambient-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}
.glow-c-left { top: 20%; left: -80px; background: #ffd6e6; }
.glow-c-right { bottom: 10%; right: -80px; background: #edd8fa; }

.dream-categories-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.categories-section-header {
    text-align: center;
    margin-bottom: 3rem;
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.categories-section-header .hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 5.5vw, 3rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
    text-align: center;
}

.categories-sublead {
    font-size: clamp(0.85rem, 1.8vw, 0.96rem);
    color: #8c7b84;
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.5;
    text-align: center;
}

.categories-circles-track {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    padding: 1.5rem 12% 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
    transform: translateZ(0);
}
.categories-circles-track::-webkit-scrollbar { display: none; }
.categories-circles-track { -ms-overflow-style: none; scrollbar-width: none; }

.category-circle-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transform-origin: center center;
    transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    opacity: 0.65;
    transform: scale(0.9) translateZ(0);
    will-change: transform, opacity;
}

.category-circle-item.is-focused {
    opacity: 1;
    transform: scale(1.1) translateZ(0);
}

.circle-portal {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background: #fbf3f6;
    box-shadow: 0 8px 24px rgba(220, 163, 208, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.95);
    transform: translateZ(0);
    transition: box-shadow 0.25s ease;
}

.category-circle-item.is-focused .circle-portal {
    box-shadow: 0 14px 34px rgba(244, 166, 193, 0.36);
}

.portal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-circle-item:hover .portal-img {
    transform: scale(1.08);
}

.portal-fallback-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.6rem;
}

.portal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 18, 0.22) 0%, transparent 55%);
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.dynamic-portal {
    position: relative;
    background: linear-gradient(135deg, #d8c3f7 0%, #9078b5 100%);
}

.dynamic-portal-layer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    will-change: opacity;
}
.layer-front { opacity: 1; }
.layer-back  { opacity: 0; }

.portal-viewall-overlay {
    z-index: 2;
    background: rgba(30, 15, 25, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewall-inner-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.circle-meta {
    margin-top: 0.85rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.circle-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #2d2629);
    margin: 0;
    letter-spacing: -0.2px;
    transition: color 0.25s ease;
}

.center-accent-title {
    color: var(--brand-dark, #d1648a);
}

.circle-subtitle {
    font-size: 0.66rem;
    font-weight: 600;
    color: #9a8c93;
    letter-spacing: 0.4px;
}

.order-mob-1 { order: 1; }
.order-mob-2 { order: 2; }
.order-mob-3 { order: 3; }
.order-mob-4 { order: 4; }
.order-mob-5 { order: 5; }

@media (min-width: 992px) {
    .dream-categories-wrapper {
        padding: 6rem 4% 7rem;
    }
    .categories-section-header {
        margin-bottom: 4rem;
    }
    .categories-circles-track {
        justify-content: center;
        align-items: center;
        gap: 2.8rem;
        padding: 1.5rem 0;
        overflow: visible;
    }
    .category-circle-item {
        opacity: 1 !important;
        transform: none !important;
        transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .order-mob-1 { order: 1; }
    .order-mob-2 { order: 2; }
    .order-mob-5 { order: 3; }
    .order-mob-3 { order: 4; }
    .order-mob-4 { order: 5; }

    .pos-outer-left, .pos-outer-right { width: 135px; }
    .pos-outer-left .circle-portal, .pos-outer-right .circle-portal {
        width: 135px; height: 135px;
        box-shadow: 0 10px 25px rgba(220, 163, 208, 0.18);
    }
    .pos-outer-left .circle-title, .pos-outer-right .circle-title { font-size: 1.12rem; }

    .pos-inner-left, .pos-inner-right { width: 165px; }
    .pos-inner-left .circle-portal, .pos-inner-right .circle-portal {
        width: 165px; height: 165px;
        box-shadow: 0 14px 32px rgba(220, 163, 208, 0.24);
    }
    .pos-inner-left .circle-title, .pos-inner-right .circle-title { font-size: 1.22rem; }

    .pos-center { width: 195px; }
    .pos-center .circle-portal {
        width: 195px; height: 195px;
        box-shadow: 0 18px 45px rgba(244, 166, 193, 0.38);
    }
    .pos-center .circle-title { font-size: 1.4rem; }
    .pos-center .circle-subtitle { font-size: 0.8rem; color: #d1648a; }
    .viewall-inner-text { font-size: 0.76rem; letter-spacing: 1.4px; padding: 0.45rem 1rem; }

    .category-circle-item:hover {
        transform: translateY(-8px) translateZ(0) !important;
    }
    .category-circle-item:hover .circle-portal {
        box-shadow: 0 22px 50px rgba(244, 166, 193, 0.45);
    }
    .category-circle-item:hover .circle-title {
        color: var(--brand-primary, #f4a6c1);
    }
}

/* --------------------------------------------------------
   4. MANIFESTO (FROM ME TO YOU)
   -------------------------------------------------------- */
.whisper-manifesto-stage {
    width: 100%;
    background-color: #ffffff;
    padding: 5rem 6% 5.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    border-top: 1px solid rgba(244, 166, 193, 0.22);
    border-bottom: 1px solid rgba(244, 166, 193, 0.22);
    font-family: 'Poppins', -apple-system, sans-serif;
}

.whisper-manifesto-wrap {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whisper-kicker {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #d1648a;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: inline-block;
}

.whisper-note-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 400;
    line-height: 1.35;
    color: #2d2629;
    margin: 0 0 1.2rem;
    letter-spacing: -0.3px;
    text-align: center;
}

.whisper-body-text {
    font-size: clamp(0.88rem, 2vw, 0.98rem);
    color: #7d6b75;
    line-height: 1.8;
    margin: 0 0 1.8rem;
    font-weight: 300;
    max-width: 540px;
    text-align: center;
}

.whisper-signoff {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-style: italic;
    color: #b08d9e;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.whisper-signoff em {
    font-style: normal;
    color: #f4a6c1;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .whisper-manifesto-stage { padding: 3.8rem 6% 4.2rem; }
    .whisper-body-text { line-height: 1.7; }
}

/* --------------------------------------------------------
   5. SECRET GARDEN SHOWCASE
   -------------------------------------------------------- */
.secret-garden-viewport {
    position: relative;
    width: 100%;
    background: #fffafc;
    padding: 5.5rem 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.garden-stage-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.garden-copy-column {
    text-align: left;
}

.garden-overline {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: #b57a91;
    display: block;
    margin-bottom: 0.8rem;
}

.garden-title-main {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    font-weight: 500;
    color: #261f22;
    margin: 0 0 1rem;
    letter-spacing: -0.4px;
    line-height: 1.16;
}

.garden-description {
    font-size: 0.98rem;
    color: #5c4953;
    line-height: 1.68;
    margin: 0 0 1.8rem;
    max-width: 520px;
}

.garden-tag-cluster {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.garden-pill {
    font-size: 0.76rem;
    font-weight: 600;
    color: #735161;
    background: #ffffff;
    padding: 0.32rem 0.9rem;
    border-radius: 20px;
    border: 1px solid rgba(244, 166, 193, 0.45);
    box-shadow: 0 2px 8px rgba(244, 166, 193, 0.08);
}

.garden-bullet { color: #d1789c; font-size: 0.7rem; }

.garden-cta-wrap {
    display: flex;
    align-items: center;
}

.btn-garden-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2.2rem;
    background: #f4a6c1;
    border: 1px solid rgba(244, 166, 193, 0.6);
    border-radius: 9999px;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(246, 180, 203, 0.35);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.btn-garden-explore:hover {
    background: #e28fae;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 180, 203, 0.45);
    color: #ffffff;
}

.garden-visual-column {
    width: 100%;
    display: flex;
    justify-content: center;
}

.garden-artwork-stage {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 440px;
    border-radius: 36px;
    overflow: hidden;
    border: 1.5px solid rgba(244, 166, 193, 0.4);
    box-shadow: 0 20px 50px rgba(220, 163, 208, 0.16);
}

.garden-artwork-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.garden-artwork-stage:hover img { transform: scale(1.04); }

.mobile-top-sheer { display: none; }

.artwork-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 166, 193, 0.4);
    color: #b57a91;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .secret-garden-viewport { padding: 4.5rem 0; }
    .garden-stage-wrapper { grid-template-columns: 1fr; gap: 3.2rem; }
    .garden-artwork-stage { max-width: 100%; height: 360px; border-radius: 28px; }
}

@media (max-width: 768px) {
    .secret-garden-viewport { padding: 3.5rem 0 0 0; }
    .garden-stage-wrapper { display: flex; flex-direction: column; padding: 0; gap: 2.2rem; }
    .garden-copy-column { padding: 0 1.4rem; }
    .garden-title-main { font-size: 2.1rem; line-height: 1.2; }
    .garden-description { font-size: 0.9rem; margin-bottom: 1.4rem; }
    .garden-tag-cluster { gap: 0.45rem; margin-bottom: 1.8rem; }
    .garden-bullet { display: none; }
    .garden-pill { font-size: 0.72rem; padding: 0.25rem 0.65rem; }
    .btn-garden-explore { width: 100%; justify-content: center; }

    .garden-visual-column { width: 100%; margin-top: 0.5rem; }
    .garden-artwork-stage { width: 100%; max-width: 100%; height: 320px; border-radius: 0; border: none; box-shadow: none; }
    .garden-artwork-stage img { border-radius: 0; }

    .mobile-top-sheer {
        display: block;
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 130px;
        background: linear-gradient(180deg, #fffafc 0%, rgba(255, 250, 252, 0.88) 35%, rgba(255, 250, 252, 0.45) 70%, transparent 100%);
        pointer-events: none;
        z-index: 2;
    }
    .artwork-badge { top: 1.4rem; right: 1.4rem; z-index: 3; }
}

/* --------------------------------------------------------
   6. SIGNATURE PIECES LOOKBOOK (COQUETTE BOW CORNER READY)
   -------------------------------------------------------- */
.signature-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4.5rem 5% 4rem;
    background-color: var(--bg-main, #fffafc);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.signature-header {
    text-align: center;
    margin-bottom: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.signature-header .hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5.5vw, 2.9rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.4px;
    text-align: center;
}

.signature-desc {
    font-size: clamp(0.85rem, 2vw, 0.96rem);
    color: #8c7b84;
    margin: 0;
    text-align: center;
    max-width: 520px;
    line-height: 1.5;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.lookbook-card {
    position: relative !important;
    display: block;
    text-decoration: none;
    border-radius: 24px;
    overflow: visible !important;
    box-shadow: 0 6px 20px rgba(244, 166, 193, 0.12);
    background: #fdf2f6;
    box-sizing: border-box;
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform;
}
.lookbook-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 14px 30px rgba(244, 166, 193, 0.25);
}
.lookbook-card.is-out-of-stock .lookbook-img {
    filter: grayscale(0.25) opacity(0.85);
}

.card-badges-stack {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 6;
}

.product-status-pill {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.product-status-pill.sale {
    background: rgba(255, 240, 245, 0.95);
    color: #d1648a;
    border: 1px solid rgba(244, 166, 193, 0.45);
    box-shadow: 0 2px 8px rgba(209, 100, 138, 0.15);
}
.product-status-pill.out-of-stock {
    background: rgba(45, 38, 41, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lookbook-link { display: block; text-decoration: none; width: 100%; height: 100%; }

.lookbook-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.2;
    overflow: hidden !important;
    border-radius: 24px;
    background: #fffafc;
}

.lookbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.lookbook-card:hover .lookbook-img { transform: scale(1.05) translateZ(0); }

.lookbook-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #f6e6ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--brand-primary, #f4a6c1);
    opacity: 0.6;
}

.lookbook-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 12, 22, 0.82) 0%, rgba(25, 12, 22, 0.25) 45%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.lookbook-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 1.1rem 0.9rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 6px;
    box-sizing: border-box;
}

.lookbook-info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
    gap: 2px;
}

.lookbook-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.92rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    letter-spacing: -0.2px;
}

.lookbook-price-line { display: flex; align-items: baseline; gap: 5px; }

.lookbook-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.lookbook-price.sale { color: #ffd1e1; font-weight: 700; }

.lookbook-orig-price {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: line-through;
}

.lookbook-action-right { flex-shrink: 0; }

.lookbook-view-pill {
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.lookbook-view-pill.soldout {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}
.lookbook-card:hover .lookbook-view-pill:not(.soldout) {
    background: #ffffff;
    color: #2d2629;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    .signature-grid { gap: 18px; }
    .lookbook-card, .lookbook-image-container { border-radius: 32px !important; }
    .lookbook-footer { padding: 1.4rem 1.2rem; }
    .lookbook-title { font-size: 1.1rem; }
    .lookbook-price { font-size: 0.86rem; }
    .lookbook-view-pill { font-size: 0.66rem; padding: 0.4rem 0.8rem; }
}

@media (min-width: 992px) {
    .signature-wrapper { padding: 6rem 5% 5rem; }
    .signature-header { margin-bottom: 3.5rem; }
    .signature-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}

/* --------------------------------------------------------
   7. LIFESTYLE CHAPTERS & MOMENTS STACK
   -------------------------------------------------------- */
.moments-wrapper {
    width: 100%;
    background-color: var(--bg-main, #fffafc);
    padding: 4rem 5% 4.5rem;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.moments-container {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.moments-header {
    text-align: center;
    margin-bottom: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.moments-header .hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.7rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.4rem 0;
    letter-spacing: -0.4px;
    text-align: center;
}

.moments-sublead {
    font-size: clamp(0.85rem, 1.8vw, 0.94rem);
    color: #8c7b84;
    margin: 0;
    text-align: center;
    max-width: 500px;
    line-height: 1.5;
}

.moments-mobile-switcher {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.mobile-chapter-pill {
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.35);
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.74rem;
    font-weight: 600;
    color: #7a6a72;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mobile-chapter-pill.active {
    background: linear-gradient(135deg, #f6b4cb 0%, #dfaec5 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 3px 10px rgba(246, 180, 203, 0.35);
}

.moments-stage {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.moments-tabs-col {
    display: none;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.moment-tab-card {
    background: #ffffff;
    border: 1.5px solid rgba(244, 166, 193, 0.25);
    border-radius: 20px;
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(244, 166, 193, 0.05);
    position: relative;
    text-align: left;
}
.moment-tab-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-primary, #f4a6c1);
}
.moment-tab-card.active {
    border-color: var(--brand-primary, #f4a6c1);
    background: linear-gradient(135deg, #ffffff 0%, #fffbfc 100%);
    box-shadow: 0 8px 24px rgba(244, 166, 193, 0.16);
}

.tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
    gap: 8px;
}

.tab-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #ad8f9b;
    text-transform: uppercase;
}

.tab-mood-pill {
    background: #fdf5f8;
    color: var(--brand-dark, #d1648a);
    font-size: 0.64rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid rgba(244, 166, 193, 0.25);
}

.tab-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text-dark, #2d2629);
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.tab-desc {
    font-size: 0.8rem;
    color: #7d6b75;
    line-height: 1.45;
    margin: 0;
}

.tab-footer-action {
    margin-top: 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-dark, #d1648a);
    display: none;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
}
.moment-tab-card.active .tab-footer-action { display: inline-flex; }

.moments-showcase-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.showcase-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1.5px solid rgba(244, 166, 193, 0.3);
    border-radius: 24px;
    overflow: visible !important;
    box-shadow: 0 10px 30px rgba(244, 166, 193, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
}

.showcase-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.8;
    background: #fdf5f8;
    overflow: hidden !important;
    border-radius: 24px 24px 0 0;
}

.showcase-img-link { display: block; width: 100%; height: 100%; }

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    display: block;
}
.showcase-card:hover .showcase-img { transform: scale(1.03); }

.showcase-badge-container {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
}

.showcase-status-badge {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.showcase-status-badge.sale {
    background: rgba(255, 240, 245, 0.95);
    color: #d1648a;
    border: 1px solid rgba(244, 166, 193, 0.45);
    box-shadow: 0 2px 8px rgba(209, 100, 138, 0.15);
}
.showcase-status-badge.out-of-stock {
    background: rgba(45, 38, 41, 0.85);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-meta-bar {
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    box-sizing: border-box;
}

.showcase-meta-info { flex: 1; min-width: 0; }

.showcase-overline {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ad8f9b;
    display: block;
    margin-bottom: 2px;
}

.showcase-title-link { text-decoration: none; display: block; }

.showcase-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2d2629;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}
.showcase-title-link:hover .showcase-item-title { color: var(--brand-dark, #d1648a); }

.showcase-price-cluster { display: flex; align-items: baseline; gap: 6px; }

.showcase-item-price {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--brand-accent, #dca3d0);
}
.showcase-item-price.sale { color: #d1648a; font-weight: 700; }

.showcase-item-orig-price {
    font-size: 0.74rem;
    color: #a89aa1;
    text-decoration: line-through;
}

.showcase-add-bag {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.76rem !important;
    border-radius: 9999px !important;
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.showcase-add-bag .btn-arrow { transition: transform 0.2s ease; }
.showcase-add-bag:hover .btn-arrow { transform: translateX(3px); }

@media (min-width: 992px) {
    .moments-wrapper { padding: 5.5rem 5% 6rem; }
    .moments-header { margin-bottom: 3.2rem; }
    .moments-mobile-switcher { display: none; }
    .moments-tabs-col { display: flex; width: 50%; gap: 1rem; }
    .moments-stage { flex-direction: row; align-items: center; gap: 3rem; }
    .moments-showcase-col { width: 50%; }
    .showcase-card { max-width: 100%; border-radius: 28px; }
    .showcase-image-wrap { aspect-ratio: 4 / 3.7; border-radius: 28px 28px 0 0; }
    .showcase-meta-bar { padding: 1.25rem 1.5rem; border-radius: 0 0 28px 28px; }
    .showcase-item-title { font-size: 1.15rem; }
    .showcase-item-price { font-size: 0.94rem; }
}

/* --------------------------------------------------------
   8. TRENDING MUSES & ORBIT CAROUSEL
   -------------------------------------------------------- */
.trending-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(180deg, #fffafc 0%, #fff0f5 50%, #faf1f5 100%);
    border-top: none !important;
    border-bottom: 1px solid rgba(244, 166, 193, 0.35);
    overflow: hidden; 
    box-sizing: border-box;
    position: relative;
    contain: content;
    font-family: 'Poppins', sans-serif;
}

.trending-ambient-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
    will-change: transform;
}
.glow-left { top: 10%; left: -80px; background: #ffd6e6; }
.glow-right { bottom: 5%; right: -80px; background: #edd8fa; }

.trending-header {
    text-align: center;
    margin-bottom: 2.8rem;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trending-header .hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 5.5vw, 3rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.4px;
    text-align: center;
}

.trending-desc {
    font-size: clamp(0.85rem, 2vw, 0.96rem);
    color: #8c7b84;
    margin: 0;
    text-align: center;
    max-width: 520px;
    line-height: 1.5;
}

.trending-viewport {
    width: 100%;
    position: relative;
    z-index: 2;
}

.trending-carousel {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 12% 2.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; 
    box-sizing: border-box;
    transform: translateZ(0);
}
.trending-carousel::-webkit-scrollbar { display: none; }
.trending-carousel { -ms-overflow-style: none; scrollbar-width: none; }

.trending-card {
    flex: 0 0 76%;
    max-width: 290px;
    scroll-snap-align: center; 
    box-sizing: border-box;
    transform-origin: center 120%;
    transform: translateZ(0);
    will-change: transform, opacity;
    position: relative !important;
}

.trending-card-inner {
    position: relative;
    border-radius: 30px;
    overflow: visible !important;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(220, 163, 208, 0.18), 0 3px 10px rgba(0,0,0,0.03);
    border: 2px solid rgba(255, 255, 255, 0.95);
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.trending-card.is-out-of-stock .trending-img {
    filter: grayscale(0.25) opacity(0.85);
}

.trending-link { display: block; text-decoration: none; width: 100%; height: 100%; }

.trending-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.2;
    overflow: hidden !important;
    border-radius: 30px;
    background: #fffafc;
}

.trending-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.trending-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #f6e6ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #f4a6c1;
}

.trending-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 10, 18, 0.82) 0%, rgba(20, 10, 18, 0.2) 45%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.trending-card-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 1.2rem 1.1rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    box-sizing: border-box;
}

.trending-info-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
    gap: 2px;
}

.trending-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    letter-spacing: -0.2px;
}

.trending-price-line { display: flex; align-items: baseline; gap: 6px; }

.trending-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.trending-price.sale { color: #ffd1e1; font-weight: 700; }

.trending-orig-price {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: line-through;
}

.trending-action-right { flex-shrink: 0; }

.trending-view-pill {
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.trending-view-pill.soldout {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}
.trending-card:hover .trending-view-pill:not(.soldout) {
    background: #ffffff;
    color: #2d2629;
    transform: translateY(-2px);
}

@media (min-width: 992px) {
    .trending-wrapper { padding: 6rem 5% 6.5rem; }
    .trending-header { margin-bottom: 3.5rem; }
    .trending-viewport { max-width: 1200px; margin: 0 auto; }
    .trending-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;
        padding: 0;
        overflow: visible;
    }
    .trending-card {
        flex: unset;
        max-width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }
    .trending-card-inner { border-radius: 34px; }
    .trending-image-wrapper { border-radius: 34px; }
    .trending-card-inner:hover {
        transform: translateY(-6px) translateZ(0);
        box-shadow: 0 20px 45px rgba(244, 166, 193, 0.28);
    }
    .trending-card:hover .trending-img { transform: scale(1.05) translateZ(0); }
    .trending-card-footer { padding: 1.4rem 1.25rem; }
    .trending-title { font-size: 1.1rem; }
    .trending-price { font-size: 0.86rem; }
}

/* --------------------------------------------------------
   9. UNBOXING EXPERIENCE & COMMUNITY PROOF
   -------------------------------------------------------- */
.experience-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #fffafc 0%, #faedf3 50%, #fffafc 100%);
    padding: 4.5rem 0 5rem;
    border-top: 1px solid rgba(244, 166, 193, 0.25);
    border-bottom: 1px solid rgba(244, 166, 193, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    contain: content;
    font-family: 'Poppins', sans-serif;
}

.exp-ambient-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(85px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
}
.glow-exp-left { top: 15%; left: -90px; background: #fcd5e5; }
.glow-exp-right { bottom: 10%; right: -90px; background: #ebd5fa; }

.experience-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 5%;
}

.experience-header {
    text-align: center;
    margin-bottom: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-header .hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5.5vw, 2.9rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.4px;
    text-align: center;
}

.experience-sublead {
    font-size: clamp(0.85rem, 2vw, 0.96rem);
    color: #8c7b84;
    margin: 0;
    text-align: center;
    max-width: 520px;
    line-height: 1.5;
}

.experience-track {
    display: flex;
    gap: 1.2rem;
    width: 100vw;
    margin-left: -5vw;
    padding: 0.5rem 5vw 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    scrollbar-width: none;
}
.experience-track::-webkit-scrollbar { display: none; }

.experience-card {
    flex: 0 0 88%;
    max-width: 420px;
    scroll-snap-align: center;
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.3);
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(244, 166, 193, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform;
}
.experience-card:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 16px 40px rgba(244, 166, 193, 0.22);
}

.card-inner-pad {
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    text-align: left;
}

.mini-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d1789c;
    margin-bottom: 0.6rem;
    display: block;
}

.card-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.45rem;
    color: var(--text-dark, #2d2629);
    margin: 0 0 0.6rem 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
    text-align: left;
}

.card-subtext {
    font-size: 0.86rem;
    color: #7d6b75;
    line-height: 1.55;
    margin: 0 0 1.8rem 0;
    text-align: left;
}

.unboxing-perks-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: auto;
}

.perk-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.perk-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fffafc;
    color: #e48db5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(244, 166, 193, 0.35);
    box-shadow: 0 2px 8px rgba(244, 166, 193, 0.1);
}

.perk-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.perk-details strong { font-size: 0.92rem; font-weight: 600; color: #2d2629; }
.perk-details span { font-size: 0.8rem; color: #8c7b84; line-height: 1.45; }

.reviews-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.6rem;
    flex: 1;
}

.mini-review-item {
    background: #fffafc;
    border: 1px solid rgba(244, 166, 193, 0.25);
    border-radius: 20px;
    padding: 1.1rem 1.2rem;
    text-align: left;
}

.review-stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
    color: #e48db5;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.65rem;
    font-weight: 700;
    color: #ad8f9b;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.review-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.92rem;
    color: #5c4b54;
    line-height: 1.55;
    margin: 0 0 0.4rem 0;
}

.review-author {
    font-size: 0.76rem;
    font-weight: 700;
    color: #9a8c93;
    display: block;
}

.review-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #fffafc 0%, #faedf3 100%);
    border-radius: 20px;
    padding: 0.9rem 1rem;
    margin-top: auto;
    border: 1px solid rgba(244, 166, 193, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}
.stat-item strong {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    color: #2d2629;
    font-weight: 600;
}
.stat-item span {
    font-size: 0.64rem;
    font-weight: 700;
    color: #ad8f9b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 24px;
    background: rgba(244, 166, 193, 0.4);
}

.experience-dots-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.8rem;
}
.exp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ebd5df;
    cursor: pointer;
    transition: all 0.3s ease;
}
.exp-dot.active {
    width: 24px;
    border-radius: 12px;
    background: #f4a6c1;
}

@media (min-width: 992px) {
    .experience-wrapper { padding: 6.5rem 0 7rem; }
    .experience-header { margin-bottom: 3.8rem; }
    .experience-track {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        width: 100%;
        margin-left: 0;
        padding: 0;
        overflow: visible;
    }
    .experience-card { flex: unset; max-width: 100%; border-radius: 36px; }
    .card-inner-pad { padding: 2.8rem 2.4rem; }
    .card-headline { font-size: 1.85rem; }
    .perk-details strong { font-size: 0.98rem; }
    .perk-details span { font-size: 0.84rem; }
    .review-text { font-size: 0.98rem; }
    .mobile-only { display: none !important; }
}

/* --------------------------------------------------------
   10. BRAND STORY & CRAFTSMANSHIP COLLAGE (LEFT ALIGNED)
   -------------------------------------------------------- */
.brand-story-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #fffafc 0%, #faedf3 100%);
    padding: 4.5rem 5% 5rem;
    border-top: 1px solid rgba(244, 166, 193, 0.25);
    border-bottom: 1px solid rgba(244, 166, 193, 0.25);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    contain: content;
    font-family: 'Poppins', sans-serif;
}

.story-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    transform: translateZ(0);
}
.story-glow-left { top: 15%; left: -80px; background: #fce1ed; }
.story-glow-right { bottom: 10%; right: -80px; background: #eedafd; }

.brand-story-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.story-content-col { 
    width: 100%; 
    text-align: left; 
    box-sizing: border-box; 
}

.story-content-col .hero-overline {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 0.85rem !important;
    width: auto !important;
}

.story-content-col .hero-overline .text {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--brand-dark, #d1648a) !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-align: left !important;
}

.story-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.4px;
    text-align: left;
}

.story-lead {
    font-size: clamp(0.88rem, 2vw, 1rem);
    color: #8a7c83;
    line-height: 1.65;
    margin: 0 0 2rem 0;
    max-width: 580px;
    text-align: left;
}

.story-features-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 540px;
}

.story-feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(244, 166, 193, 0.3);
    border-radius: 20px;
    padding: 0.95rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(244, 166, 193, 0.08);
    transform: translateZ(0);
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease;
    will-change: transform;
}
.story-feature-card:hover {
    transform: translateX(4px) translateZ(0);
    border-color: #f4a6c1;
}

.feature-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fdf4f7 0%, #fae1eb 100%);
    color: #d1789c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(244, 166, 193, 0.15);
}

.feature-text h4 { font-size: 0.92rem; font-weight: 600; color: #2d2629; margin: 0 0 0.15rem 0; }
.feature-text p { font-size: 0.8rem; color: #8a7c83; margin: 0; line-height: 1.4; }

.story-action { width: 100%; display: flex; justify-content: flex-start; }
.story-btn { padding: 0.95rem 2rem !important; font-size: 0.82rem !important; border-radius: 30px !important; }
.story-btn:hover .btn-arrow { transform: translateX(4px); }

.story-visual-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1rem 0;
}

.collage-stage {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 360px;
    box-sizing: border-box;
}

.collage-ambient-ring {
    position: absolute;
    inset: 10%;
    background: radial-gradient(circle, rgba(244, 166, 193, 0.32) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
}

.collage-card {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(210, 150, 180, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.95);
    box-sizing: border-box;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.card-back {
    top: 0; right: 0;
    width: 66%; height: 66%;
    z-index: 1;
    transform: rotate(5deg) translateZ(0);
}
.card-back:hover { transform: rotate(2deg) scale(1.03) translateZ(0); }

.card-front {
    bottom: 0; left: 0;
    width: 72%; height: 72%;
    z-index: 2;
    transform: rotate(-4deg) translateZ(0);
}
.card-front:hover { transform: rotate(-1deg) scale(1.03) translateZ(0); }

.collage-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.collage-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #f7e1ed 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic; font-size: 1.1rem; color: #bfaab3;
}

.card-glass-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    padding: 0.35rem 0.8rem;
    border-radius: 16px;
    font-size: 0.64rem;
    font-weight: 700;
    color: #333333;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 3;
}
.tag-top { top: 10px; left: 10px; }
.tag-bottom { bottom: 10px; left: 10px; }

.floating-orb {
    position: absolute;
    color: #e48db5;
    z-index: 3;
    pointer-events: none;
    text-shadow: 0 0 12px rgba(228, 141, 181, 0.4);
}
.orb-1 { top: 25%; right: 25%; font-size: 1.6rem; }
.orb-2 { bottom: 10%; right: 10%; font-size: 1.2rem; }

@media (min-width: 992px) {
    .brand-story-wrapper { padding: 6.5rem 5% 7rem; }
    .brand-story-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4.5rem;
    }
    .story-content-col { flex: 1.1; }
    .story-lead { font-size: 1.05rem; }
    .story-visual-col { flex: 0.9; justify-content: flex-end; padding: 0; }
    .collage-stage { max-width: 420px; height: 460px; }
    .collage-card { border-radius: 34px; }
}

/* --------------------------------------------------------
   11. LATEST PIECES FRESH DROPS (CENTERED & EDITORIAL)
   -------------------------------------------------------- */
.latest-pieces-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4.5rem 5% 5rem;
    background-color: var(--bg-main, #fffafc);
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.latest-pieces-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.latest-header {
    text-align: center;
    margin-bottom: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.latest-header .hero-overline {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 0.4rem !important;
    width: 100% !important;
}

.latest-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5.5vw, 2.9rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.4px;
    text-align: center;
}

.latest-sublead {
    font-size: clamp(0.85rem, 2vw, 0.96rem);
    color: #8c7b84;
    margin: 0;
    text-align: center;
    max-width: 520px;
    line-height: 1.5;
}

.latest-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: #a0979c;
    font-size: 0.95rem;
}

.latest-pieces-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 1rem;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 3.5rem;
}

.atelier-product-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    min-width: 0;
    position: relative !important;
    overflow: visible !important;
    text-align: left;
}

.atelier-card-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.2;
    border-radius: 24px;
    overflow: hidden !important;
    background: #fbf3f6;
    box-shadow: 0 6px 20px rgba(244, 166, 193, 0.12);
    margin-bottom: 0.85rem;
    transform: translateZ(0);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
    will-change: transform;
}
.atelier-product-card:hover .atelier-card-img-box {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 14px 32px rgba(244, 166, 193, 0.25);
}

.atelier-product-card.is-out-of-stock .atelier-card-img {
    filter: grayscale(0.2) opacity(0.85);
}

.card-soldout-overlay-banner {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(45, 38, 41, 0.75);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    padding: 0.45rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card-visual-link { display: block; width: 100%; height: 100%; }

.atelier-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.atelier-product-card:hover .atelier-card-img { transform: scale(1.05) translateZ(0); }

.atelier-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #faedf3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--brand-primary, #f4a6c1);
}

.card-quick-bag-btn {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: var(--text-main, #2d2629);
    font-family: 'Poppins', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.55rem 0.95rem;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px) translateZ(0);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    z-index: 4;
}
.atelier-product-card:hover .card-quick-bag-btn {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}
.card-quick-bag-btn:hover {
    background: var(--brand-primary, #f4a6c1);
    color: #ffffff;
    border-color: var(--brand-primary, #f4a6c1);
}

.quick-plus { font-size: 1.1rem; line-height: 1; }

.atelier-card-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 0 0.1rem;
    text-align: left;
}

.atelier-title-link { text-decoration: none; width: 100%; }

.atelier-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.96rem;
    font-weight: 500;
    color: var(--text-dark, #2d2629);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
}
.atelier-title-link:hover .atelier-card-title { color: var(--brand-primary, #f4a6c1); }

.atelier-price-cluster { display: flex; align-items: baseline; gap: 6px; }

.atelier-card-price {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--brand-accent, #dca3d0);
}
.atelier-card-price.sale-active { color: #d1648a; font-weight: 700; }

.atelier-card-orig-price {
    font-size: 0.74rem;
    color: #a89aa1;
    text-decoration: line-through;
    font-weight: 400;
}

.latest-footer-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.explore-all-btn {
    padding: 1.05rem 2.6rem !important;
    border-radius: 36px !important;
    font-size: 0.84rem !important;
}
.explore-all-btn .btn-arrow {
    transition: transform 0.25s ease;
    display: inline-block;
}
.explore-all-btn:hover .btn-arrow {
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .latest-pieces-grid { gap: 2rem 1.4rem; }
    .atelier-card-img-box { border-radius: 30px; }
    .atelier-card-title { font-size: 1.05rem; }
    .atelier-card-price { font-size: 0.9rem; }
}

@media (min-width: 992px) {
    .latest-pieces-wrapper { padding: 6rem 5% 6.5rem; }
    .latest-header { margin-bottom: 3.5rem; }
    .latest-pieces-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem 1.6rem; }
}

/* --------------------------------------------------------
   12. LIFESTYLE REAL-LIFE VALUE SECTION
   -------------------------------------------------------- */
.lifestyle-wrapper {
    width: 100%;
    background-color: var(--bg-main, #fffafc);
    padding: 4.5rem 5% 5.5rem;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(244, 166, 193, 0.3);
    font-family: 'Poppins', sans-serif;
}

.lifestyle-ambient-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.glow-top-left { top: 5%; left: -80px; background: #ffd6e6; }
.glow-bottom-right { bottom: 5%; right: -80px; background: #edd8fa; }

.lifestyle-container {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.lifestyle-visual-col {
    width: 100%;
    position: relative;
}

.lifestyle-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.6;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(220, 163, 208, 0.16);
    background: #fbf3f6;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.lifestyle-image-frame:hover .lifestyle-img {
    transform: scale(1.04);
}

.lifestyle-placeholder-art {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fdf5f7 0%, #f6e6ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-icon {
    font-size: 2.6rem;
    color: var(--brand-primary, #f4a6c1);
}

.lifestyle-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(35, 20, 30, 0.42) 0%, transparent 55%);
    pointer-events: none;
}

.floating-story-card {
    position: absolute;
    bottom: 1.1rem;
    left: 1.1rem;
    right: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    text-align: left;
}

.story-card-sparkle {
    color: #d1648a;
    font-size: 0.84rem;
    display: block;
    margin-bottom: 0.15rem;
}

.story-card-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 0.94rem;
    color: #2d2629;
    line-height: 1.45;
    margin: 0 0 0.35rem 0;
}

.story-card-author {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ad8f9b;
    display: block;
}

.lifestyle-content-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    text-align: left;
}

.lifestyle-content-col .hero-overline {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-bottom: 0.4rem !important;
    width: auto !important;
}

.lifestyle-content-col .hero-overline .text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-dark, #d1648a);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
}

.lifestyle-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 2.9rem);
    color: var(--text-dark, #2d2629);
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 0.8rem 0;
    letter-spacing: -0.4px;
}

.lifestyle-lead {
    font-size: clamp(0.88rem, 1.8vw, 0.98rem);
    color: #7d6b75;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.lifestyle-moments-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.lifestyle-moment-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid rgba(244, 166, 193, 0.28);
    border-radius: 18px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 4px 16px rgba(244, 166, 193, 0.06);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

.lifestyle-moment-item:hover {
    transform: translateX(4px);
    border-color: var(--brand-primary, #f4a6c1);
}

.moment-bullet {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff5f8;
    border: 1px solid rgba(244, 166, 193, 0.35);
    color: var(--brand-dark, #d1648a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.moment-text {
    flex: 1;
}

.moment-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2d2629;
    margin: 0 0 0.2rem 0;
    letter-spacing: -0.2px;
}

.moment-desc {
    font-size: 0.78rem;
    color: #8a7982;
    line-height: 1.45;
    margin: 0;
}

.lifestyle-action .btn-primary {
    gap: 8px;
    padding: 0.85rem 1.8rem !important;
    font-size: 0.8rem !important;
}

.lifestyle-action .btn-arrow {
    transition: transform 0.2s ease;
}
.lifestyle-action .btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

@media (min-width: 992px) {
    .lifestyle-wrapper {
        padding: 6rem 5% 6.5rem;
    }

    .lifestyle-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4.5rem;
    }

    .lifestyle-visual-col {
        width: 44%;
    }

    .lifestyle-image-frame {
        border-radius: 38px;
        aspect-ratio: 4 / 4.8;
    }

    .floating-story-card {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
        padding: 1.3rem 1.5rem;
    }
    .story-card-quote {
        font-size: 1.05rem;
    }

    .lifestyle-content-col {
        width: 52%;
    }

    .lifestyle-heading {
        font-size: 2.8rem;
    }

    .lifestyle-lead {
        font-size: 1.05rem;
    }
}

/* Modern Performance & 60FPS Scrolling Engine */
.lifestyle-wrapper,
.unboxing-wrapper,
.manifesto-wrapper,
.brand-story-wrapper {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}