:root {
    /* Ultra-Premium Theme Colors */
    --color-bg: #F7F7F7;
    /* Crisp pearl off-white */
    --color-surface-muted: #EFEFEF;
    --color-text-main: #1A1A1A;
    /* Deep charcoal */
    --color-text-muted: #888888;
    --color-primary: #8C9698;
    /* Refined pastel grey */
    --color-sand: #D9D5C8;
    /* Pastel contrast shade */
    --color-border: #E1E4E5;

    /* Pastel Theme Variations */
    --pastel-pink: #FCEFF2;
    --pastel-blue: #EFF4FC;
    --pastel-green: #EFFCEF;
    --pastel-yellow: #FCF9EF;
    --pastel-purple: #F6EFFC;
    --pastel-sand: #F7F5F0;

    --transition-smooth: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 90px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section.category-carousel-section,
section.featured-slider-section,
section.cradle-scroll-section,
section.promo-50-off,
section.features-section,
section.premium-scroll-presentation,
section.reviews-section {
    background: var(--color-bg) !important;
}

body {
    background: var(--color-bg);
    color: var(--color-text-main);
    font-family: 'Poppins', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width:768px) {
    h2 {
        font-size: 2rem !important;
        font-weight: bold !important;
    }

    span.eyebrow {
        display: none !important;
    }
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--color-text-muted);
}

.mb-5 {
    margin-bottom: 3rem;
}

/* ---------------------------------
   NAVIGATION
----------------------------------- */
.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    /* background: rgba(250, 250, 251, 0.9); */
    /* backdrop-filter: blur(15px); */
    z-index: 9995;
    /* border-bottom: 1px solid var(--color-border); */
    transition: var(--transition-smooth);
    background-color: white;
}

