/* =========================================================================
   Base & Reset
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

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

html {
    scroll-behavior: smooth;
}

html.home-page {
    scroll-snap-type: y mandatory;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../assets/font/proxima-nova/ProximaNova-Regular.woff2') format('woff2'),
        url('../assets/font/proxima-nova/ProximaNova-Regular.woff') format('woff'),
        url('../assets/font/proxima-nova/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --color-primary-gold: #c8a760;
    --color-gold-hover: #e8c67c;
    --color-text-light: #f4f4f4;
    --color-button-text: #173A13;
    --button-gradient: linear-gradient(90deg, #FFF9B8 0%, #D3B565 100%);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-button: 'Proxima Nova', sans-serif;
}


body {
    background-color: #111;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* =========================================================================
   Fixed Background
   ========================================================================= */
.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* Using the provided background image from assets */
    background-image: url('../assets/images/full-bg.webp');
    background-size: cover;
    /* Better for a very long Figma full-page background */
    background-repeat: no-repeat;
    /* background-position: center 0%; */
    /* Start exactly at the top */
    z-index: -1;
    /* Adding a slight dark overlay to make text readable */
    filter: brightness(0.6) contrast(1.1);
}

/* =========================================================================
   Header & Navigation
   ========================================================================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(360deg, rgba(31, 48, 12, 0) 0%, #000000 65%);
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    /* This forces the middle column (logo) to be strictly in the mathematical center! */
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 10px;
    /* optional padding */
}

.left-links {
    justify-content: flex-end;
    /* Pack links towards the center logo */
    padding-right: 100px;
    /* Gap from the logo */
}

.right-links {
    justify-content: flex-start;
    /* Pack links towards the center logo */
    padding-left: 100px;
    /* Gap from the logo */
}

.nav-links {
    display: flex;
    gap: 55px;
    list-style: none;
}

.nav-links a {
    font-family: "Philosopher", sans-serif;
    color: #E3C26E;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-gold-hover);
}

.cart-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.cart-icon:hover svg {
    transform: scale(1.1);
}

.logo img {
    height: 90px;
    /* Adjust according to logo size */
    object-fit: contain;
}

.hamburger-menu {
    display: none;
}

.mobile-hero-img {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.mobile-cart-icon {
    display: none;
}

.mobile-only {
    display: none !important;
}

/* =========================================================================
   General Sections
   ========================================================================= */
.section {
    position: relative;
    height: auto;
    min-height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
}

/* Home page full-screen snap sections */
.home-page .section {
    height: 100vh;
    justify-content: center;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section-hero {
    padding-top: 150px !important;
    padding-bottom: 5vh;
    justify-content: flex-start !important;
}

.container,
.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

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

.layout-split.reverse {
    flex-direction: row-reverse;
}

/* =========================================================================
   Typography & Buttons
   ========================================================================= */
.hero-title {
    font-family: "Philosopher", sans-serif;
    font-size: clamp(32px, 5vw, 60px);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
    background: linear-gradient(180deg, #F7CD66 0%, #F2E2A0 48.08%, #D7BC74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 20;
}

.btn-shop {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--color-button-text);
    text-decoration: none;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    /* Center it in hero */
    margin: 0px auto;
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.btn-outline {
    background: var(--button-gradient);
    border: none;
    color: var(--color-button-text);
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.btn-outline:hover {
    opacity: 0.9;
    color: var(--color-button-text);
}


/* =========================================================================
   Products & Virtual Object (Master Bottle) Styles
   ========================================================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.products-showcase {
    position: relative;
    width: 100%;
    max-width: clamp(800px, 60vw, 1200px);
    height: clamp(300px, 40vh, 500px);
    margin-top: clamp(100px, 15vh, 160px);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.shelf-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 5;
}

.shelf-img {
    width: 100%;
    object-fit: contain;
}

.products-grid {
    position: absolute;
    bottom: 35px;
    /* Adjusting base line relative to shelf texturing */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Base level for all items */
    z-index: 10;
}

.product-item {
    position: relative;
    /* ensure z-index applies */
    object-fit: contain;
    filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.4));
}

/* Cloud Layers (Fixed bounds) */
.cloud-layer {
    position: absolute;
    bottom: -150px;
    /* Lower base so foreground cloud covers shelf completely */
    height: 700px;
    /* Made them much bigger */
    width: auto;
    pointer-events: none;
    opacity: 0.9;
    object-fit: contain;
}

.cloud-bg {
    left: -150px;
    bottom: 150px;
    /* Cloud 1 moved significantly higher up relative to others */
    z-index: 1;
    /* Renders behind products but in front of background */
}

.cloud-fg {
    right: -150px;
    z-index: 55;
    /* Renders IN FRONT of fixed bottle */
}

.p-edge {
    height: 12vh;
    z-index: -1;
    /* Front layer */
    margin-right: -4vh;
    /* Overlap with conditioner */
    margin-bottom: 0vh;
    /* Push downwards to correct transparent PNG gap and sit on shelf */
}

.p-cond {
    height: 50vh;
    z-index: 1;
    /* Back layer */
    margin-right: -1vh;
    /* Pull shampoo over itself */
}

.p-shampoo {
    display: block;
    visibility: hidden;
    /* Holds the exact physical space for Master Bottle */
    height: 54vh;
    /* Taller, prominent */
    z-index: 2;
    /* Middle layer */
}

.p-leave {
    height: 50vh;
    z-index: 1;
    /* Back layer */
    margin-left: 0vh;
    /* Pull itself under shampoo */
}

.p-wave {
    height: 25vh;
    z-index: -1;
    /* Front layer */
    margin-left: -3vh;
    /* Overlap deeply with leave-in */
    margin-bottom: -4vh;
    /* Push downwards to correct transparent PNG gap and sit on shelf */
}

/* 
  Master Bottle Container 
  It is initially positioned via GSAP relative to the viewport, 
  so it sits on top of the shelf in the Hero section, and later moves to the side.
*/
.master-bottle-container {
    position: fixed;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    /* Hidden until GSAP load triggers */
}

.cond-bottle-container {
    /* Initially off-screen or faded */
    opacity: 0;
}

.master-bottle {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.4));
}

/* Section 2 details */
.text-content {
    width: 45%;
}

.product-name {
    font-family: 'Philosopher', sans-serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-tagline {
    font-family: var(--font-sans);
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* .vfx-placeholder {
    width: 60%;
    position: relative;
} */

#shampoo-section {
    position: relative;
    /* Removed z-index to allow fruits inner elements to layer under the body's bottle */
    min-height: 100vh;
}

.lateral-image {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 60vh;
    /* Reduced size */
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    /* Initial state for JS animation */
    object-fit: contain;
    display: block;
    /* ensure block for GSAP */
}

.girl-shampoo,
.girl-conditioner,
.girl-leave-in,
.girl-edge-control,
.boy-wave {
    height: 46vh;
    left: 0%;
}

.girl-leave-in {
    height: 40vh;
}

.boy-wave {
    height: 46vh;
    left: 0%;
}

.girl-edge-control {
    height: 38vh;
}

.layout-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70vh;
}

.layout-split .vfx-placeholder {
    width: 50%;
    height: 70vh;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-fruit {
    position: absolute;
    z-index: 60;
    /* To bring it IN FRONT of the bottle */
    filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.5));
    object-fit: contain;
}

.fruit-left {
    bottom: -23%;
    left: 3%;
    width: 300px;
    z-index: 40;
    /* Behind the master bottle (which is z-index: 50) */
}

.fruit-right {
    bottom: -14%;
    right: -45px;
    width: 300px;
    z-index: 60;
    /* In front of the master bottle (which is z-index: 50) */
}

/* Default Native Bottle Container (Base styles) */
.native-bottle-container {
    position: absolute;
    top: 14vh;
    left: calc(50% + clamp(100px, 12vw, 220px));
    height: 40vh;
    transform: scale(1.6);
    z-index: 50;
    pointer-events: none;
}

/* Individual Settings for Conditioner Bottle */
.section-conditioner .native-bottle-container {
    top: 31vh;
    left: calc(52% + 182px);
    height: 45vh;
    transform: scale(2.4);
}

/* Individual Settings for Leave-In Conditioner Bottle */
.section-leave-in .native-bottle-container {
    top: 33vh;
    left: calc(50% + 180px);
    height: 45VH;
    transform: scale(2.4);
}

/* Individual Settings for Edge Control Jar */
.section-edge-control .native-bottle-container {
    top: 25vh;
    left: calc(50% + 80px);
    /* Slightly closer to center for edge control layout */
    height: 50vh;
    /* Jars might need different height */
    transform: scale(1.4);
}

/* Individual Settings for Wave Control Jar */
.section-wave-control .native-bottle-container {
    top: 22vh;
    left: calc(54% + 180px);
    height: 30vh;
    transform: scale(2.1);
}


.native-bottle {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(5px 10px 10px rgba(0, 0, 0, 0.4));
}

/* Conditioner Section Specific Parallax Items */
.cond-fruit-left {
    bottom: -110px;
    left: -2%;
    width: 300px;
    z-index: 60;
    /* Sit behind the bottle */
}

.cond-fruit-right {
    bottom: -68px;
    right: -11%;
    width: 300px;
    z-index: 40;
    /* Sit in front of the bottle */
}

/* Leave-In Section Specific Parallax Items */
.leave-fruit-left {
    bottom: -13%;
    left: 26%;
    width: 250PX;
    z-index: 60;
    /* Front layer (Aloe stack) */
}

.leave-fruit-right {
    bottom: -13%;
    right: -25%;
    width: 300px;
    z-index: 40;
    /* Back layer */
}

/* Edge Control Section Specific Parallax Items */
.edge-fruit-left {
    bottom: 11%;
    left: -57px;
    width: 250px;
    z-index: 40;
    /* Back layer (Coffee beans left) */
}

.edge-fruit-right {
    bottom: 33%;
    right: -29%;
    width: 310px;
    z-index: 60;
    /* Front layer (Honey right) */
}

/* Wave Control Section Specific Parallax Items */
.wave-fruit-left {
    bottom: 26%;
    left: 19%;
    width: 230px;
    z-index: 40;
    /* Back layer */
}

.wave-fruit-right {
    bottom: 19%;
    right: -210px;
    width: 250px;
    z-index: 60;
    /* Front layer */
}

/* Section 7: About Us Styling */
.about-container {
    text-align: center;
    max-width: 900px;
    /* Narrower for readability */
}

.about-content {
    animation: fadeIn 1.2s ease-out;
    /* Fallback */
}

.about-text {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 27px;
    line-height: 2;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 300;
}