body.mobile-menu-open .nav-bar {
    background-color: #fff;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Nav Menu close to the Logo */
.nav-brand-menu {
    display: flex;
    align-items: center;
    gap: 50px;
    /* Space between logo and menu */
}

.logo img {
    height: 60px;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-menu a {
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.main-menu a:hover,
.shop-dropdown:hover .shop-link {
    color: var(--color-primary);
}

/* Shop Dropdown */
.shop-dropdown {
    position: relative;
    padding: 30px 0;
    /* Expanded hover area */
}

.shop-link svg {
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.shop-dropdown:hover .shop-link svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 240px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-fast);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.shop-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 30px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.dropdown-menu a:hover {
    color: var(--color-text-main);
    background: var(--color-surface-muted);
}

/* Category rows with optional subcategory flyout */
.dropdown-cat {
    position: relative;
}

.dropdown-cat-row {
    display: flex;
    align-items: stretch;
}

.dropdown-cat-row .dropdown-cat-link {
    flex: 1;
}

.dropdown-sub-toggle {
    background: none;
    border: none;
    padding: 0 24px 0 6px;
    display: flex;
    align-items: center;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dropdown-cat:hover .dropdown-sub-toggle {
    color: var(--color-primary);
}

.dropdown-subpanel {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 230px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--transition-fast);
    z-index: 20;
}

.dropdown-cat:hover .dropdown-subpanel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* When the flyout would overflow past the bottom of the viewport, anchor it
   to the bottom of its category row instead, so it grows upward and never
   gets clipped off-screen (desktop hover flyout only). */
.dropdown-cat.dropdown-flip-up .dropdown-subpanel {
    top: auto;
    bottom: 0;
}

.dropdown-subpanel a {
    padding: 10px 24px;
    font-size: 13px;
    white-space: nowrap;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-contact {
    display: inline-block;
    padding: 14px 34px;
    background: var(--color-text-main);
    color: #FFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--color-text-main);
}

.btn-contact:hover {
    background: transparent;
    color: var(--color-text-main);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 26px;
    height: 18px;
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 9996;
}

.menu-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--color-text-main);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.menu-toggle.active .menu-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---------------------------------
   BANNER & SCROLL ANIMATION
----------------------------------- */
.scroll-section {
    height: 450vh;
    /* Extremely tall for 2 stages of text + product centering */
    position: relative;
    z-index: 10;
}

.hero-section {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 4%;
    padding-right: 4%;
    z-index: 10;
    overflow: hidden;
    background: url(img/bg/bnr-bg-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero-text-wrapper {
    position: relative;
    flex: 0 0 66.666%;
    /* Equivalent to col-md-8 */
    height: 100%;
}

.hero-text-stage {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    will-change: transform, opacity;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #ffa8b6 0%, #a2c2e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -3px;
    background: linear-gradient(135deg, #1A1A1A 0%, #686868 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgb(0, 0, 0);
    text-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
    font-weight: bold;
}

.hero-subtitle {
    /* font-size: 1.6rem; */
    color: #666;
    font-weight: 300;
    max-width: 85%;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Banner specific button styling with pastel shades */
.hero-text-stage .btn-primary-outline {
    background: linear-gradient(45deg, #af7048, #c17e54);
    border: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
    color: white;
    border-radius: 0;
}

.hero-text-stage .btn-primary-outline:hover {
    background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    color: var(--color-text-main) !important;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background: transparent;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-radius: 0;
    border: 1px solid var(--color-border);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-outline:hover {
    border-color: var(--color-text-main);
    background: var(--color-text-main);
    color: #FFF;
}


/* ---------------------------------
   PHILOSOPHY SECTION
----------------------------------- */
.philosophy-section {
    padding: 60px 4%;
    background: #FFFFFF;
}

.philosophy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-container h2 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
}

.philosophy-container p {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* ---------------------------------
   MASTER CATEGORY SHOWCASE (11 Items)
----------------------------------- */
.master-category-showcase {
    padding: 60px 4%;
    background: var(--color-bg);
}

.showcase-intro {
    margin-bottom: 40px;
}

.showcase-intro h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.showcase-intro p {
    font-size: 1.2rem;
}

.category-grid-master {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 400px;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.category-item {
    position: relative;
    overflow: hidden;
    background: transparent;
    border-radius: 0px;
    text-decoration: none;
    color: var(--color-text-main);
    display: block;
    padding: 0;
}

/* Soft scale for images */
.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-item:hover img {
    transform: scale(1.03);
}

.category-item-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 24px 30px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    color: var(--color-text-main);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-item:hover .category-item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.category-item-overlay h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.5px;
}

.category-item-overlay p {
    display: none;
    /* Hide standard desc for premium minimalism */
}

.explore-link {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* Specific Layout Adjustments */
.category-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.category-item.large .category-item-overlay h3 {
    font-size: 2.8rem;
}

.category-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.category-text-block {
    grid-column: span 2;
    background: #FFFFFF;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.category-text-block h3 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--color-text-main);
    letter-spacing: -1px;
}

.category-text-block p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    font-weight: 300;
    max-width: 90%;
}

/* ---------------------------------
   FOOTER
----------------------------------- */
.site-footer {
    margin-top:100px;
    background: #16173c;
    color: #FFFFFF;
    padding: 60px 4% 30px;
    position: relative;
    background: linear-gradient(180deg, #2e3192 10px, #16173c);
}

.footer-layout {
    display: flex;
    justify-content: center;
    max-width: 1600px;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 60px;
    text-align: center;
}

.footer-brand {
    /* max-width: 400px; */
}

.footer-logo {
    height: 120px;
    /* filter: brightness(0) invert(1); */
    /* margin-bottom: 25px; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding: 3px;
    background: white;
    border-radius: 50%;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

.link-group a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    margin-bottom: 15px;
    font-weight: 300;
    transition: opacity 0.3s;
}

.link-group a:hover {
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------------------------------
   QUICK ACTION BUTTONS
----------------------------------- */
.quick-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.quick-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.quick-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.call-btn {
    background: var(--color-text-main);
}

.wa-btn {
    background: #25D366;
}

.quick-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: ripplePulse 2.5s infinite ease-in-out;
}

.call-btn::after {
    animation-delay: 1.25s;
}

.quick-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

@keyframes ripplePulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ---------------------------------
   FEATURED PRODUCTS SLIDER
----------------------------------- */
.featured-slider-section {
    padding: 40px 4%;
    background: #FFFFFF;
    position: relative;
    z-index: 20;
    overflow: hidden;

    /* border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.04); */
    @media (max-width:768px) {
        padding: 0 10px;
    }
}

.slider-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    height: 80vh;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6% 8%;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.8s, opacity 0.8s ease;
    z-index: 1;
    padding-bottom: 120px;

    @media (max-width:768px) {
        flex-direction: column-reverse !important;
    }
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease, visibility 0s;
    z-index: 2;
}

.slide-content {
    flex: 0 0 45%;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.slide-eyebrow {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 500;

    @media (max-width:768px) {
        display: none;
    }
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--color-text-main);
    margin-bottom: 25px;
}

.slide-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 30px;
}

.slide-features {
    list-style: none;
    margin-bottom: 40px;
}

.slide-features li {
    font-size: 1rem;
    color: var(--color-text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-features span {
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.6);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.slide-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.slide-price {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-main);
}

.slider-btn {
    padding: 14px 32px;
    background: #FFFFFF;
    color: white;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    border: 0;
    border-radius: 0;

}

.slider-btn:hover {
    background: var(--color-text-main);
    color: #FFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slide-image-wrapper {
    flex: 0 0 45%;
    height: 90%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.image-backdrop {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}

/* ARRIVE ANIMATION */
.slide.active .slide-eyebrow {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-title {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-desc {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-features {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-action {
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-img {
    animation: imgReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
    transform: scale(0.9) translateX(40px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imgReveal {
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--color-text-main);
    color: #FFFFFF;
    transform: scale(1.05);
}

.slider-pagination {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-text-main);
}

.mobile-nav-actions {
    display: none;
}

.mobile-menu-header {
    display: none;
}

.mobile-menu-backdrop {
    display: none;
}

/* ---------------------------------
   MOBILE RESPONSIVE
----------------------------------- */
@media (max-width: 1200px) {
    .category-grid-master {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .scroll-section {
        height: 600vh;
        /* More height on tablets so stages map well */
    }

    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: calc(var(--nav-height) + 40px);
    }

    .hero-text-wrapper {
        flex: none;
        width: 100%;
        height: 40vh;
        margin-top: 0;
    }

    .hero-text-stage {
        text-align: center;
        padding-right: 0;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .category-grid-master {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Slider Tablets */
    .slider-container {
        height: auto;
        min-height: 800px;
    }

    .slide {
        flex-direction: column;
        padding: 10% 6%;
        justify-content: center;
    }

    .slide-content {
        flex: none;
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .slide-features {
        display: inline-block;
        text-align: left;
    }

    .slide-action {
        justify-content: center;
    }

    .slide-image-wrapper {
        flex: none;
        width: 100%;
        height: 400px;
    }

    .slider-controls {
        left: 50%;
        transform: translateX(-50%);
    }

    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-brand-menu {
        gap: 0;
    }

    .btn-contact {
        display: none;
        /* Hide on mobile initially */
    }

    .menu-toggle {
        display: flex;
        color: var(--color-text-main);
    }

    /* Mobile menu becomes a slide-in drawer from the right, dimmed by a backdrop */
    .main-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(82%, 340px);
        background: #FFFFFF;
        padding: 0;
        box-shadow: -25px 0 60px rgba(0, 0, 0, 0.12);
        border-top: none;
        overflow-y: auto;
        z-index: 9991;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
    }

    .main-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .mobile-menu-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(20, 16, 18, 0.45);
        z-index: 9990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 24px;
        border-bottom: 1px solid var(--color-border);
        flex-shrink: 0;
    }

    .mobile-menu-title {
        font-family: var(--font-head, 'Outfit', sans-serif);
        font-size: 1.05rem;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: var(--color-text-main);
    }

    /* Quick actions row */
    .mobile-nav-actions {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        gap: 10px;
        padding: 18px 24px;
        border-bottom: 1px solid var(--color-border);
        width: auto;
        margin: 0;
    }

    .mobile-nav-actions .btn-icon {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 6px;
        border-radius: 14px;
        background: var(--color-surface-muted, #FAFAFA);
        color: var(--color-text-muted);
        text-decoration: none;
        position: relative;
    }

    .mobile-nav-actions .btn-icon span {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: var(--color-text-main);
    }

    .mobile-nav-actions .btn-icon .badge {
        position: absolute;
        top: 6px;
        right: 10px;
    }

    /* Top-level links */
    .main-menu a {
        text-align: left;
    }

    .main-menu.active > a {
        display: block;
        width: 100%;
        padding: 17px 24px;
        font-size: 15.5px;
        border-bottom: 1px solid var(--color-border);
    }

    /* Mobile dropdown styles */
    .main-menu.active .shop-dropdown {
        position: static;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }

    .main-menu.active .shop-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 17px 24px;
        font-size: 15.5px;
    }

    .main-menu.active .shop-dropdown.dropdown-open .shop-link svg {
        transform: rotate(180deg);
    }

    .main-menu.active .shop-dropdown.dropdown-open .dropdown-menu {
        display: block !important;
    }

    .main-menu.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--color-surface-muted, #FAFAFA);
        border: none;
        box-shadow: none;
        padding: 4px 0;
        margin: 0;
        display: none;
        /* Hidden by default, shown when dropdown-open */
    }

    .main-menu.active .dropdown-cat:not(:last-child) {
        border-bottom: 1px solid var(--color-border);
    }

    .main-menu.active .dropdown-cat-row {
        padding: 13px 24px 13px 36px;
    }

    .main-menu.active .dropdown-cat-link {
        font-size: 14px;
        color: var(--color-text-muted);
    }

    .main-menu.active .dropdown-sub-toggle {
        padding: 0 24px 0 10px;
    }

    .main-menu.active .dropdown-menu a:hover {
        color: var(--color-text-main);
        background: transparent;
    }

    /* Mobile: subcategories expand inline as an accordion instead of a side flyout */
    .main-menu.active .dropdown-sub-toggle svg {
        transition: transform 0.3s ease;
    }

    .main-menu.active .dropdown-cat.sub-open .dropdown-sub-toggle svg {
        transform: rotate(90deg);
    }

    .main-menu.active .dropdown-subpanel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .main-menu.active .dropdown-subpanel a {
        padding: 11px 24px 11px 52px;
        font-size: 13px;
    }

    .main-menu.active .dropdown-cat.sub-open .dropdown-subpanel {
        display: block;
    }

    .nav-actions {
        display: none;
    }

    /* Banner Specific Fixes */
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding: 0 !important;
        height: 100vh !important;
        position: relative !important;
        /* Changed from sticky to relative for normal scrolling */
        top: auto;
    }

    .scroll-section {
        height: 100vh !important;
        /* Normal height for mobile scrolling */
    }

    canvas#canvas {
        display: block !important;
        position: absolute !important;
        top: calc(var(--nav-height) + 2rem) !important;
        left: 0;
        width: 100% !important;
        height: auto !important;
        z-index: 1;
    }

    .hero-text-wrapper {
        position: relative;
        height: 100% !important;
        width: 100%;
        display: block;
        /* Removed flex stacking so they can position absolutely */
    }

    .hero-text-stage {
        position: absolute !important;
        top: 65%;
        /* Pushed down from 50% to separate from cradle */
        left: 0;
        width: 100%;
        padding: 0 5% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Removing opacity, transform overrides, so JS handles scroll animations */
    }

    /* Remove fade effects on mobile for banner elements */
    .hero-section .fade-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .hero-section .title-flow {
        animation: none !important;
    }

    .hero-title,
    .hero-subtitle,
    .eyebrow {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 3rem;
    }

    .philosophy-container h2 {
        font-size: 2.2rem;
    }

    .philosophy-container p {
        font-size: 1.2rem;
    }

    .category-grid-master {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }

    .category-item.large,
    .category-item.wide,
    .category-text-block {
        grid-column: span 1;
        grid-row: auto;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .quick-actions {
        bottom: 20px;
        right: 20px;
    }

    .quick-btn {
        width: 50px;
        height: 50px;
    }

    .features-grid {
        padding: 0 5%;
        gap: 1.5rem;
    }

    .promo-content {
        padding: 40px 20px;
    }

    .cradle-scroll-section {
        padding: 80px 4%;
    }

    /* Slider Mobile */
    .slider-container {
        min-height: 700px;
    }

    .slide-image-wrapper {
        height: 220px;

    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 8px;
        padding-top: 10px;
    }

    .slide-price {
        font-size: 1.5rem;
    }

    .slider-controls {
        bottom: 20px;
        gap: 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ---------------------------------
   NEW SECTIONS & ANIMATIONS
----------------------------------- */
.title-flow {
    animation: titleFlowAnim 6s ease-in-out infinite;
    display: inline-block;
}

@keyframes titleFlowAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.cradle-scroll-section {
    padding: 150px 4%;
    background: var(--pastel-sand);
    text-align: center;

    @media (max-width:768px) {
        p {
            font-size: 1rem !important;
        }
    }
}

.cradle-scroll-content h2 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-weight: bold;
}

.cradle-scroll-image-wrapper {
    max-width: 1400px;
    margin: 0 auto;

    @media (max-width:768px) {
        min-height: 50px !important;
    }
}

.promo-50-off {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-text-main);
    color: #FFF;
    margin: 100px 4%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.promo-content {
    flex: 1;
    min-width: 300px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-content h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.promo-content span {
    color: var(--color-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.promo-image {
    flex: 1;
    min-width: 300px;
    background: url('img/products/02.FEEDING PILLOW/DSC01525.jpg') center/cover;
    min-height: 500px;
}

.reviews-section {
    padding: 120px 4%;
    background: var(--color-bg);
    text-align: center;
}

.reviews-section h2 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 50px;
}

.review-card {
    background: #FFF;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    color: var(--pastel-sand);
    line-height: 1;
    z-index: 0;
}

.review-card p,
.review-card span {
    position: relative;
    z-index: 1;
}

.review-card p {
    font-size: 1.5rem;
    color: var(--color-text-main);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-author {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
}

/* FOOTER ADDITIONS */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #FFF;
}

@media (max-width: 768px) {
    .promo-content h2 {
        font-size: 3.5rem;
    }

    .cradle-scroll-content h2 {
        font-size: 2.8rem;
    }

    .review-card p {
        font-size: 1.2rem;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .footer-socials a {
        margin: 0 10px;
    }

    
}

/* ---------------------------------
   E-COMMERCE & TOAST NOTIFICATION 
----------------------------------- */
.product-grid {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-icon {
    position: relative;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-icon:hover {
    transform: translateY(-2px);
    color: var(--color-primary);
}

/* Nav badge */
.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-text-main);
    color: #FFF;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--color-text-main);
    color: #FFF;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ---------------------------------
   FEATURES GRID (Copied from cradle.html)
----------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 0 100px;

    @media (max-width:768px) {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
        gap: 1rem;
    }
}

.feature-card {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* ---------------------------------
   REVIEWS MARQUEE (Copied from cradle.html)
----------------------------------- */
.reviews-marquee {
    margin-top: 4rem;
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-track {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
}

.review-card-soft {
    width: 400px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    /* reset the quote override from old review card */
}

.review-card-soft .stars {
    color: #F5A623;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card-soft p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--color-text-main);
}

.review-card-soft .author {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

/* ---------------------------------
   SCROLL INTERSECTION ANIMATION
----------------------------------- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}