.gold-text {
    background: linear-gradient(180deg, #F7CD66 0%, #F2E2A0 48.08%, #D7BC74 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
    font-weight: 400;
    position: relative;
}

/* Section 8: Final Summary Styling */
.final-container {
    text-align: center;
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 18vh;
}

.final-title {
    font-size: 70px;
    font-family: 'Philosopher', sans-serif;
    color: #E3C26E;
    font-weight: 700;
    margin-bottom: 5px;
}

.final-subtitle {
    font-size: 30px;
    font-family: 'Philosopher', sans-serif;
    color: #FFF;
    font-weight: 400;
    margin-bottom: 25px;
}

.gold-btn {
    background: var(--button-gradient);
    color: var(--color-button-text);
    font-family: var(--font-button);
    font-weight: 400;
    font-size: 20px;
    border: none;
    padding: 12px 35px;
    border-radius: 10px;
}


.final-elements-wrap {
    position: absolute;
    width: 100%;
    height: calc(100% - 80px);
    /* leave space at the bottom for the button */
    top: 0;
    left: 0;
    pointer-events: none;
    transform: scale(0.85);
    transform-origin: bottom center;
}

.section-final .gold-btn {
    margin-top: auto;
    margin-bottom: 5vh;
    z-index: 100;
    position: relative;
}

.final-el {
    position: absolute;
    object-fit: contain;
}

/* Absolute Positions based on Screenshot approx */
.el-1 {
    left: 0%;
    bottom: 8%;
    width: 500px;
}

/* Decor Left */
.el-2 {
    left: 34%;
    bottom: 1%;
    width: 380px;
    z-index: 9;
}

/* Product Left */

.el-3 {
    left: 56%;
    bottom: 8%;
    width: 500px;
}


/* Decor Small Far Right */



/* Footer Styling */
.footer {
    color: #fff;
    padding: 0px 0 20px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    scroll-snap-align: end;
    padding-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 20px;
}

.footer-border {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 80%;
    display: block;
    margin: 20px auto;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
}

/* .footer-col {
    flex: 1;
    min-width: 200px;
} */

.footer-logo {
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.footer-heading {
    color: #E3C26E;
    font-family: 'Philosopher', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--color-primary-gold);
}

.footer-link {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E3C26E;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-icons img {
    height: 20px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.column-payment {
    align-self: flex-end;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 0;
    padding-bottom: 14px;
}






.payment-icons img {
    height: 30px;
    width: auto;
}


.footer-top-btn {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-top-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #E3C26E;
    color: #E3C26E;
}

.footer-bottom {
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Quicksand', sans-serif;
}

.footer-col a {
    font-family: 'Proxima Nova', sans-serif;
    color: #fff;
    text-decoration: none;
}

section#about-section {
    padding-bottom: 0px !important;
}

#wave-control-section .native-bottle.desktop-only {
    position: absolute;
    top: 23%;
}


/* =========================================================================
   Responsive Design (Mobile & Tablet)
   ========================================================================= */

@media (max-width: 1300px) {
    .left-links {
        padding-right: 20px;
    }

    .right-links {
        padding-left: 20px;
    }

    .nav-links {
        gap: 35px;
    }

    .nav-links a {
        font-size: 15px;
    }

    .section-hero {
        padding-top: 180px !important;
    }


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

}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 10px 20px;
        z-index: 9999;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 28px;
        height: 20px;
        position: fixed;
        right: 20px;
        top: 25px;
        z-index: 1001;
    }

    .mobile-cart-icon {
        display: block;
        position: fixed;
        right: 70px;
        top: 22px;
        z-index: 1001;
    }

    .cart-count-mobile {
        position: absolute;
        top: -8px;
        right: -10px;
        background-color: #E3C26E;
        color: #000;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 10px;
        font-weight: bold;
        line-height: 1;
    }

    .hamburger-menu span {
        width: 100%;
        height: 2px;
        background-color: #E3C26E;
        transition: all 0.3s ease;
    }

    /* Animation for hamburger when active (Close Button) */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav {
        display: flex;
        justify-content: space-between !important;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 1002;
    }

    .nav-links {
        display: none;
    }

    .fixed-bg {
        background-size: cover;
        /* Zoomed in more for mobile to make parallax faster */
    }

    /* New Dedicated Mobile Menu Overlay Styling */
    .mobile-menu-overlay {
        display: none;
        /* Default hidden */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(11, 11, 11, 0.98);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-overlay.active {
        display: flex;
    }

    .mobile-links {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .mobile-links li a {
        color: #fff;
        text-decoration: none;
        font-size: 24px;
        font-family: 'Philosopher', sans-serif;
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .mobile-links li a:hover {
        color: #E3C26E;
    }

    .logo img {
        height: 40px;
    }

    .header-spacer {
        height: 60px !important;
    }

    .container {
        padding: 0 15px;
    }

    /* Section & Hero Mobile Full Screen */
    .section-hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 60px !important;
    }

    /* Hero Section Fix for Mobile */
    .hero-title {
        font-size: 22px;
        margin-top: 0;
        padding: 0 15px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.4;
    }

    .products-showcase {
        height: auto;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .mobile-hero-img {
        display: block;
        width: 100%;
        height: auto;
        max-width: 450px;
        margin: 0 auto;
    }

    /* Hide desktop complex layers */
    .shelf-container,
    .cloud-layer,
    .master-bottle-container {
        display: none !important;
    }

    .section {
        padding: 30px 20px;
        min-height: auto !important;
        position: relative;
    }

    .layout-split {
        flex-direction: column !important;
        text-align: center;
        gap: 15px;
        min-height: 50vh;
    }

    .text-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .h-product-name {
        font-size: 2.8rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }

    .product-tagline {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .btn-shop {
        width: fit-content;
        margin: 0 auto;
        display: block;
        font-size: 17px !important;
        padding: 11px 39px !important;
    }

    /* Fixed layout for product lateral images - fixed in bottom-left corner */
    .lateral-image {
        position: fixed !important;
        width: 200px !important;
        /* Slightly smaller for fixed view */
        height: auto !important;
        left: 0 !important;
        bottom: 0 !important;
        display: block !important;
        z-index: 99 !important;
        pointer-events: none;
    }

    img.lateral-image.girl-edge-control {
        width: 134px !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        text-align: center;
    }

    .mobile-final-img {
        width: 100%;
        height: auto;
        max-width: 500px;
        margin: 20px auto;
        display: block;
    }

    .native-bottle-container {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: scale(1) !important;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .native-bottle {
        max-height: 280px;
        width: auto;
        margin: 0 auto;
    }

    .parallax-fruit {
        display: none !important;
        /* Hide floating fruits to keep clean static view */
    }

    .vfx-placeholder {
        display: none !important;
    }

    .about-text {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .gold-text {
        font-size: 2rem;
    }

    .final-title {
        font-size: 2.5rem;
    }

    .final-container {
        height: auto;
        padding-bottom: 40px;
    }

    .final-elements-wrap {
        position: relative;
        height: auto;
        margin-top: 30px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .footer-heading::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .column-payment {
        align-self: center !important;
    }

    .final-el {
        position: relative;
        display: inline-block;
        width: 45%;
        margin: 5px;
        left: 0;
        bottom: 0;
    }

    /* About Us Specific Mobile Fixes */
    .about-hero-content {
        margin-top: 20px !important;
    }

    .about-banner-img {
        width: 100% !important;
        margin-top: 54px !important;
        transform: scale(1.1);
        z-index: 10;
        position: relative;
    }

    .hero-text-overlay {
        margin-bottom: -100px !important;
        position: relative;
        z-index: 20;
    }


    .about-subheading {
        font-size: 32px !important;
        margin-top: 10px !important;
    }

    .about-main-heading {
        font-size: 18px !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
        max-width: 90% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        letter-spacing: 1px !important;
    }

    .about-anim-content {
        text-align: center !important;
    }

    .about-paragraphs {
        padding-top: 20px !important;
        text-align: center !important;
    }

    .promise-cards-wrapper {
        margin-top: 40px !important;
        gap: 20px !important;
    }

    .promise-card {
        min-height: auto !important;
        padding: 60px 20px 30px 20px !important;
        align-items: center !important;
        text-align: center !important;
        max-width: 70% !important;
        min-width: 70% !important;
    }

    .promise-card h3 {
        text-align: center !important;
        font-size: 28px !important;
    }

    .promise-card p {
        text-align: center !important;
    }

    .promise-card img {
        right: 50% !important;
        transform: translateX(50%) !important;
        top: 20px !important;
        width: 35px !important;
    }

    .gold-border-btn {
        font-size: 18px !important;
        padding: 12px 20px !important;
        border-width: 2px !important;
    }

    .section-separator img {
        height: 30px !important;
    }

    .simple-divider {
        width: 90% !important;
    }
}

/* =========================================================================
   About Us Page Specific Styles
   ========================================================================= */

.about-banner-section {
    padding-top: 0;
    padding-top: 50px;
    min-height: auto;
    justify-content: flex-start;
}

.about-hero-img-container {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.about-banner-img {
    /* width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain; */
}

.about-hero-content {
    margin-top: 60px;
    position: relative;
    z-index: 15;
}

.about-subheading {
    font-size: clamp(40px, 8vw, 75px);
    margin-bottom: 10px;
    margin-top: 20px;
    font-family: "Philosopher", sans-serif;
    text-transform: capitalize;
}

.about-main-heading {
    font-family: 'Proxima Nova', sans-serif;
    color: var(--color-text-light);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 400;
    line-height: 131%;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 33px;
}

.hero-text-overlay {
    position: relative;
    z-index: 20;
    margin-bottom: -175px;
    /* Pull banner image up slightly */
}

.about-hero-img-container {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.about-banner-img {
    /* width: 95%;
    max-width: 1200px; */
    height: auto;
    margin-top: -120px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

/* .about-hero-img-container:hover .about-banner-img {
    transform: scale(1.02) translateY(-5px);
} */

.about-paragraphs {
    /* max-width: 800px; */
    margin: 0 auto;
    padding-top: 40px;
    font-family: proxima-nova, sans-serif;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.section-separator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-separator img {
    height: 45px;
    width: auto;
}

.container.text-end.about-anim-content {
    text-align: end;
}

.simple-divider {
    width: 75%;
    max-width: 100%;
    height: 4px;
    background-color: var(--color-primary-gold);
    margin: 0px auto;
    opacity: 1;
}

.about-content-section {
    min-height: auto;
    padding: 30px 20px;
}


.section-heading {
    font-size: 45px;
    margin-bottom: 30px;
    line-height: 1.2;
}

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

/* Our Promise Cards */
.promise-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 80px;
    flex-wrap: nowrap;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.promise-card {
    flex: 1;
    min-width: 180px;
    max-width: 230px;
    min-height: 350px;
    border: 3px solid #E3C26E;
    border-radius: 45px;
    padding: 80px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    background: transparent;
}

div#promise-section {
    padding: 0;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: 0.5s;
}

.promise-card:hover::before {
    left: 100%;
}

.promise-card:hover {
    transform: translateY(-15px) rotate(1deg) !important;
    background: rgba(227, 194, 110, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promise-card img {
    height: auto;
    width: 80px;
    position: absolute;
    top: 35px;
    right: 35px;
    margin-bottom: 0;
    filter: drop-shadow(0 0 5px rgba(227, 194, 110, 0.4));
}

.promise-card h3 {
    color: #E3C26E;
    font-family: "Philosopher", sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1;
    text-transform: capitalize;
    text-align: left;
}

.promise-card p {
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
}

/* M Pattern layout positioning - Desktop */
@media (min-width: 992px) {
    .pc-top {
        margin-top: 50px;
    }

    .pc-bottom {
        margin-top: 150px;
    }

    .pc-highest {
        margin-top: 0px;
    }
}

.gold-border-btn {
    background: transparent;
    color: #F2E2A0;
    border: 4px solid #F8C957;
    padding: 15px 27px;
    font-family: "Philosopher", sans-serif;
    font-weight: 500;
    font-size: 25px;
    /* letter-spacing: 2px; */
    text-transform: normal;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.gold-border-btn:hover {
    background: var(--button-gradient);
    color: var(--color-button-text);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(211, 181, 101, 0.3);
    transform: translateY(-3px);
}

.join-family-section {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .promise-cards-wrapper {
        flex-wrap: wrap;
        min-height: auto;
    }

    .promise-card {
        top: 0 !important;
        max-width: 250px;
        margin-bottom: 20px;
    }

    .about-subheading {
        font-size: 32px;
    }

    .section-heading {
        font-size: 36px;
    }
}

/* =========================================================================
   Shop Page Specific Styles
   ========================================================================= */

.shop-hero-section {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.shop-hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

.shop-hero-text {
    flex: 1;
    max-width: 500px;
}

.product-info {
    margin-left: 11px;
}

.shop-hero-text .gold-text {
    font-size: 85px;
    margin-bottom: 20px;
}

.shop-subtitle {
    font-family: 'Proxima Nova', sans-serif;
    /* Matched to user edits */
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    margin-top: 20px;
    font-weight: 300;
}

.shop-banner-container {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}

.shop-banner-img {
    width: 110%;
    /* Slightly larger to overhang */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.shop-item {
    flex: 0 1 330px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 5px;
    min-width: 0;
    transition: transform 0.4s ease;
}

.shop-item:hover {
    transform: translateX(10px);
}

.product-img-wrapper {
    flex: 0 0 130px;
    width: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
}

.product-img-wrapper img {
    height: auto;
    max-height: 230px;
    width: auto;
    max-width: 180px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    display: block;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-family: "Philosopher", sans-serif;
    color: #F2E2A0;
    font-size: clamp(26px, 3vw, 30px);
    margin-bottom: 5px;
    line-height: 1;
    text-transform: capitalize;
}

.product-info .price {
    font-family: "Philosopher", sans-serif;
    color: #F2E2A0;
    font-size: clamp(32px, 4vw, 40px);
    margin-bottom: 25px;
    font-weight: 400;
}

.add-to-cart-btn {
    background: var(--button-gradient);
    color: var(--color-button-text);
    border: none;
    padding: 10px 30px;
    font-family: "Philosopher", sans-serif;
    font-weight: 400;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1);
}

/* Jar products (Edge Control & Wave Control) - smaller image size */
.product-edge-control .product-img-wrapper img,
.product-wave-control-pomade .product-img-wrapper img {
    max-height: 150px;
    max-width: 130px;
}

/* Mobile Adjustments for Shop */
@media (max-width: 1300px) {
    .shop-grid {
        gap: 40px 25px;
    }

    .text-content {
        width: 70%;
    }

    .products-showcase {
        margin-top: clamp(40px, 8vh, 80px) !important;
        max-width: 850px;
        height: clamp(300px, 35vh, 450px);
    }
}

/* Height-based refinement for standard laptops (e.g. 1280x800) */
@media (max-width: 1300px) and (max-height: 850px) {

    .container {
        max-width: 1000px;
    }

    .section-hero {
        padding-top: 95px !important;
    }

    .logo img {
        height: 60px;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .products-showcase {
        /* margin-top: 90px !important; */
        height: 345px;
    }

    .fruit-left {
        width: 200px;
    }

    .fruit-right {
        width: 220px;
    }

    .cond-fruit-left,
    .cond-fruit-right {
        width: 250px;
    }

    .leave-fruit-left {
        width: 187px;
    }

    .leave-fruit-right {
        width: 220px;
    }

    .edge-fruit-left {
        width: 220px;
    }

    .edge-fruit-right {
        width: 280px;
    }

    .wave-fruit-left {
        width: 220px;
    }

    .wave-fruit-right {
        width: 273px;
    }

    .girl-shampoo,
    .girl-conditioner,
    .girl-edge-control,
    .boy-wave {
        height: 36vh;
    }

    .p-shampoo {
        /* Holds the exact physical space for Master Bottle */
        height: 49vh;
    }

    .girl-leave-in {
        height: 30vh;
    }

    /* Reduce and reposition native bottles for shorter screens */
    .native-bottle-container {
        height: 34vh !important;
        transform: scale(1.4) !important;
        /*left: calc(50% + 140px) !important; */
    }

    .section-conditioner .native-bottle-container,
    .section-leave-in .native-bottle-container {
        transform: scale(1.8) !important;
        top: 35vh !important;
        left: calc(50% + 140px) !important;
    }

    .section-edge-control .native-bottle-container {
        transform: scale(1.1) !important;
        top: 30vh !important;
    }

    .section-wave-control .native-bottle-container {
        transform: scale(1.6) !important;
        top: 45vh !important;
    }
}

@media (max-width: 991px) {
    .shop-hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .shop-hero-text {
        display: contents;
    }

    .shop-hero-text .gold-text {
        order: 1;
        font-size: 50px;
        /* Adjusted for mobile readability */
        margin-bottom: 10px;
    }

    .shop-banner-container {
        order: 2;
        margin-bottom: 30px;
        justify-content: center;
        width: 100%;
    }

    .shop-banner-img {
        width: 100%;
    }

    .shop-subtitle {
        order: 3;
        font-size: 40px;
        /* 2px smaller than desktop 42px */
        max-width: 100%;
        margin-top: 0;
    }

    .shop-grid {
        gap: 40px 20px;
    }

    .shop-item {
        flex: 0 1 320px;
    }
}

@media (max-width: 600px) {
    .shop-grid {
        gap: 40px;
    }

    .shop-item {
        flex: 0 1 100%;
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        justify-content: center !important;
        transform: translate(0, 0) !important;
    }

    .checkout-btn {
        width: 100%;
        margin-top: 20px;
        font-size: 18px;
        padding: 15px 10px;
    }

    .gold-btn {
        padding: 12px 10px !important;
    }

    .checkout-btn {
        padding: 15px 15px !important;
    }

    .section-title {
        font-size: 40px !important;
    }

    .add-to-cart-btn-large {
        font-size: 24px;
        padding: 9px 30px !important;
    }

    .product-img-wrapper {
        flex: none;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-info {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .add-to-cart-btn {
        margin: 0 auto;
    }

    .section-conditioner .native-bottle-container {
        transform: scale(1.1) !important;
        top: 0vh !important;
        left: 0 !important;
        height: 30vh;
    }

    .section-edge-control .native-bottle-container {
        transform: scale(1.1) !important;
        top: 0 !important;
        height: 30vh;
    }

    .section-wave-control .native-bottle-container {
        transform: scale(1.1) !important;
        top: 0 !important;
        height: 30vh;
    }

    .section-leave-in .native-bottle-container {
        transform: scale(1.1) !important;
        top: 0 !important;
        left: 0 !important;
        height: 30vh;
    }

    .girl-edge-control {
        height: 20vh;
    }


    .native-bottle-container {
        height: 30vh;
    }

    .final-container {
        height: auto;
        padding: 80px 0;
    }

    .lateral-image {
        width: 250px !important;
        display: block !important;
        z-index: 99;

    }

    img.lateral-image.girl-edge-control {
        width: 174px !important;
    }

    img.lateral-image.boy-wave {
        width: 205px !important;
    }

    img.lateral-image.girl-leave-in {
        width: 180px !important;
    }

    img.lateral-image.girl-conditioner {
        width: 264px !important;
    }






}

/* =========================================================================
   Contact Page Specific Styles
   ========================================================================= */

.contact-hero-section {
    min-height: auto;
    padding-bottom: 50px;
}

.contact-form-section {
    min-height: auto;
    padding: 00px 20px;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    font-family: "Philosopher", sans-serif;
    color: #F2E2A0;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #F2E2A0;
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 18px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7CD66;
    box-shadow: 0 0 10px rgba(242, 226, 160, 0.2);
}

.form-submit {
    margin-top: 20px;
}

.get-in-touch-section {
    min-height: auto;
    padding: 80px 20px;
}

.get-in-touch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #E3C26E;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.contact-icon img {
    width: 100%;
    height: auto;
    filter: brightness(0);
    /* Make icon black/dark inside gold box if needed */
}

.contact-item span {
    font-family: "Philosopher", sans-serif;
    color: #F2E2A0;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-details {
        flex-direction: column;
        gap: 30px;
    }

    .contact-item span {
        font-size: 20px;
    }

    .form-group label {
        font-size: 20px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }
}

/* =========================================================================
   Cart Page Specific Styles
   ========================================================================= */

.cart-section {
    padding: 60px 0;
}

.cart-notification {
    background: transparent;
    border: 1px solid rgba(227, 194, 110, 0.4);
    border-left: 5px solid #E3C26E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    margin-bottom: 50px;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
}

.check-icon {
    color: #E3C26E;
    margin-right: 15px;
}

.continue-btn {
    background: var(--button-gradient);
    color: #000;
    padding: 10px 25px;
    border-radius: 8px;
    font-family: "Philosopher", sans-serif;
    text-decoration: none;
    font-size: 18px;
}

.cart-flex-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cart-items-column {
    flex: 2;
}

.cart-totals-column {
    flex: 1;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th {
    text-align: left;
    color: #E3C26E;
    font-family: "Philosopher", sans-serif;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(227, 194, 110, 0.3);
}

.cart-item td {
    padding: 30px 0;
    border-bottom: 1px solid rgba(227, 194, 110, 0.3);
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.remove-item {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 18px;
    font-family: 'Proxima Nova', sans-serif;
}

.h-product-name {
    font-size: clamp(35px, 6vw, 80px);
    font-family: "Philosopher", sans-serif;
}

.qty-input {
    width: 70px;
    background: transparent;
    border: 2px solid #E3C26E;
    color: #fff;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 16px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gold-btn {
    background: var(--button-gradient);
    color: #000;
    border: none;
    padding: 12px 30px;
    font-family: "Philosopher", sans-serif;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
}

.update-btn {
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 10px;
}

.coupon-area {
    display: flex;
    gap: 15px;
}

.coupon-input {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 10px 20px;
    color: #fff;
    width: 250px;
}

/* Totals Box */
.cart-totals-box {
    background: transparent;
    padding: 20px 0;
}

.cart-totals-heading {
    font-family: "Philosopher", sans-serif;
    color: #E3C26E;
    font-size: 32px;
    margin-bottom: 30px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(227, 194, 110, 0.2);
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 18px;
}

.price-value {
    color: #E3C26E;
    font-size: 24px;
    font-weight: 500;
}

.shipment-row {
    flex-direction: column;
    align-items: flex-start;
}

.shipment-title {
    color: #E3C26E;
    display: block;
    margin-bottom: 10px;
}

.shipment-info p {
    margin: 5px 0;
    font-size: 16px;
    color: #ccc;
}

.change-address {
    color: #E3C26E;
    text-decoration: underline;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.total-amount {
    border-bottom: none;
    font-size: 24px;
    padding: 30px 0;
}

.total-price {
    font-size: 32px;
    color: #E3C26E;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
    font-size: 22px;
    padding: 15px;
}

@media (max-width: 991px) {
    .cart-flex-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .cart-items-column,
    .cart-totals-column {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .products-showcase {
        margin-top: 20px !important;
        height: auto !important;
    }

    .section-hero {
        min-height: 100vh !important;
        padding: 80px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }


    .cart-table thead {
        display: none;
    }

    .cart-item {
        display: block;
        padding: 30px 0;
        border-bottom: 1px solid rgba(227, 194, 110, 0.2);
        position: relative;
    }

    .cart-item td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border: none;
        text-align: right;
        font-size: 16px;
    }

    .cart-item td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #E3C26E;
        text-transform: uppercase;
        font-size: 14px;
        flex: 1;
        text-align: left;
    }

    .product-cell {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .product-cell::before {
        margin-bottom: 15px;
        display: block;
        width: 100%;
    }

    .product-cell .cart-product-img {
        margin: 0 auto 10px auto;
    }

    .product-cell .product-name {
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 5px;
    }

    .qty-input {
        width: 80px !important;
        text-align: center;
    }

    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }

    .coupon-area {
        flex-direction: column;
        width: 100%;
    }

    .coupon-input {
        width: 100% !important;
    }


    .header-spacer {
        height: 100px !important;
    }
}

/* =========================================================================
   Checkout Page Specific Styles
   ========================================================================= */

.checkout-section {
    padding: 60px 0;
}

.login-prompt {
    color: #ccc;
    font-family: 'Proxima Nova', sans-serif;
    margin-bottom: 40px;
}

.login-prompt a {
    color: #E3C26E;
    text-decoration: underline;
}

.checkout-flex-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.billing-details-column {
    flex: 1.5;
}

.order-summary-column {
    flex: 1;
}

.card-input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.card-input-row input {
    flex: 1;
}

.checkout-subheading-page {
    font-family: "Philosopher", sans-serif;
    color: #E3C26E;
    font-size: 30px;
    margin-bottom: 30px;
}

.payment-card-details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .payment-card-details {
        padding: 15px;
    }
}

.checkout-select {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid #F2E2A0;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    font-family: 'Proxima Nova', sans-serif;
    appearance: none;
    cursor: pointer;
    font-size: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23F2E2A0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
}

.checkout-select option {
    background-color: #1a1a1a;
    color: #fff;
}

/* Custom Checkboxes */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    color: #ccc;
    font-family: 'Proxima Nova', sans-serif;
    margin-bottom: 20px;
    position: relative;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #E3C26E;
    border-radius: 4px;
    display: inline-block;
}

.custom-checkbox:hover input~.checkmark {
    background-color: rgba(227, 194, 110, 0.1);
}

.custom-checkbox input:checked~.checkmark {
    background-color: #E3C26E;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.order-summary-box {
    border: 1px solid rgba(227, 194, 110, 0.4);
    padding: 30px;
    border-radius: 15px;
}

.order-heading {
    font-family: "Philosopher", sans-serif;
    color: #E3C26E;
    font-size: 28px;
    margin-bottom: 30px;
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th {
    text-align: left;
    color: #E3C26E;
    font-family: "Philosopher", sans-serif;
    border-bottom: 1px solid rgba(227, 194, 110, 0.2);
    padding-bottom: 15px;
}

.order-table td {
    padding: 15px 0;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
}

.summary-total-row td {
    border-top: 1px solid rgba(227, 194, 110, 0.1);
    color: #E3C26E;
}

.grand-total-row td {
    border-top: 1px solid rgba(227, 194, 110, 0.3);
    font-size: 24px;
    color: #E3C26E;
    font-weight: 500;
}

.order-meta-info {
    margin-top: 40px;
}

.coupon-prompt {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 25px;
}

.coupon-prompt a {
    color: #E3C26E;
    text-decoration: underline;
}

.payment-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.privacy-note {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
    line-height: 1.6;
}

.checkout-submit-btn {
    width: 100%;
}

@media (max-width: 991px) {
    .checkout-section {
        padding: 40px 15px;
    }

    .checkout-flex-container {
        flex-direction: column;
        gap: 40px;
    }

    .billing-details-column,
    .order-summary-column {
        width: 100%;
    }

    .checkout-subheading-page {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .order-summary-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .card-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .order-table th,
    .order-table td {
        font-size: 14px;
    }

    .grand-total-row td {
        font-size: 20px;
    }
}

/* =========================================================================
   Login Page Specific Styles
   ========================================================================= */

.login-section {
    padding: 60px 20px;
    min-height: auto;
    display: flex;
    align-items: center;
}

.container-narrow {
    max-width: 600px;
    margin: 0 auto;
}

.login-form {
    background: transparent;
}

.login-submit-btn {
    width: 200px;
    margin-top: 20px;
}

.gold-link {
    color: #E3C26E;
    font-family: "Philosopher", sans-serif;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gold-link:hover {
    color: #fff;
}

/* Signup Page Specific Styles */
.signup-section {
    padding: 60px 20px;
    min-height: auto;
    display: flex;
    align-items: center;
}

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

.signup-submit-btn {
    width: 250px;
    margin-top: 20px;
}


/* Product Detail Page Specific Styles */
.product-single-section {
    padding: 20px clamp(20px, 5vw, 40px);
    min-height: auto;
    justify-content: flex-start;
}

.product-single-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.product-single-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-product-img {
    width: auto;
    max-width: 100%;
    max-height: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    object-fit: contain;
}

.product-single-details {
    flex: 1;
}

.product-name-large {
    font-size: 80px;
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 5px;
}

.single-price {
    font-size: 60px;
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 15px;
    font-weight: 400;
}

.info-heading {
    font-family: 'Philosopher', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.info-text {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.add-to-cart-btn-large {
    font-size: 24px;
    padding: 15px 45px;
}

.product-usage-section {
    padding: 30px clamp(20px, 5vw, 40px);
    min-height: auto;
    justify-content: flex-start;
}

.usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.info-list {
    list-style: none;
    padding: 0;
}

input#cardNumber {
    margin-bottom: 10px;
}

.info-list li {
    font-family: 'Proxima Nova', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E3C26E;
    font-weight: bold;
}

.related-products-section {
    padding: 40px clamp(20px, 5vw, 40px);
    min-height: auto;
    justify-content: flex-start;
}

.section-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 48px;
    text-align: left;
}

.related-item {
    transition: transform 0.4s ease;
}

.related-item:hover {
    transform: translateY(-10px);
}


@media (max-width: 991px) {
    .product-single-flex {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .product-name-large {
        font-size: 48px;
    }

    .single-price {
        font-size: 36px;
    }

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* =========================================================================
   Product Reviews Section
   ========================================================================= */
.product-reviews-section {
    padding: 60px 0;
    min-height: auto !important;
}

.reviews-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Reviews List */
.reviews-list {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar for Reviews List */
.reviews-list::-webkit-scrollbar {
    width: 6px;
}

.reviews-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.reviews-list::-webkit-scrollbar-thumb {
    background: var(--color-primary-gold);
    border-radius: 10px;
}

.reviews-list-col h3,
.write-review-col h3 {
    font-family: 'Philosopher', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(200, 167, 96, 0.3);
}

.review-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 167, 96, 0.15);
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.review-item:hover {
    border-color: rgba(200, 167, 96, 0.4);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.reviewer-name {
    color: var(--color-primary-gold);
    font-family: 'Philosopher', sans-serif;
    font-size: 16px;
}

.review-date {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.review-stars {
    margin-bottom: 6px;
    font-size: 20px;
}

.review-stars .star {
    color: rgba(255, 255, 255, 0.2);
}

.review-stars .star.filled {
    color: var(--color-primary-gold);
}

.review-comment {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

/* Review Form */
.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-family: 'Proxima Nova', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 167, 96, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Proxima Nova', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
    -webkit-appearance: none;
}

.review-input:focus {
    border-color: var(--color-primary-gold);
    background: rgba(255, 255, 255, 0.08);
}

.review-input option {
    background: #1a1a1a;
    color: #fff;
}

textarea.review-input {
    resize: vertical;
    min-height: 120px;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .reviews-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (min-width: 1300px) and (max-width: 1400px) {

    .final-el {
        position: relative;
        display: inline-block;
        width: 21%;
        left: 0px;
        top: 163px;
    }

    .el-2 {
        left: 10%;
        bottom: 1%;
        z-index: 9;
    }

    .el-1 {
        left: 13%;
        bottom: 8%;
    }

    .el-3 {
        left: 63px;
    }

    .master-bottle-container {
        width: 140px;
    }


    .edge-fruit-right {
        bottom: 33%;
        right: -6%;
        width: 222px;
        z-index: 60;
    }

    /* Individual Settings for Conditioner Bottle */
    .section-conditioner .native-bottle-container {
        transform: scale(1.8) !important;
        top: 36vh !important;
        left: calc(59% + 140px) !important;
    }

    /* Individual Settings for Leave-In Conditioner Bottle */
    .section-leave-in .native-bottle-container {
        transform: scale(1.9) !important;
        top: 35vh !important;
        left: calc(55% + 140px) !important;
    }

    .leave-fruit-right {
        right: -15%;
    }

    .girl-edge-control {
        height: 29vh !important;
    }

    /* Individual Settings for Edge Control Jar */
    .section-edge-control .native-bottle-container {
        transform: scale(2) !important;
        top: 37vh !important;
        left: calc(55% + 80px);
        height: 32vh;
    }

    /* Individual Settings for Wave Control Jar */
    .section-wave-control .native-bottle-container {
        transform: scale(1.9) !important;
        top: 36vh !important;
        left: calc(46% + 180px);
    }

    .fruit-right {
        right: 40px;
        width: 208px;
    }

    .layout-split .vfx-placeholder {
        width: 45%;
    }

    .wave-fruit-left {
        bottom: 26%;
        left: 0%;
        width: 175px;
        z-index: 40;
    }

    .wave-fruit-right {
        bottom: 0%;
        right: -18px;
        width: 203px;
        z-index: 60;
    }

    .girl-conditioner {
        height: 28vh;
    }

    .girl-leave-in {
        height: 25vh;
    }

    .girl-shampoo {
        height: 34vh;
    }

    .boy-wave {
        height: 28vh;
    }

}