/*
Theme Name: Mell Luxe V2
Description: A luxury WordPress theme for Mell Luxe - featuring GSAP animations, scroll snapping, and WooCommerce integration
Author: Custom Theme
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, luxury, beauty, responsive, woocommerce
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary-color) 0%, #e6c96e 100%);
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f5e67a 0%, #d1b855 100%);
    border-color: var(--text-muted);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #da9358 0%, #c88a4c 100%);
}

::-webkit-scrollbar-corner {
    background: var(--primary-color);
}

/* Horizontal scrollbar specific styling */
::-webkit-scrollbar:horizontal {
    height: 12px;
}

/* Critical Layout Fix */
#page {
    overflow-x: hidden;
    width: 100%;
}

#content {
    width: 100%;
}

:root {
    --primary-color: #251746;
    --secondary-color: #FDE28D;
    --accent-color: #FDE28D;
    --cream-bg: #2f2052;
    --soft-beige: #251746;
    --text-dark: #ffffff;
    --text-muted: #dcd1f3;
    --text-light: #ffffff;
    --border-light: #443764;
    --transition: all 0.4s ease;
    --border-radius: 12px;
    --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --max-width: 1400px;
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--primary-color);
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-color);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Responsive Breakpoints */
/* Mobile First Approach */

/* Small devices (phones, 576px and up) */
@media (min-width: 576px) {
    :root {
        --max-width: 540px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    :root {
        --max-width: 720px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .header-container {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        padding: 15px 0;
        background-color: var(--primary-color);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
        min-height: 80px;
    }

    .header-container nav {
        display: flex;
        width: 80%;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .site-branding {
        display: flex;
        align-items: center;
    }

    .site-logo img {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    .links ul {
        height: 100%;
        display: flex;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;

        li {
            list-style: none;
            position: relative;

            a {
                text-decoration: none;
                color: var(--secondary-color);
                padding: 10px 0;
                display: block;
                transition: var(--transition);
            }

            &:hover a {
                color: var(--text-light);
            }

            /* Categories Dropdown Styles */
            &.categories-menu {
                .categories-dropdown {
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    background: var(--primary-color);
                    border: 1px solid var(--border-light);
                    border-radius: var(--border-radius);
                    box-shadow: var(--shadow-medium);
                    opacity: 0;
                    visibility: hidden;
                    transition: all 0.3s ease;
                    z-index: 1000;
                    min-width: 300px;
                    margin-top: 10px;

                    &::before {
                        content: '';
                        position: absolute;
                        top: -8px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 0;
                        height: 0;
                        border-left: 8px solid transparent;
                        border-right: 8px solid transparent;
                        border-bottom: 8px solid var(--border-light);
                    }

                    &::after {
                        content: '';
                        position: absolute;
                        top: -7px;
                        left: 50%;
                        transform: translateX(-50%);
                        width: 0;
                        height: 0;
                        border-left: 7px solid transparent;
                        border-right: 7px solid transparent;
                        border-bottom: 7px solid var(--primary-color);
                    }
                }

                &:hover .categories-dropdown {
                    opacity: 1;
                    visibility: visible;
                }

                .categories-content {
                    padding: 20px;
                }

                .categories-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 10px;
                }

                .category-item {
                    .category-link {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        padding: 8px 12px;
                        border-radius: 6px;
                        transition: var(--transition);
                        color: var(--text-light);
                        text-decoration: none;

                        &:hover {
                            background: var(--border-light);
                            color: var(--secondary-color);
                        }
                    }

                    .category-name {
                        font-weight: 500;
                        font-size: 14px;
                    }

                    .category-count {
                        font-size: 12px;
                        color: var(--text-muted);
                        font-weight: 400;
                    }
                }

                .no-categories {
                    text-align: center;
                    color: var(--text-muted);
                    padding: 20px;
                    font-style: italic;
                }
            }
        }
    }

    .header-tools {
        display: flex;
        gap: 20px;
        align-items: center;
        height: 100%;
    }

    .header-search {
        display: flex;
        align-items: center;

        form {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-field {
            padding: 8px 12px;
            border: 1px solid var(--border-light);
            border-radius: 4px;
            background-color: transparent;
            color: var(--text-light);
            font-size: 14px;

            &::placeholder {
                color: var(--text-muted);
            }
        }

        .search-submit {
            color: var(--secondary-color);
            border: none;
            background-color: transparent;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;

            svg {
                width: 1.25rem;
                height: 1.25rem;
            }
        }
    }

    .header-cart {
        display: flex;
        align-items: center;

        .cart-link {
            display: flex;
            align-items: center;
            color: var(--secondary-color);
            text-decoration: none;

            .cart-icon {
                position: relative;
                display: flex;
                align-items: center;

                svg {
                    width: 1.5rem;
                    height: 1.5rem;
                }

                .cart-count {
                    position: absolute;
                    top: -8px;
                    right: -8px;
                    background-color: var(--accent-color);
                    color: var(--primary-color);
                    border-radius: 50%;
                    width: 18px;
                    height: 18px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 12px;
                    font-weight: 600;
                }
            }
        }
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    :root {
        --max-width: 1140px;
    }
}

/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    :root {
        --max-width: 1320px;
    }
}

/* Container width adjustments */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: var(--max-width);
}

/* Responsive typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 13px;
    }
}

@media (max-width:375px) {
    .info-1 {
        height: 100% !important;
    }
}

/* Hero Section Styles */

.hero-section {
    min-height: 100vh;
    position: relative;

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
}

#hero {
    display: flex;
    background-color: var(--primary-color);
    height: 100vh;
    width: 100%;
    background-size: cover;

    position: relative;
    margin-top: 80px;

    .hero {
        display: flex;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        height: 100%;

        .hero-text {
            flex: 2;
            position: relative;
            z-index: 2;

        }

        .hero-text-container {
            background: radial-gradient(circle at center,
                    rgba(0, 0, 0, 0.8) 0%,
                    rgba(0, 0, 0, 0.4) 50%,
                    rgba(0, 0, 0, 0) 100%);
        }

        h1 {
            font-size: 10rem;
            font-weight: 300;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
            margin: 0;
        }

        h2 {
            font-size: 2rem;
            font-weight: 300;
            color: var(--secondary-color);

        }

        .hero-cta-button {
            height: 70px;
            position: absolute;
            bottom: 160px;
            right: 0;
            z-index: 3;
        }
    }

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 1;
    }


}

.container {
    p {
        text-align: justify;
    }
}

.info-1 {
    background-color: white;
    padding: 100px 0px;
    width: 100%;
    height: 100svh;
    border: 5px 0px solid var(--secondary-color);
    color: black;
    border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);
    display: flex;
    align-items: center;


    .container {


        height: 85%;
        width: 1200px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(6, 1fr);
        grid-template-areas:
            "box1 box1 box1 box1 box3 box3"
            "box1 box1 box1 box1 box3 box3"
            "box1 box1 box1 box1 box3 box3"
            "box2 box2 box2 box2 box3 box3"
            "box2 box2 box2 box2 box4 box4"
            "box2 box2 box2 box2 box4 box4";

        .box1 {
            background-image: url('images/assets/pattern-1.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 20px;

            .text-container {

                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 100%;
                padding: 2rem;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 15px;
                box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
                position: relative;
            }

            h2 {
                font-size: 2rem;
                font-weight: 500;
                color: white;
            }

            p {
                font-size: 1.2rem;
                font-weight: 400;
                color: white;
                background: rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                margin: 15px 0;

            }


        }

        .box2 {
            background-image: url('images/System Images/table.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 20px;
            height: 100%;
            width: 100%;
        }

        .box3 {
            background-image: url('images/assets/lady.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 20px;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: end;
            align-items: center;
            text-align: center;

            h2 {


                font-size: 2rem;
                font-weight: 600;
                color: white;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);

            }

            p {
                color: white;
                padding: 0.5rem;
            }
        }




    }


}

.info-2 {
    background-color: var(--primary-color);
    padding: 100px 0px;
    width: 100%;
    height: 100%;
    border: 5px 0px solid var(--secondary-color);
    color: white;
    border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);

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

    /* Top Section */
    .top-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 80px;
    }

    .product-display {
        display: flex;
        gap: 30px;
        justify-content: center;
    }

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

    .bottle-image {
        width: 120px;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .content-right {
        text-align: left;
    }

    .main-title {
        font-size: 3.5rem;
        font-weight: 700;
        color: white;
        margin: 0 0 20px 0;
        line-height: 1.2;
    }

    .subtitle {
        font-size: 1.2rem;
        color: white;
        opacity: 0.8;
        margin: 0 0 30px 0;
    }

    .cta-button {
        display: inline-block;
        background-color: var(--secondary-color);
        color: var(--primary-color);
        padding: 18px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    /* Middle and Bottom Sections */
    .middle-section,
    .bottom-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .content-block {
        padding: 40px;
        border-radius: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 200px;
    }

    .light-block {
        background-color: white;
        color: var(--primary-color);
    }

    .dark-block {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

    .content-block h3 {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 0 0 20px 0;
    }

    .content-block p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
        opacity: 0.9;
    }

    /* Palettes Grid */
    .palettes-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

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

    .palette-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    /* Small Products in Bottom Block */
    .small-products {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        justify-content: center;
    }

    .small-product-image {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .top-section {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .middle-section,
        .bottom-section {
            grid-template-columns: 1fr;
            gap: 30px;
        }

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



    }

    @media (max-width: 768px) {
        .main-title {
            font-size: 2.5rem;
        }

        .content-block {
            padding: 30px 20px;
            min-height: 150px;
        }

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

.info-3 {
    overflow: hidden;
    position: relative;
    background-color: white;
    padding: 100px 0px;
    width: 100%;
    height: 100svh;
    border: 5px 0px solid var(--secondary-color);
    color: white;
    border-top: 5px solid var(--secondary-color);
    border-bottom: 5px solid var(--secondary-color);


    h1 {
        position: relative;
        font-size: 4rem;
        font-weight: 600;
        color: var(--primary-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: 2px;
        text-align: center;
        color: var(--primary-color);
        z-index: 2;
    }

    .circle {
        position: absolute;
        top: -83px;
        left: -830px;
        width: 100%;
        height: 200%;
        background-color: var(--secondary-color);
        border-radius: 50%;
    }

    .container {
        position: relative;
        z-index: 2;
        height: 100%;
        width: 1200px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "img1 img2 img3"
            "box1 box2 box3";

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

    .box1,
    .box2,
    .box3 {
        display: flex;
        flex-direction: column;
        align-items: center;


        h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }

        p {
            font-size: 1.2rem;
            font-weight: 400;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
    }
}

/* Mobile responsive styles for .info-3 section */
@media (max-width: 768px) {
    .info-3 {
        padding: 60px 0px;
        height: auto;
        min-height: 100vh;

        h1 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .container {
            width: 100%;
            padding: 0 20px;
            grid-template-columns: 1fr;
            grid-template-rows: auto;
            grid-template-areas:
                "img1"
                "box1"
                "img2"
                "box2"
                "img3"
                "box3";
            gap: 30px;
        }

        .box1,
        .box2,
        .box3 {
            padding: 20px;

            h2 {
                font-size: 1.5rem;
                margin-bottom: 15px;
            }

            p {
                font-size: 1rem;
                line-height: 1.6;
            }
        }
    }
}

@media (max-width: 480px) {
    .info-3 {
        padding: 40px 0px;

        h1 {
            font-size: 2rem;
        }

        .container {
            padding: 0 15px;
            gap: 20px;
        }

        .box1,
        .box2,
        .box3 {
            padding: 15px;

            h2 {
                font-size: 1.3rem;
            }

            p {
                font-size: 0.9rem;
            }
        }
    }
}

.hero-next-section {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px;
    display: block;
    background-color: var(--primary-color);
    width: 100%;
    height: 500px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "text text"
        "text2 image";

    .text {
        grid-area: text;

        h1 {
            font-size: 4rem;
            font-weight: 300;
            color: var(--secondary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 2px;
        }

    }

    .text2 {
        grid-area: text2;

        p {
            position: relative;
            top: -186px;
            text-align: justify;
        }
    }

    .img {
        grid-area: image;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            top: -193px;
            right: -109px;
        }
    }
}

.product-image-container {
    border-radius: 20px;
    overflow: hidden;
}

.products-showcase {
    .showcase-description {
        p {
            text-align: justify !important;
        }
    }
}

.header-container {
    .header-logo {
        display: none;
    }
}

.page-content-container {
    color: black;
}

@media (max-width: 1200px) {
    .hero-next-section {
        .text {
            h1 {
                font-size: 3.3rem;
            }
        }

        .text2 {


            p {
                position: relative;
                top: -140px;
                text-align: justify;
            }
        }

        .img {
            grid-area: image;

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: relative;
                top: -147px;
                right: -109px;
            }
        }
    }

    .products-showcase {
        .showcase-description {
            width: 500px;
            position: relative;
            left: -100px;

            p {
                font-size: 1.2rem !important;
            }
        }
    }


}

.box4{
    p{
        font-size: 1.2rem;
    }
    
}

@media (max-width: 992px) {
    .hero-text-container {
        h1 {
            font-size: 4rem !important;
        }

        a {
            height: 60px !important;
        }
    }

    .offer-banner {
        .offer-icon {
            display: none;
        }

        .offer-text {}
    }

    .hero-next-section {
        .text {
            h1 {
                font-size: 2.6rem;
            }
        }

        .text2 {


            p {
                position: relative;
                top: -70px;
                text-align: justify;
            }
        }

        .img {
            grid-area: image;

            img {
                top: -103px;
                right: -87px;
            }
        }
    }

    .header-container {
        .header-logo {
            display: block;
            width: 100px;
            height: 100px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
    }

    .info-1 {
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0;
            max-width: 100%;
        }
    }

    .info-2 {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-next-section {
        .text {
            h1 {
                font-size: 2.6rem;
            }
        }
    }

    .hero-text-container {
        flex-direction: column !important;

        h1 {
            font-size: 3rem !important;
        }

        a {
            height: 60px !important;
        }
    }

    .hero-next-section {
        .text {
            h1 {
                font-size: 2rem;
            }
        }

        .text2 {


            p {
                position: relative;
                top: -20px;
                text-align: justify;
                font-size: 1rem !important;
            }
        }

        .img {
            grid-area: image;

            img {
                top: -28px;
                right: -30px;
            }
        }
    }

    .products-showcase {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr 1fr 1fr;
        grid-template-areas:
            "image1 text image2"
            "text text text"
            "image3 image4 image5";
    }

    .showcase-description {
        width: 100vw !important;
        position: absolute !important;
        left: 0 !important;

    }

    .info-1 {
        .container {
            grid-area: 1/1/2/2;
            margin: 0;
            max-width: 100%;
        }
    }
}


/* Offer Banner */
.offer-banner {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 40px;
    overflow: hidden;
}

.offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.offer-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.offer-text h3 {
    font-size: 0.5rem;
    margin: 0;
    color: var(--primary-color);
    opacity: 0.8;
}

.offer-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Offer Banner Marquee */
.offer-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.offer-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: offer-scroll 120s linear infinite;
}

@media (max-width: 768px) {
    .offer-track {
        animation-duration: 40s;
    }
}

.offer-group {
    display: flex;
}

.offer-item {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 24px;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    font-size: 0.95rem;
    line-height: 40px;
}

@keyframes offer-scroll {
    0% {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .offer-track {
        animation: none;
    }
}

/* Hero Container */
.hero-container {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 70px);
    position: relative;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(253, 226, 141, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(253, 226, 141, 0.08) 0%, transparent 50%);
}

/* Hero Showcase Section */
.hero-showcase-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 20px;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.showcase-images {
    display: flex;
    justify-content: center;
    position: relative;
}

.product-display {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.hero-product-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.hero-product-img:hover {
    transform: rotate(0deg) scale(1.05);
}

.showcase-text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-content {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    text-align: center;
}

/* Hero CTA Button */
.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
}

.hero-cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 226, 141, 0.3);
}

.hero-cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
}

.hero-cta-button span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-cta-button:hover span {
    transform: translateX(5px);
}

/* Brand Section */
.hero-brand-section {
    flex: 1;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(253, 226, 141, 0.1) 0%, transparent 100%);
}

.brand-title {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.brand-title h1 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    margin: 0;
}

.brand-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.brand-content {
    position: relative;
}

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

.brand-product-left,
.brand-product-right {
    display: flex;
    justify-content: center;
}

.brand-product-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.brand-product-left .brand-product-img {
    transform: rotate(8deg);
}

.brand-product-right .brand-product-img {
    transform: rotate(-8deg);
}

.brand-product-img:hover {
    transform: rotate(0deg) scale(1.05);
}

.brand-text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.brand-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.brand-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 0 20px 0;
}

.brand-description p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brand-title h1 {
        font-size: 3rem;
    }

    .showcase-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .brand-title h1 {
        font-size: 2.5rem;
    }

    .offer-content {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {

    .hero-showcase-section,
    .hero-brand-section {
        padding: 40px 15px;
    }

    .text-content,
    .brand-description {
        padding: 30px 20px;
    }

    .brand-title h1 {
        font-size: 2rem;
    }

    .hero-cta-button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .offer-text h3 {
        font-size: 1rem;
    }

    .offer-text p {
        font-size: 0.8rem;
    }

    .brand-title h1 {
        font-size: 1.8rem;
    }

    .text-content p,
    .brand-description p {
        font-size: 1rem;
    }
}

/* Product Showcase Section Styles */
.product-showcase {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(37, 23, 70, 0.7) 0%, rgba(74, 53, 112, 0.8) 50%, rgba(37, 23, 70, 0.7) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
}

.products-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: block !important;
}

.products-showcase {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-template-rows: repeat(2, minmax(100px, 1fr));
    grid-template-areas:
        "image1 text image2"
        "image3 image4 image5";

}


/* Text Section */
.showcase-text-section {
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Product Positioning */
.products-top {
    grid-area: top-left / top-left / top-right / top-right;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product-top-left {
    align-self: start;
}

.product-top-right {
    align-self: start;
}

.showcase-text-center {
    grid-area: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.products-sides {
    grid-area: left / left / right / right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-left,
.product-right {
    pointer-events: all;
}

.product-left {
    align-self: center;
}

.product-right {
    align-self: center;
}

.products-bottom {
    grid-area: bottom;
    display: flex;
    justify-content: center;
}

.product-bottom {
    align-self: end;
}

/* Update showcase description for center positioning */
.showcase-description {
    max-width: 600px;
    background: rgba(37, 23, 70, 0.95);
    backdrop-filter: blur(15px);
    padding: 60px 50px;
    border-radius: 25px;
    border: 2px solid rgba(253, 226, 141, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.showcase-description.gsap-animated {
    opacity: 0;
    transform: translateY(50px);
}

/* Product Grid - Remove old styles and update for surrounding layout */
.showcase-product-grid {
    display: none;
    /* Hide old grid */
}

/* Update product containers for surrounding layout */
.showcase-center-layout .product-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-center-layout .product-image-container:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
}

.showcase-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-center-layout .product-image-container:hover .showcase-product-image {
    transform: scale(1.1);
}

.showcase-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Product item base styles */
.showcase-product-item {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.showcase-product-item.gsap-animated {
    opacity: 0;
    transform: translateY(50px);
}

/* Specific positioning adjustments */
.product-top-left .product-image-container {
    transform: rotate(-5deg);
}

.product-top-right .product-image-container {
    transform: rotate(5deg);
}

.product-left .product-image-container {
    transform: rotate(-8deg);
}

.product-right .product-image-container {
    transform: rotate(8deg);
}

.product-bottom .product-image-container {
    transform: rotate(-3deg);
}

/* Responsive adjustments for center layout */
@media (max-width: 1200px) {
    .showcase-center-layout {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 30px;
    }

    .showcase-center-layout .product-image-container {
        width: 180px;
        height: 180px;
    }

    .showcase-description {
        padding: 40px 35px;
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .showcase-center-layout {
        grid-template-areas:
            "top-left top-right"
            "center center"
            "left right"
            "bottom bottom";
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 30px;
        min-height: auto;
    }

    .products-sides {
        position: static;
        transform: none;
        grid-area: left / left / right / right;
        justify-content: space-around;
    }

    .showcase-center-layout .product-image-container {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .showcase-center-layout {
        grid-template-areas:
            "center"
            "top-left"
            "top-right"
            "left"
            "right"
            "bottom";
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .products-top,
    .products-sides,
    .products-bottom {
        display: flex;
        justify-content: center;
    }

    .products-top {
        grid-area: top-left / top-left / top-right / bottom;
        flex-direction: column;
        gap: 20px;
    }

    .products-sides {
        grid-area: left / left / right / right;
        flex-direction: column;
        gap: 20px;
    }

    .showcase-description {
        padding: 30px 25px;
        font-size: 1rem;
    }

    .showcase-center-layout .product-image-container {
        width: 140px;
        height: 140px;
    }
}

/* CTA Section */
.showcase-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    opacity: 1;
    transform: translateY(0);
}

.showcase-cta.gsap-animated {
    opacity: 0;
    transform: translateY(30px);
}

.showcase-shop-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a1a4f 100%);
    color: var(--secondary-color);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.showcase-shop-button:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f5d86b 100%);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(253, 226, 141, 0.4);
}

.showcase-shop-button span {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.showcase-shop-button:hover span {
    transform: translateX(8px);
}

/* Strips Section */
.strips-section {
    margin-top: 80px;
    opacity: 1;
    transform: translateY(0);
}

.strips-section.gsap-animated {
    opacity: 0;
    transform: translateY(100px);
}

.strips-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.strips-container.gsap-animated {
    opacity: 0;
    transform: translateY(100px);
}

.strips-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.strips-image:hover {
    transform: scale(1.02);
}

/* GSAP Animation Classes */
.gsap-slide-left {
    opacity: 0;
    transform: translateX(-100px);
}

.gsap-slide-right {
    opacity: 0;
    transform: translateX(100px);
}

.gsap-slide-up {
    opacity: 0;
    transform: translateY(50px);
}

.gsap-slide-bottom {
    opacity: 0;
    transform: translateY(100px);
}

.gsap-fade-in {
    opacity: 0;
    transform: translateY(30px);
}

/* Responsive Design for Product Showcase */
@media (max-width: 1200px) {
    .showcase-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .showcase-description {
        padding: 40px 30px;
    }

    .showcase-description p {
        font-size: 1.1rem;
    }

    .showcase-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .products-container {
        padding: 60px 15px;
    }

    .showcase-description {
        padding: 30px 20px;
    }

    .showcase-description p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .showcase-shop-button {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .showcase-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .showcase-description p {
        font-size: 0.95rem;
    }

    .showcase-shop-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .showcase-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

/* Our Best Section Styles */
.about-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(37, 23, 70, 0.5) 0%, rgba(74, 53, 112, 0.6) 50%, rgba(37, 23, 70, 0.5) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    .best-container {
        width: 1200px;
        margin: 0 auto;
    }
}

.best-container {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: center;
    min-height: 80vh;
}

/* Left Side - Product Slider */
.product-slider-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.best-content-section {
    width: 50%;
}

.main-product-display {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    min-height: 500px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 23, 70, 0.8);
    border: none;
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.main-product-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* Thumbnail Slider */
.thumbnail-slider {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.thumbnail-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

/* Mobile optimization: side-scroll thumbnails and show 5 at a time */
@media (max-width: 768px) {
    .thumbnail-slider {
        overflow: hidden;
        width: 95vw;
    }

    .thumbnail-container {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 12px;
        gap: 8px;
        /* ensure math below fits exactly 5 items */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .thumbnail-container::-webkit-scrollbar {
        display: none;
    }

    .thumbnail-item {
        box-sizing: border-box;
        flex: 0 0 calc((100% - 4 * 8px) / 5);
        width: calc((100% - 32px) / 5);
        height: auto;
        aspect-ratio: 1 / 1;
        scroll-snap-align: start;
    }
}

.thumbnail-item:hover {
    transform: scale(1.1);
    border-color: rgba(253, 226, 141, 0.5);
}

.thumbnail-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(253, 226, 141, 0.4);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side - Content */
.best-content-section {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
}

/* "Our" Text - White, Large */
.our-text h2 {
    font-size: 4rem;
    font-weight: 300;
    color: white;
    margin: 0;
    line-height: 0.9;
    letter-spacing: 2px;
}

/* "Best" Container with Dark Background and Yellow Accent */
.best-container-box {
    position: relative;
    background: rgba(30, 20, 60, 0.95);
    border-radius: 15px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    max-width: 300px;
}

.best-text {
    font-size: 4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 0.9;
    letter-spacing: 2px;
}

/* Yellow Triangle Accent */
.yellow-accent {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid var(--secondary-color);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

/* Description Container */
.best-description {
    background: rgba(30, 20, 60, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

.best-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* shipping  */
.woocommerce-shipping-totals.shipping {
    ul {
        list-style-type: none;
        li {
            display: flex;
            justify-content: space-between;
        }
    }
}
.shipping-calculator-button{
    display: none;
    color: #FDE28D;
}
.woocommerce-shipping-calculator{
    input{
        width: 100%;
    }
}

/* Responsive Design for Our Best Section */
@media (max-width: 1200px) {
    .best-container {
        gap: 60px;
        padding: 0 30px;
        flex-direction: column;
        width:100%!important;
    }

    .our-text h2 {
        font-size: 3.5rem;
    }

    .best-text {
        font-size: 3.5rem;
    }

    .main-product-display {
        min-height: 400px;

    }

    .best-content-section {
        padding-left: 0;
        order: -1;
        align-items: center;
    }
    .product-slider-section {
        width: 100%;
    }
    .thumbnail-slider{
        width: 100%;
    }     
}

@media (max-width: 992px) {
    .best-container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: center;
        justify-content: center;
    }

    .best-content-section {
        padding-left: 0;
        order: -1;
        align-items: center;
    }

    .our-text h2 {
        font-size: 3rem;
    }

    .best-text {
        font-size: 3rem;
    }

    .best-container-box {
        max-width: 250px;
    }

    .main-product-display {
        min-height: 350px;
    }

    .slider-nav {
        width: 50px;
        height: 50px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .best-container {
        padding: 0 20px;
        gap: 40px;
    }

    .our-text h2 {
        font-size: 2.5rem;
    }

    .best-text {
        font-size: 2.5rem;
    }

    .best-container-box {
        max-width: 220px;
        padding: 20px 30px;
    }

    .yellow-accent {
        border-left-width: 25px;
        border-top-width: 15px;
        border-bottom-width: 15px;
        right: -12px;
    }

    .main-product-display {
        min-height: 300px;
        padding: 20px;
    }

    .best-content-section {
        gap: 25px;
    }

    .best-description {
        padding: 30px 25px;
    }

    .best-description p {
        font-size: 1rem;
    }

    .thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .thumbnail-container {
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .our-text h2 {
        font-size: 2rem;
    }

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

    .best-container-box {
        max-width: 180px;
        padding: 15px 25px;
    }

    .yellow-accent {
        border-left-width: 20px;
        border-top-width: 12px;
        border-bottom-width: 12px;
        right: -10px;
    }

    .main-product-display {
        min-height: 250px;
        padding: 15px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }

    .thumbnail-item {
        width: 50px;
        height: 50px;
    }
}

/* Testimonials Section with Hero Background */
.testimonials-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(37, 23, 70, 0.7) 0%, rgba(74, 53, 112, 0.8) 50%, rgba(37, 23, 70, 0.7) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

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

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 1;
    transform: translateY(0);
}

.testimonials-header.gsap-animated {
    opacity: 0;
    transform: translateY(50px);
}

.testimonials-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Testimonial Cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(253, 226, 141, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card.gsap-animated {
    opacity: 0;
    transform: translateY(50px);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #f5d86b 100%);
    border-radius: 25px 25px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(253, 226, 141, 0.5);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

/* Star Ratings */
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.star {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Quote Text */
blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
    flex: 1;
    position: relative;
    padding-left: 30px;
}

blockquote::before {

    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--secondary-color);
    opacity: 0.7;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a1a4f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(0);
}

.trust-indicators.gsap-animated {
    opacity: 0;
    transform: translateY(50px);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
    color: var(--text-light);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 1rem;
    margin: 5px 0 0 0;
    opacity: 0.9;
    font-weight: 300;
}

/* Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f5d86b 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(253, 226, 141, 0.4);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.special-offer-banner.gsap-animated {
    opacity: 0;
    transform: translateY(50px);
}

.special-offer-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.offer-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.offer-content p {
    font-size: 1.1rem;
    color: var(--primary-color);

    opacity: 0.9;
}

.offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(37, 23, 70, 0.4);
}

.offer-cta:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 23, 70, 0.6);
}

.offer-cta span {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.offer-cta:hover span {
    transform: translateX(5px);
}

/* Contact Section with Hero Background */
.contact-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(37, 23, 70, 0.6) 0%, rgba(61, 42, 95, 0.7) 50%, rgba(37, 23, 70, 0.6) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Enhanced glassmorphism effects for better contrast against hero image */
.showcase-description,
.best-description,
.testimonial-card {
    background: rgba(37, 23, 70, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(253, 226, 141, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.text-content,
.brand-description {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Parallax effects for different sections */
.hero-section {
    background-position: center center;
}

.product-showcase {
    background-position: center 20%;
}

.about-section {
    background-position: center 40%;
}

.testimonials-section {
    background-position: center 60%;
}

.contact-section {
    background-position: center 80%;
}

/* Mobile optimizations for hero backgrounds */
@media (max-width: 768px) {

    .hero-section,
    .product-showcase,
    .about-section,
    .testimonials-section,
    .contact-section {
        background-attachment: scroll;
        /* Better performance on mobile */
        background-position: center center;
    }

    /* Adjusted overlays on mobile for better hero image visibility */
    .hero-section {
        background: linear-gradient(135deg, rgba(37, 23, 70, 0.7) 0%, rgba(61, 42, 95, 0.8) 50%, rgba(37, 23, 70, 0.7) 100%),
            url('images/hero.jpg');
    }

    .product-showcase {
        background: linear-gradient(135deg, rgba(37, 23, 70, 0.8) 0%, rgba(74, 53, 112, 0.8) 50%, rgba(37, 23, 70, 0.8) 100%),
            url('images/hero.jpg');
    }

    .about-section {
        background: linear-gradient(135deg, rgba(37, 23, 70, 0.6) 0%, rgba(74, 53, 112, 0.7) 50%, rgba(37, 23, 70, 0.6) 100%),
            url('images/hero.jpg');
    }

    .testimonials-section {
        background: linear-gradient(135deg, rgba(37, 23, 70, 0.8) 0%, rgba(74, 53, 112, 0.8) 50%, rgba(37, 23, 70, 0.8) 100%),
            url('images/hero.jpg');
    }

    .contact-section {
        background: linear-gradient(135deg, rgba(37, 23, 70, 0.7) 0%, rgba(61, 42, 95, 0.8) 50%, rgba(37, 23, 70, 0.7) 100%),
            url('images/hero.jpg');
    }

    .offer-content h3 {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--primary-color);
        margin: 0 0 10px 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .offer-content p {
        font-size: 0.6rem;
        color: var(--primary-color);
        margin: 0 0 25px 0;
        opacity: 0.9;
    }
}

/* Ultra-mobile optimizations */
@media (max-width: 480px) {

    .hero-section,
    .product-showcase,
    .about-section,
    .testimonials-section,
    .contact-section {
        background-size: cover;
        background-position: center 30%;
    }

    /* Maximum overlay for smallest screens */
    .showcase-description,
    .best-description,
    .testimonial-card {
        background: rgba(37, 23, 70, 0.98);
        backdrop-filter: blur(25px);
    }
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonials-container {
        padding: 0 30px;
    }

    .testimonials-header h2 {
        font-size: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }

    .trust-stats {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-header {
        margin-bottom: 60px;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 60px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 20px;
    }

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

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonials-header p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .blockquote {
        font-size: 1rem;
        padding-left: 25px;
    }

    .blockquote::before {
        font-size: 3rem;
    }

    .trust-indicators {
        margin-bottom: 40px;
    }

    .trust-stats {
        padding: 30px 20px;
    }

    .special-offer-banner {
        padding: 30px 20px;
    }

    .offer-content h3 {
        font-size: 0.8rem;
    }

    .offer-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 20px;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 1.8rem;
    }


    .offer-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0;
    background: transparent;
    color: var(--text-light);
}

.back-to-top.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 2px;
    transition: all 0.3s ease;
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 23, 70, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 2px solid rgba(253, 226, 141, 0.3);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 5px 15px rgba(37, 23, 70, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.back-to-top:hover .btn-bg {
    background: rgba(37, 23, 70, 0.98);
    border-color: rgba(253, 226, 141, 0.6);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(37, 23, 70, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.back-to-top:hover .btn-content {
    transform: translateY(-2px);
    color: var(--secondary-color);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(253, 226, 141, 0.3));
}

.btn-text {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.back-to-top:hover .btn-text {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: translateY(0) scale(0.95);
}

.back-to-top:active .btn-bg {
    transform: scale(0.95);
}

/* Pulse animation when button appears */
.back-to-top.show .btn-bg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.4),
            0 5px 15px rgba(37, 23, 70, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 0 rgba(253, 226, 141, 0.3);
    }

    50% {
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.4),
            0 5px 15px rgba(37, 23, 70, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 10px rgba(253, 226, 141, 0.1);
    }

    100% {
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.4),
            0 5px 15px rgba(37, 23, 70, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 0 0 rgba(253, 226, 141, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top svg {
        width: 18px;
        height: 18px;
    }

    .btn-text {
        font-size: 7px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }

    .btn-text {
        font-size: 6px;
    }
}

/* Base header styles for all devices */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--primary-color);
}

.header-container {
    position: relative;
    padding: 15px 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile Menu Toggle (hidden on desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Search Toggle */
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
    color: var(--text-light);
    transition: var(--transition);
}

.mobile-search-toggle:hover {
    color: var(--secondary-color);
}

.mobile-search-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-hero-section {
    display: none
}

.header-profile {  
    svg {
        width: 24px;
        height: 24px;
        color: var(--secondary-color);
    }
    
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {

    .header-profile {  
        display: flex;
        justify-content: center;
        
    }
    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        padding: 15px 20px;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, #2a1a4f 100%);
        backdrop-filter: blur(20px);
        border-left: 2px solid rgba(253, 226, 141, 0.3);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    .main-navigation.active {
        right: 0;
    }

    .site-branding {
        padding: 20px;
        border-bottom: 1px solid rgba(253, 226, 141, 0.2);
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .site-logo img {
        width: 50px;
        height: 50px;
        object-fit: cover;
    }

    .links {

        padding: 0 20px;
    }

    .links ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .links ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .links ul li:last-child {
        border-bottom: none;
    }

    .links ul li a {
        display: block;
        padding: 15px 0;
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        padding-left: 15px;
    }

    .links ul li a:hover {
        color: var(--secondary-color);
        border-left-color: var(--secondary-color);
        background: rgba(253, 226, 141, 0.1);
        transform: translateX(5px);
    }

    /* Mobile Categories Menu Styles */
    .links ul li.categories-menu {
        position: relative;
    }

    .links ul li.categories-menu .categories-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .links ul li.categories-menu .categories-toggle::after {
        content: '▼';
        font-size: 0.8rem;
        transition: transform 0.3s ease;
        color: var(--secondary-color);
    }

    .links ul li.categories-menu.active .categories-toggle::after {
        transform: rotate(180deg);
    }

    .links ul li.categories-menu .categories-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .links ul li.categories-menu.active .categories-dropdown {
        max-height: 500px;
    }

    .links ul li.categories-menu .categories-content {
        padding: 0 15px;
    }

    .links ul li.categories-menu .categories-grid {
        display: block;
    }

    .links ul li.categories-menu .category-item {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .links ul li.categories-menu .category-item:last-child {
        border-bottom: none;
    }

    .links ul li.categories-menu .category-link {
        display: block;
        padding: 12px 0;
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 400;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        padding-left: 15px;
    }

    .links ul li.categories-menu .category-link:hover {
        color: var(--secondary-color);
        border-left-color: var(--secondary-color);
        background: rgba(253, 226, 141, 0.1);
        transform: translateX(5px);
    }

    .links ul li.categories-menu .category-count {
        opacity: 0.7;
        font-size: 0.85rem;
    }

    .header-tools {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        border-top: 1px solid rgba(253, 226, 141, 0.2);
        margin-top: 20px;
    }

    .header-search {
        display: flex;
        align-items: center;
    }

    .header-search form {
        display: flex;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(253, 226, 141, 0.3);
    }

    .header-search .search-field {
        flex: 1;
        padding: 12px 15px;
        border: none;
        background: transparent;
        color: var(--text-light);
        font-size: 14px;
    }

    .header-search .search-field::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .header-search .search-submit {
        padding: 12px 15px;
        background: var(--secondary-color);
        color: var(--primary-color);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .header-search .search-submit:hover {
        background: #f5d86b;
    }

    .header-search .search-submit svg {
        width: 18px;
        height: 18px;
    }

    .header-cart {
        display: flex;
        justify-content: center;
    }

    .header-cart .cart-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--secondary-color);
        text-decoration: none;
        padding: 12px 20px;
        background: rgba(253, 226, 141, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(253, 226, 141, 0.3);
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .header-cart .cart-link:hover {
        background: rgba(253, 226, 141, 0.2);
        transform: translateY(-2px);
    }

    .header-cart .cart-icon {
        position: relative;
        display: flex;
        align-items: center;
    }

    .header-cart .cart-icon svg {
        width: 20px;
        height: 20px;
    }

    .header-cart .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: #ff4757;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 600;
    }

    /* Show overlay when menu is active */
    .mobile-menu-overlay {
        display: block;
    }

    .text2 {
        text-align: center;
        font-size: 1rem;
        font-weight: 300;
        text-align: justify;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        letter-spacing: 2px;
        margin: 0;
        margin-bottom: 32px;
    }

    .section-2 {
        margin: 56px 0;

        .container {
            display: flex;

            .product-display {
                height: 100%;
                width: 100%;

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

        .text-content {
            margin-left: 24px;
            flex: 2;
            background: unset;
        }

        .img-container {
            flex: 1;

            img {
                height: 100%;
                width: 100%;

                p {
                    font-size: 1.2rem;
                    font-weight: 300;
                    color: var(--secondary-color);
                    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
                }

                object-fit: cover;
                border-radius: 20px;
            }
        }

    }

    .section-3 {
        width: 100%;

        background: linear-gradient(135deg, rgba(37, 23, 70, 0.7) 0%, rgba(74, 53, 112, 0.8) 50%, rgba(37, 23, 70, 0.7) 100%), url(images/hero.jpg);
        background-size: cover;
        background-position: center bottom;
        background-attachment: fixed;
        position: relative;
        overflow: hidden;
        display: block !important;
        visibility: visible !important;

        .container {
            display: flex;
            padding-top: 24px;

            .img-container {
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 24px;

                .img-1 {
                    height: 100%;
                    width: 100%;
                }

                .img-2 {
                    height: 100%;
                    width: 100%;
                }
            }

            .text-container {
                flex: 2;
                display: flex;
                flex-direction: column;
                justify-content: center;
                /* Horizontal centering */
                align-items: center;
                gap: 24px;

                p {
                    display: flex;
                    text-align: center;

                }

                img {
                    width: 100%;
                    /* Image takes full container width */
                    height: auto;
                    /* Maintains aspect ratio */

                }
            }
        }
    }
}



/* Tablet specific adjustments */
@media (max-width: 768px) {
    .header-container {
        padding: 12px 15px;
        min-height: 70px;
    }

    .main-navigation {
        width: 260px;
    }

    .site-logo img {
        width: 45px;
        height: 45px;
    }

    .links ul li a {
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
        min-height: 65px;
    }

    .main-navigation {
        width: 240px;
    }

    .mobile-menu-toggle {
        width: 28px;
        height: 28px;
    }

    .hamburger-line {
        height: 2px;
    }

    .site-logo img {
        width: 40px;
        height: 40px;
    }
}

/* Large devices (desktops, 992px and up) - Keep existing desktop styles */
@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none !important;
    }

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

    .header-container {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        padding: 15px 0;
        background-color: var(--primary-color);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
        height: 50px;
    }

    .header-container nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        flex-direction: row;
    }

    .site-branding {
        display: flex;
        align-items: center;
        padding: 0;
        border: none;
        margin: 0;
        justify-content: flex-start;
    }

    .site-logo img {
        width: 60px;
        height: 60px;
        object-fit: cover;
    }

    .links {
        flex: none;
        padding: 0;
    }

    .links ul {
        height: 100%;
        display: flex;
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        border: none;
    }

    .links ul li {
        list-style: none;
        border: none;
    }

    .links ul li a {
        text-decoration: none;
        color: var(--secondary-color);
        padding: 10px 0;
        display: block;
        font-size: inherit;
        font-weight: inherit;
        border: none;
        background: none;
        transform: none;
    }

    .links ul li a:hover {
        color: var(--secondary-color);
        border: none;
        background: none;
        transform: none;
    }

    .header-tools {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: center;
        height: 100%;
        padding: 0;
        border: none;
        margin: 0;
    }

    .header-search {
        display: flex;
        align-items: center;
    }

    .header-search form {
        display: flex;
        align-items: center;
        gap: 8px;
        background: none;
        border-radius: 0;
        overflow: visible;
        border: none;
        width: auto;
    }

    .header-search .search-field {
        padding: 8px 12px;
        border: 1px solid var(--border-light);
        border-radius: 4px;
        background-color: transparent;
        color: var(--text-light);
        font-size: 14px;
        flex: none;
    }

    .header-search .search-field::placeholder {
        color: var(--text-muted);
    }

    .header-search .search-submit {
        color: var(--secondary-color);
        border: none;
        background-color: transparent;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-search .search-submit:hover {
        background: transparent;
    }

    .header-search .search-submit svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .header-cart {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .header-cart .cart-link {
        display: flex;
        align-items: center;
        color: var(--secondary-color);
        text-decoration: none;
        padding: 0;
        background: none;
        border-radius: 0;
        border: none;
        gap: 0;
        font-weight: inherit;
    }

    .header-cart .cart-link:hover {
        background: none;
        transform: none;
    }

    .header-cart .cart-icon {
        position: relative;
        display: flex;
        align-items: center;
    }

    .header-cart .cart-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .header-cart .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: var(--accent-color);
        color: var(--primary-color);
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
    }
}

/* Footer Styles */
.site-footer {
    background: rgba(25, 25, 35, 0.95);
    color: #fff;
    padding: 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
    filter: blur(1px);
}

.footer-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.92), rgba(138, 43, 226, 0.85));
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* Contact Form Section */
.footer-contact-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    color: #fff;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin: 0 0 40px;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #FFD700;
    flex-shrink: 0;
}

.contact-item span {
    color: #e0e0e0;
    font-size: 1rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-container {
    width: 100%;
}

/* Style WPForms within the footer */
.footer-contact-section .wpforms-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.footer-contact-section .wpforms-field-container {
    margin: 0 !important;
}

.footer-contact-section .wpforms-field {
    margin-bottom: 25px !important;
}

.footer-contact-section .wpforms-field-label {
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 1rem !important;
}

.footer-contact-section .wpforms-field input,
.footer-contact-section .wpforms-field textarea,
.footer-contact-section .wpforms-field select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 15px 20px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.footer-contact-section .wpforms-field input::placeholder,
.footer-contact-section .wpforms-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-contact-section .wpforms-field input:focus,
.footer-contact-section .wpforms-field textarea:focus,
.footer-contact-section .wpforms-field select:focus {
    border-color: #FFD700 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2) !important;
    outline: none !important;
}

.footer-contact-section .wpforms-submit {
    background: linear-gradient(135deg, #8A2BE2, #FFD700) !important;
    border: none !important;
    color: #fff !important;
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3) !important;
}

.footer-contact-section .wpforms-submit:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4) !important;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 0 30px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-desc {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0 0 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #e0e0e0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 25px;
    color: #fff;
    position: relative;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #8A2BE2, #FFD700);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.newsletter-desc {
    color: #e0e0e0;
    margin: 0 0 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
    outline: none;
}

.newsletter-input.error {
    border-color: #ff6b6b;
    animation: shake 0.5s ease-in-out;
}

.newsletter-btn {
    background: linear-gradient(135deg, #8A2BE2, #FFD700);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.newsletter-btn.loading {
    animation: spin 1s linear infinite;
}

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

.newsletter-success {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(46, 160, 67, 0.9);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 8px;
    animation: slideUp 0.3s ease-out;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.copyright-content p {
    margin: 0;
    color: #b0b0b0;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.legal-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #FFD700;
}

/* Animations */
@keyframes shake {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

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

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

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-hero-bg {
        background-attachment: scroll;
    }

    .footer-contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-btn {
        align-self: center;
        width: 50px;
        height: 50px;
    }
}

/* Cart Sidebar Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.cart-sidebar.active {
    visibility: visible;
    opacity: 1;
}

.cart-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.cart-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(400px, 90vw);
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar.active .cart-sidebar-content {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--primary-color);
    color: var(--text-light);
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-sidebar-close:hover {
    background: rgba(253, 226, 141, 0.1);
    transform: rotate(90deg);
}

.cart-sidebar-close svg {
    width: 20px;
    height: 20px;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: white;
}

.cart-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    color: var(--text-muted);
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.cart-empty-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    opacity: 0.5;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: rgba(253, 226, 141, 0.05);
    border-radius: 8px;
    padding: 15px;
    margin: 0 -15px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-item-name {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
}

.cart-item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-item-name a:hover {
    color: var(--accent-color);
}

.cart-item-price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    align-self: flex-start;
}

.cart-item-remove:hover {
    background: rgba(255, 71, 87, 0.1);
    transform: scale(1.1);
}

.cart-item-remove svg {
    width: 16px;
    height: 16px;
}

.cart-sidebar-footer {
    border-top: 1px solid var(--border-light);
    padding: 20px;
    background: var(--secondary-color);
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cart-total-amount {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cart-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-sidebar-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.cart-sidebar-actions .btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cart-sidebar-actions .btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 23, 70, 0.3);
}

.cart-sidebar-actions .btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.cart-sidebar-actions .btn-primary:hover {
    background: #1a0f3d;
    border-color: #1a0f3d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 23, 70, 0.4);
}

/* Quantity controls in cart */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.quantity-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #1a0f3d;
    transform: scale(1.1);
}

.quantity-input {
    width: 40px;
    height: 24px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 12px;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .cart-sidebar-content {
        width: 100vw;
    }

    .cart-sidebar-header {
        padding: 15px;
    }

    .cart-sidebar-body {
        padding: 15px;
    }

    .cart-sidebar-footer {
        padding: 15px;
    }

    .cart-item {
        gap: 10px;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
    }

    .cart-sidebar-actions {
        gap: 8px;
    }

    .cart-sidebar-actions .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

/* Animation for cart count update */
.cart-count.updating {
    animation: bounceScale 0.6s ease;
}

@keyframes bounceScale {

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

    50% {
        transform: scale(1.1);
    }
}

/* Mobile Search Modal */
.mobile-search-modal {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mobile-search-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 23, 70, 0.95);
    backdrop-filter: blur(10px);
}

.mobile-search-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.mobile-search-modal.active .mobile-search-content {
    transform: translateY(0);
}

.mobile-search-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    background: var(--primary-color);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--cream-bg);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    border: 1px solid var(--border-light);
}

.search-icon {
    color: var(--text-muted);
    margin-right: 12px;
    flex-shrink: 0;
}

.mobile-search-field {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    outline: none;
    width: 100%;
}

.mobile-search-field::placeholder {
    color: var(--text-muted);
}

.mobile-search-cancel {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    white-space: nowrap;
}

.mobile-search-cancel:hover {
    background: var(--border-light);
    color: var(--secondary-color);
}

.mobile-search-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.popular-search-terms {
    margin-bottom: 30px;
}

.popular-search-terms h3 {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    background: var(--cream-bg);
    border: 1px solid var(--border-light);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.search-tag:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.search-results {
    min-height: 200px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--cream-bg);
    margin: 0 -20px;
    padding: 15px 20px;
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    object-fit: cover;
    margin-right: 15px;
}

.search-result-details h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.search-result-details p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

.search-result-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    margin-left: auto;
}

.search-loading,
.search-error,
.search-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 16px;
}

.search-loading {
    color: var(--secondary-color);
}

.search-error {
    color: #ff6b6b;
}

.search-no-results {
    color: var(--text-muted);
    font-style: italic;
}

/* Mobile Search Responsive */
@media (max-width: 768px) {
    .mobile-search-toggle {
        display: block;
    }



    .mobile-search-header {
        padding: 15px;
    }

    .mobile-search-form {
        gap: 10px;
    }

    .search-input-wrapper {
        padding: 10px 14px;
    }

    .mobile-search-field {
        font-size: 16px;
    }

    .mobile-search-cancel {
        font-size: 16px;
        padding: 6px 10px;
    }

    .mobile-search-body {
        padding: 15px;
    }

    .popular-search-terms h3 {
        font-size: 16px;
    }

    .search-tag {
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .mobile-search-header {
        padding: 12px;
    }

    .mobile-search-form {
        gap: 8px;
    }

    .search-input-wrapper {
        padding: 8px 12px;
    }

    .mobile-search-cancel {
        font-size: 14px;
        padding: 4px 8px;
    }

    .mobile-search-body {
        padding: 12px;
    }

    .search-tags {
        gap: 8px;
    }

    .search-tag {
        font-size: 12px;
        padding: 5px 10px;
    }
}


/*--------------------------------------------------------------
# Page Cart
--------------------------------------------------------------*/

.cart-page-container {
    /* max-width: var(--max-width, 1400px); */
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 80px;
    /* Account for fixed header */
}

.cart-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.cart-items-column {
    background-color: var(--background, #fff);
    padding: 2rem;
    border-radius: var(--border-radius, 12px);
    box-shadow: var(--shadow-light);
}

.cart-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.cart-count-info {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.cart-items-list .cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    color: #666666;
    font-size: 0.875rem;
    text-transform: uppercase;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 3fr 1fr 1.5fr 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius, 12px);
}

.product-details .product-category {
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    display: block;
}

.product-details .product-name a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-details .product-name a:hover {
    color: var(--secondary-color);
}

.product-details .variation {
    font-size: 0.875rem;
    color: #666666;
}

.product-price,
.product-total {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333333;
}

/* WooCommerce quantity input styling */
.product-quantity .quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    border-radius: 99px;
    padding: 0.25rem;
    max-width: 120px;
    background: #fff;
}

.product-quantity .quantity input[type="number"] {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.product-quantity .quantity input[type="number"]::-webkit-outer-spin-button,
.product-quantity .quantity input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity .quantity input[type="number"]:focus {
    outline: none;
}

/* Custom quantity buttons */
.product-quantity {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-quantity .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #fff;
}

.product-quantity .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: var(--transition);
    user-select: none;
}

.product-quantity .qty-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.product-quantity .qty-btn:active {
    transform: scale(0.95);
}

.product-quantity .qty-btn.minus {
    border-right: 1px solid #ddd;
}

.product-quantity .qty-btn.plus {
    border-left: 1px solid #ddd;
}

.product-quantity .qty-btn:disabled {
    background: #e9ecef;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-quantity .qty-btn:disabled:hover {
    background: #e9ecef;
    color: #adb5bd;
    transform: none;
}

.product-quantity .qty {
    width: 60px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    color: #333;
    outline: none;
    -moz-appearance: textfield;
}

.product-quantity .qty::-webkit-outer-spin-button,
.product-quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-quantity .qty:focus {
    background: #f8f9fa;
}

.remove-item {
    font-size: 1.5rem;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.remove-item:hover {
    color: #e53e3e;
    /* Error/remove color */
}

/* Trust badges */
.cart-page-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    text-align: left;
}

.trust-icon {
    font-size: 1.5rem;
    background: rgba(253, 226, 141, 0.2);
    padding: 0.5rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-content h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.trust-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* Summary Column */
.cart-summary-column .summary-card {
    background-color: var(--cream-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
}

.coupon-code-section,
.cart-total-section {
    margin-bottom: 2rem;
}

.coupon-code-section:last-child,
.cart-total-section:last-child {
    margin-bottom: 0;
}


.coupon-code-section h2,
.cart-total-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.coupon-code-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.coupon-code-section .coupon {
    display: flex;
    gap: 0.5rem;
}

.coupon-code-section .input-text {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.coupon-code-section .input-text::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.coupon-code-section .button,
.update-cart-button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.coupon-code-section .button:hover,
.update-cart-button:hover {
    opacity: 0.85;
}

.update-cart-button {
    width: 100%;
    margin-top: 1rem;
}

.update-cart-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}


.cart-total-section .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart-total-section .cart_totals th,
.cart-total-section .cart_totals td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.cart-total-section .cart_totals th {
    text-align: left;
    font-weight: normal;
    color: #e0e0e0;
}

.cart-total-section .cart_totals td {
    text-align: right;
    font-weight: 600;
}

.cart-total-section .cart_totals .order-total th,
.cart-total-section .cart_totals .order-total td {
    font-size: 1.25rem;
    border-bottom: none;
    color: #ffffff;
}

.cart-total-section .cart_totals .order-total td {
    color: var(--secondary-color);
}

/* Coupon removal link styling */
.cart-total-section .cart_totals .woocommerce-remove-coupon,
.cart-total-section .cart_totals a[data-coupon] {
    color: #ff6b6b !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.cart-total-section .cart_totals .woocommerce-remove-coupon:hover,
.cart-total-section .cart_totals a[data-coupon]:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #e53e3e !important;
    transform: translateY(-1px);
}

/* Coupon code display styling */
.cart-total-section .cart_totals tr.cart-discount td {
    color: #ffffff !important;
}

.cart-total-section .cart_totals tr.cart-discount th {
    color: #e0e0e0 !important;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: var(--transition);
}

.wc-proceed-to-checkout .checkout-button:hover {
    opacity: 0.85;
}

/* Empty Cart */
.cart-empty-container {
    text-align: center;
    padding: 4rem 1rem;
}

.cart-empty-container .cart-empty {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cart-empty-container .return-to-shop .button {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cart-empty-container .return-to-shop .button:hover {
    opacity: 0.85;
}

/* goggle pay */


/* Responsive */
@media (max-width: 992px) {
    .cart-layout-grid {
        grid-template-columns: 1fr;
    }

    .mobile-search-toggle {
        display: block;
    }

    .header-search {
        display: none;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .cart-items-list .cart-header {
        display: none;
    }

    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .product-info {
        flex-direction: column;
    }

    .product-quantity .quantity {
        margin: 0 auto;
    }

    .cart-page-trust-badges {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }
}

/* Enhanced Related Products */
.related.products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.related.products h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.related.products .product {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.related.products .product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.related.products .product a {
    text-decoration: none;
    color: var(--primary-color);
}

.related.products .product img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.related.products .product .woocommerce-loop-product__title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 15px;
    min-height: 44px;
}

.related.products .product .price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 15px 15px;
}

.related.products .product .price ins {
    color: #d9534f;
    text-decoration: none;
}

.related.products .product .price del {
    font-size: 0.8em;
    color: #999;
    margin-left: 5px;
}

.related.products .product .button {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    text-align: center;
    padding: 10px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.related.products .product .button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Enhanced Reviews Section */
#reviews .commentlist {
    list-style: none;
    padding: 0;
}

#reviews .comment {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

#reviews .comment-text {
    border: none;
    padding: 0;
}

#reviews .comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#reviews .avatar {
    border-radius: 50%;
    margin-right: 15px;
}

#reviews .meta {
    font-size: 0.9em;
}

#reviews .woocommerce-review__author {
    font-weight: 600;
    color: var(--primary-color);
}

#reviews .woocommerce-review__published-date {
    color: #999;
}

#reviews .star-rating {
    float: right;
}

#review_form_wrapper {
    margin-top: 40px;
}

#review_form #respond {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

#review_form .comment-form-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Enhanced Product Grids (Shop & Related) */
.related.products {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.related.products>h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

/* Responsive padding for bigger screens */
@media (min-width: 768px) {
    .related.products {
        padding: 60px 40px;
    }
}

@media (min-width: 1200px) {
    .related.products {
        padding: 80px 60px;
    }
}

@media (min-width: 1400px) {
    .related.products {
        padding: 100px 80px;
    }
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

/* Force five products per row on desktop */
@media (min-width: 1200px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(5, 1fr);
    }
}

.woocommerce ul.products li.product {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    text-decoration: none;
    color: var(--primary-color);
}

.woocommerce ul.products li.product .onsale {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    margin: 0;
    line-height: 1.4;
    min-height: 0;
}

.woocommerce ul.products li.product img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 auto;
    min-height: 50px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.woocommerce ul.products li.product .star-rating {
    margin: 0 auto 10px;
    display: inline-block;
    color: #fdd835;
}

.woocommerce ul.products li.product .price {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto;
    display: block;
}

.woocommerce ul.products li.product .price ins {
    color: #d9534f;
    text-decoration: none;
    background-color: transparent;
}

.woocommerce ul.products li.product .price del {
    font-size: 0.8em;
    color: #999;
    margin-left: 5px;
}

.woocommerce ul.products li.product .button {
    display: inline-block;
    width: auto;
    margin: 0 15px;
    text-align: center;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    border: 2px solid transparent;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Enhanced Reviews Section */
#reviews .commentlist {
    list-style: none;
    padding: 0;
}

#reviews .comment {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

#reviews .comment-text {
    border: none;
    padding: 0;
}

#reviews .comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#reviews .avatar {
    border-radius: 50%;
    margin-right: 15px;
}

#reviews .meta {
    font-size: 0.9em;
}

#reviews .woocommerce-review__author {
    font-weight: 600;
    color: var(--primary-color);
}

#reviews .woocommerce-review__published-date {
    color: #999;
}

#reviews .star-rating {
    float: right;
}

#review_form_wrapper {
    margin-top: 40px;
}

#review_form #respond {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
}

#review_form .comment-form-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ============== */
/* REVIEWS LAYOUT */
/* ============== */

#reviews .woocommerce-Reviews-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.reviews-summary-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    margin-bottom: 3rem;
}

.overall-rating-box,
.rating-breakdown-box {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--cream-bg);
}

.overall-rating-box h4,
.rating-breakdown-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.overall-rating-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    line-height: 1;
}

.overall-rating-box .star-rating {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    justify-content: center;
    color: var(--secondary-color);
}

.total-reviews-count {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-bars {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rating-bars li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-bars .star-label {
    flex-shrink: 0;
    width: 60px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bar-container {
    flex-grow: 1;
    height: 10px;
    background-color: var(--border-light);
    border-radius: 5px;
    overflow: hidden;
}

.bar-container .bar {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

.rating-bars .count {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    width: 20px;
    text-align: right;
}

#comments .commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
}

#comments li.comment {
    background-color: #fff;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

#comments .comment_container {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

#comments .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#comments .comment-text {
    flex-grow: 1;
    padding: 0;
    border: none;
}

#comments .comment-text .meta {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#comments .woocommerce-review__author {
    font-weight: 700;
    color: var(--primary-color);
}

#comments .star-rating {
    float: right;
    color: var(--secondary-color);
}

#comments .woocommerce-review__published-date {
    float: right;
    font-size: 0.9rem;
    color: #888;
    margin-right: 1em;
    /* This adds the requested space */
    line-height: 1.8;
    /* Helps with vertical alignment */
}

#comments .comment-text .description {
    clear: both;
    padding-top: 0.5rem;
    color: #555;
    line-height: 1.6;
}

/* Review Form */
#review_form_wrapper {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

#review_form #reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

#review_form .comment-form-rating {
    margin-bottom: 1rem;
}

#review_form .comment-form input[type="text"],
#review_form .comment-form input[type="email"],
#review_form .comment-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    background-color: #f9f9f9;
    color: var(--primary-color);
}

#review_form .form-submit .submit {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#review_form .form-submit .submit:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .reviews-summary-container {
        grid-template-columns: 1fr;
    }

    #comments li.comment,
    #comments .comment_container {
        flex-direction: column;
    }
}

/* Review Form - Star Rating Input */
#review_form .comment-form-rating {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#review_form .comment-form-rating label {
    margin: 0;
}

#review_form p.stars {
    display: inline-block;
    margin: 0;
    padding: 0;
    border: none;
}

#review_form p.stars span {
    display: flex;
}

#review_form p.stars a {
    text-decoration: none;
    font-size: 0;
    /* Hide the original numbers */
    color: #d1d5db;
    /* Default empty star color */
    transition: color 0.2s ease-in-out;
    position: relative;
    width: 28px;
    height: 28px;
}

#review_form p.stars a::before {
    content: '★';
    font-size: 28px;
    position: absolute;
    top: 0;
    left: 0;
}

#review_form p.stars a.hover,
#review_form p.stars a.selected {
    color: var(--secondary-color);
    outline: none;
}

/* Fix for light text on light background in product tabs */
.woocommerce-tabs .panel {
    color: var(--primary-color);
}

.woocommerce-tabs .panel p,
.woocommerce-tabs .panel label {
    color: var(--primary-color);
}

/* ======================= */
/* General Star Rating Styles */
/* ======================= */

.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.6em;
    line-height: 1.6;
    font-size: 1em;
    /* Base size for stars */
    width: 5.5em;
    vertical-align: middle;
}

.star-rating::before {
    content: "★★★★★";
    color: #d1d5db;
    /* Empty stars */
    position: absolute;
    top: 0;
    left: 0;
    letter-spacing: 0.1em;
}

.star-rating span {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
    /* This hides the "Rated X out of 5" text */
    color: transparent;
    font-size: 0;
}

.star-rating span::before {
    content: "★★★★★";
    color: var(--secondary-color);
    /* Filled stars */
    position: absolute;
    top: 0;
    left: 0;
    letter-spacing: 0.1em;
    /* This makes the stars visible again */
    font-size: 1rem;
}

/* Link to reviews */
.woocommerce-product-rating {
    display: flex;
    align-items: center;
}

.woocommerce-product-rating .woocommerce-review-link {
    margin-left: 0.75em;
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.woocommerce-product-rating .woocommerce-review-link:hover {
    color: var(--primary-color);
}

/* Newsletter Widget (Sidebar) */
.newsletter-input {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid var(--secondary-color) !important;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Checkout Page Styles */
.checkout-page-container {
    max-width: var(--max-width, 1400px);
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 80px;
    /* Account for fixed header */
}

.checkout-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.checkout-main-column {
    background-color: var(--background, #fff);
    padding: 2rem;
    border-radius: var(--border-radius, 12px);
    box-shadow: var(--shadow-light);
}

.checkout-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
}

.checkout-desc {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.checkout-form-wrapper {
    margin-bottom: 2rem;
}

/* WooCommerce Form Fields */
.woocommerce form.checkout .form-row input.input-text,
.woocommerce form.checkout .form-row textarea,
.woocommerce form.checkout .form-row select {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid var(--secondary-color);
    color: #fff;
    border-radius: var(--border-radius, 12px);
    padding: 15px 20px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.woocommerce form.checkout .form-row input.input-text:focus,
.woocommerce form.checkout .form-row textarea:focus,
.woocommerce form.checkout .form-row select:focus {
    border-color: var(--secondary-color);
    background: rgba(253, 226, 141, 0.08);
    outline: none;
}

.woocommerce form.checkout .form-row label {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.woocommerce form.checkout .form-row input::placeholder,
.woocommerce form.checkout .form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.woocommerce form.checkout .form-row {
    margin-bottom: 1.5rem;
}

.woocommerce form.checkout .button,
.woocommerce form.checkout input[type="submit"] {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(253, 226, 141, 0.1);
}

.woocommerce form.checkout .button:hover,
.woocommerce form.checkout input[type="submit"]:hover {
    background: #fff;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Order Summary Card */
.checkout-summary-column .summary-card {
    background-color: var(--cream-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-light);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.order-review-section {
    margin-top: 1.5rem;
}

/* WooCommerce Order Review Table */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    color: #fff;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-checkout-review-order-table th {
    text-align: left;
    font-weight: normal;
    color: #e0e0e0;
}

.woocommerce-checkout-review-order-table td {
    text-align: right;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.25rem;
    color: var(--secondary-color);
    border-bottom: none;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-layout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary-column {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {

    .checkout-main-column,
    .checkout-summary-column .summary-card {
        padding: 1rem;
    }

    .checkout-title {
        font-size: 1.3rem;
    }

    .summary-title {
        font-size: 1.1rem;
    }
}

/* Improved Checkout Page Contrast */
.checkout-main-column {
    background-color: #fff;
    color: #222;
}

.checkout-title,
.checkout-desc,
.woocommerce form.checkout .form-row label {
    color: #251746;
}

.checkout-form-wrapper {
    color: #222;
}

.checkout-summary-column .summary-card {
    background-color: #f9fafb;
    color: #251746;
    box-shadow: var(--shadow-light);
}

.summary-title {
    color: #251746;
}

.order-review-section {
    color: #251746;
}

.woocommerce-checkout-review-order-table {
    background: transparent;
    color: #251746;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    color: #251746;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}

.woocommerce-checkout-review-order-table th {
    color: #6b7280;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    color: #fde28d;
    background: #251746;
    font-weight: 700;
}

.woocommerce form.checkout .form-row input.input-text,
.woocommerce form.checkout .form-row textarea,
.woocommerce form.checkout .form-row select {
    background: #fff;
    color: #251746;
    border: 1.5px solid #d1d5db;
}

.woocommerce form.checkout .form-row input.input-text:focus,
.woocommerce form.checkout .form-row textarea:focus,
.woocommerce form.checkout .form-row select:focus {
    border-color: #fde28d;
    background: #f9fafb;
}

.woocommerce form.checkout .form-row input::placeholder,
.woocommerce form.checkout .form-row textarea::placeholder {
    color: #b0a9c6;
}

.woocommerce form.checkout .button,
.woocommerce form.checkout input[type="submit"] {
    background: #fde28d;
    color: #251746;
}

.woocommerce form.checkout .button:hover,
.woocommerce form.checkout input[type="submit"]:hover {
    background: #251746;
    color: #fde28d;
}

@media (max-width: 768px) {

    .checkout-main-column,
    .checkout-summary-column .summary-card {
        background: #fff;
        color: #251746;
    }
}

/* Luxury Order Summary Table Styles */
.woocommerce-checkout-review-order-table {
    background: #fff;
    color: #251746;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    overflow: hidden;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    color: #251746;
    border-bottom: 1px solid #ece6f6;
    background: #fff;
    padding: 1.1rem 1.5rem;
    vertical-align: middle;
    font-weight: 500;
}

.woocommerce-checkout-review-order-table th {
    color: #b0a9c6;
    font-size: 1rem;
    font-weight: 600;
    background: #fff;
    letter-spacing: 0.01em;
}

.woocommerce-checkout-review-order-table td {
    text-align: right;
    font-size: 1.05rem;
}

.woocommerce-checkout-review-order-table .product-name {
    text-align: left;
    font-weight: 600;
    color: #251746;
}

.woocommerce-checkout-review-order-table .product-quantity {
    font-weight: 700;
    color: #251746;
    margin-right: 0.5em;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    background: #251746;
    color: #fde28d;
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: none;
    letter-spacing: 0.01em;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.woocommerce-checkout-review-order-table .order-total th {
    text-align: left;
}

.woocommerce-checkout-review-order-table .order-total td {
    text-align: right;
}

.woocommerce-checkout-review-order-table tfoot tr:not(.order-total) th,
.woocommerce-checkout-review-order-table tfoot tr:not(.order-total) td {
    background: #f9fafb;
    color: #251746;
    font-weight: 600;
}

.woocommerce-checkout-review-order-table tr:last-child td,
.woocommerce-checkout-review-order-table tr:last-child th {
    border-bottom: none;
}

/* Remove WooCommerce default backgrounds */
.woocommerce-checkout-review-order-table .cart_item {
    background: #fff !important;
}

/* Responsive for mobile */
@media (max-width: 600px) {

    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td {
        padding: 0.7rem 0.5rem;
        font-size: 0.98rem;
    }

    .woocommerce-checkout-review-order-table .order-total th,
    .woocommerce-checkout-review-order-table .order-total td {
        font-size: 1.05rem;
    }
}

/* Fix WooCommerce checkout textarea (order notes) */
.woocommerce form.checkout .form-row textarea {
    width: 100%;
    min-height: 90px;
    max-width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: var(--border-radius, 12px);
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #251746;
    resize: vertical;
    box-sizing: border-box;
    margin-bottom: 1rem;
}

.woocommerce form.checkout .form-row textarea::placeholder {
    color: #b0a9c6;
    opacity: 1;
}

/* WooCommerce Checkout Error Styling */
.woocommerce-error,
.woocommerce-error li,
.woocommerce .woocommerce-error {
    background: #fff0f0;
    color: #d32f2f !important;
    border: 1.5px solid #d32f2f;
    border-radius: 10px;
    padding: 18px 24px;
    margin-bottom: 24px;
    font-size: 1.08rem;
    font-weight: 600;
    list-style: none;
    box-shadow: 0 2px 12px rgba(211, 47, 47, 0.07);
}

.woocommerce-error a {
    color: #b71c1c !important;
    text-decoration: underline;
    font-weight: 700;
}

.woocommerce-error li {
    margin-bottom: 8px;
}

.hero-title {
    color: var(--secondary-color) !important;
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--cream-bg) 100%);
    border-top: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-medium);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-consent-banner.cookie-consent-visible {
    transform: translateY(0);
}

.cookie-consent-banner.cookie-consent-hiding {
    transform: translateY(100%);
}

.cookie-consent-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent-text h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.cookie-consent-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 500px;
}

.cookie-consent-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.cookie-consent-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.cookie-consent-links a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.cookie-consent-reject {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-light);
}

.cookie-consent-reject:hover {
    background: var(--border-light);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.cookie-consent-accept {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d56a 100%);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.cookie-consent-accept:hover {
    background: linear-gradient(135deg, #f4d56a 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .cookie-consent-text p {
        max-width: 100%;
    }

    .cookie-consent-links {
        justify-content: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 1.25rem 1rem;
    }

    .cookie-consent-text h3 {
        font-size: 1.1rem;
    }

    .cookie-consent-text p {
        font-size: 0.9rem;
    }

    .cookie-consent-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-consent-btn {
        max-width: 100%;
        width: 100%;
    }
}

/* Animation Enhancements */
.cookie-consent-banner {
    animation: slideInFromBottom 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookie-consent-banner {
        border-top-width: 3px;
    }

    .cookie-consent-btn {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    .cookie-consent-banner,
    .cookie-consent-btn {
        transition: none;
        animation: none;
    }

    .cookie-consent-banner.cookie-consent-visible,
    .cookie-consent-banner.cookie-consent-hiding {
        transform: none;
    }
}

/* Cookie Preferences Panel Styles */
.cookie-preferences {
    position: relative;
    margin: 1rem 0;
}

.cookie-preferences-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.cookie-preferences-btn:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background: rgba(253, 226, 141, 0.1);
}

.cookie-preferences-panel {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: var(--cream-bg);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    min-width: 350px;
}

.cookie-preferences-panel h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    position: relative;
    width: 50px;
    height: 24px;
    background: var(--border-light);
    border-radius: 12px;
    margin-right: 1rem;
    transition: var(--transition);
}

.toggle-slider:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input[type="checkbox"]:checked+.toggle-slider {
    background: var(--secondary-color);
}

.cookie-toggle input[type="checkbox"]:checked+.toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input[type="checkbox"]:disabled+.toggle-slider {
    background: var(--text-muted);
    opacity: 0.6;
}

.toggle-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.cookie-description {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-left: 3.5rem;
}

.cookie-preferences-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-save-btn,
.cookie-reset-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-save-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.cookie-save-btn:hover {
    background: #f4d56a;
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.cookie-reset-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.cookie-reset-btn:hover {
    background: var(--border-light);
    color: var(--text-light);
}

/* Mobile Responsive for Cookie Preferences */
@media (max-width: 768px) {
    .cookie-preferences-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        min-width: auto;
        max-height: 80vh;
        overflow-y: auto;
    }

    .cookie-preferences-actions {
        flex-direction: column;
    }

    .cookie-save-btn,
    .cookie-reset-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* Cookie Message Notifications */
.cookie-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--cream-bg);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-medium);
    z-index: 10000;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 300px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.cookie-message.show {
    transform: translateX(0);
    opacity: 1;
}

.cookie-message-success {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.cookie-message-error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.cookie-message-warning {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

/* Mobile Responsive for Cookie Messages */
@media (max-width: 768px) {
    .cookie-message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100%);
    }

    .cookie-message.show {
        transform: translateY(0);
    }
}

/* Cookie Preferences Panel Styles */

/* Our Story Section Styles */
.our-story-section {
    background-color: var(--primary-color);
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.story-header {
    margin-bottom: 3rem;
}

.story-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.title-underline {
    width: 80px;
    height: 2px;
    background-color: var(--text-light);
    margin: 0 auto;
    opacity: 0.6;
}

.story-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workshop-image {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.story-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block p {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.story-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-box {
    border: 2px solid var(--text-light);
    border-radius: var(--border-radius);
    padding: 2rem 3rem;
    background-color: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.cta-box:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
    letter-spacing: 0.05em;
}

.cta-subtext {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    margin: 0;
    letter-spacing: 0.02em;
}

/* Mobile Responsive for Our Story Section */
@media (max-width: 768px) {
    .our-story-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .story-content {
        padding: 0 1rem;
    }

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

    .story-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .cta-box {
        padding: 1.5rem 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-subtext {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 2rem;
    }

    .text-block p {
        font-size: 1rem;
    }

    .cta-box {
        padding: 1rem 1.5rem;
    }
}

/* ========================================
   MY ACCOUNT PAGE STYLES - MODERN FLAT DESIGN
   ======================================== */

/* My Account Page Container */
.my-account-page-container {
    max-width: var(--max-width, 1400px);
    margin: 0 auto;
    padding: 0 1rem;
    margin-top: 80px; /* Account for fixed header */
}

/* Hide duplicate page title */
.my-account-page-container h1:first-of-type {
    display: none;
}

/* Hero Section */
.my-account-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a1a4f 100%);
    padding: 3rem 0 2rem 0;
    text-align: center;
    margin-bottom: 2rem;
    border-radius: var(--border-radius, 12px);
    position: relative;
    overflow: hidden;
}

.my-account-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(253,226,141,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(253,226,141,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(253,226,141,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(253,226,141,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(253,226,141,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.my-account-hero-content {
    position: relative;
    z-index: 2;
}

.my-account-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.my-account-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
}

.woocommerce-Address{
    h2{
        color:black;
    }
}
.account-content-wrapper{
    p,address{
        color:black;
    }
}

/* Layout Grid */
.my-account-layout {
    display: grid !important;
    grid-template-columns: 280px 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
    margin-top: 2rem !important;
}

/* Sidebar Navigation */
.my-account-sidebar {
    background: #ffffff !important;
    border-radius: var(--border-radius, 12px) !important;
    box-shadow: var(--shadow-light) !important;
    padding: 0 !important;
    position: sticky !important;
    top: 100px !important;
    width: 280px !important;
    flex-shrink: 0 !important;
}

.my-account-navigation {
    padding: 0;
}

.account-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-menu-item {
    margin: 0;
    border-bottom: 1px solid #f5f5f5;
}

.account-menu-item:last-child {
    border-bottom: none;
}

.account-menu-item.is-active {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f5e67a 100%);
}

.account-menu-item.is-active .account-menu-link {
    color: var(--primary-color);
    font-weight: 600;
}

.account-menu-item.is-active .menu-icon svg {
    stroke: var(--primary-color);
}

.account-menu-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.account-menu-link:hover {
    background: rgba(253, 226, 141, 0.1);
    color: var(--primary-color);
    transform: translateX(4px);
}

.account-menu-link:hover .menu-icon svg {
    stroke: var(--secondary-color);
    transform: scale(1.1);
}

.menu-icon {
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-icon svg {
    stroke: var(--text-secondary, #6B7280);
    transition: all 0.3s ease;
}

.menu-label {
    flex: 1;
}

/* Main Content Area */
.my-account-content {
    background: #ffffff;
    border-radius: var(--border-radius, 12px);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.account-content-wrapper {
    padding: 2rem;
}

/* Form Styling */
.woocommerce-account .woocommerce-form,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
    max-width: none;
}

.woocommerce-account .woocommerce-form-row {
    margin-bottom: 1.5rem;
}

.woocommerce-account .woocommerce-form-row label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-account .woocommerce-form-row input.input-text,
.woocommerce-account .woocommerce-form-row textarea,
.woocommerce-account .woocommerce-form-row select {
    width: 100%;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.woocommerce-account .woocommerce-form-row input.input-text:focus,
.woocommerce-account .woocommerce-form-row textarea:focus,
.woocommerce-account .woocommerce-form-row select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(253, 226, 141, 0.2);
    outline: none;
    background: rgba(253, 226, 141, 0.05);
}

.woocommerce-account .woocommerce-form-row input.input-text::placeholder,
.woocommerce-account .woocommerce-form-row textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Button Styling */
.woocommerce-account .woocommerce-form-row .woocommerce-Button,
.woocommerce-account .woocommerce-form-row .button {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f5e67a 100%);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 140px;
}

.woocommerce-account .woocommerce-form-row .woocommerce-Button:hover,
.woocommerce-account .woocommerce-form-row .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 226, 141, 0.4);
    background: linear-gradient(135deg, #f5e67a 0%, var(--secondary-color) 100%);
}

.woocommerce-account .woocommerce-form-row .woocommerce-Button:active,
.woocommerce-account .woocommerce-form-row .button:active {
    transform: translateY(0);
}

/* Section Headings */
.woocommerce-account h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

/* Orders Table */
.woocommerce-account .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-orders-table th {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-account .woocommerce-orders-table td {
    padding: 1rem;
    border-bottom: 1px solid #f5f5f5;
    color: var(--primary-color);
}

.woocommerce-account .woocommerce-orders-table tr:hover td {
    background: rgba(253, 226, 141, 0.05);
}

/* Order Status Badges */
.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status {
    text-align: center;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark {
    background: none;
    color: inherit;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.completed {
    background: #10b981;
    color: #ffffff;
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.processing {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.woocommerce-account .woocommerce-orders-table .woocommerce-orders-table__cell-order-status mark.pending {
    background: #f59e0b;
    color: #ffffff;
}

/* Address Section */
.woocommerce-account .woocommerce-address-fields {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.woocommerce-account .woocommerce-address-fields h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Password Change Section */
.woocommerce-account .woocommerce-form-row--wide {
    margin-bottom: 2rem;
}

.woocommerce-account .woocommerce-form-row--wide:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .my-account-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .my-account-sidebar {
        position: static;
        order: 2;
    }
    
    .my-account-content {
        order: 1;
    }
    
    .my-account-title {
        font-size: 2rem;
    }
    
    .account-content-wrapper {
        padding: 1.5rem;
    }
    
    .account-menu-link {
        padding: 1rem 1.25rem;
    }
    
    .woocommerce-account .woocommerce-orders-table {
        font-size: 0.85rem;
    }
    
    .woocommerce-account .woocommerce-orders-table th,
    .woocommerce-account .woocommerce-orders-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .my-account-page-container {
        padding: 0 0.5rem;
    }
    
    .my-account-hero {
        padding: 2rem 0 1.5rem 0;
        margin-bottom: 1rem;
    }
    
    .my-account-title {
        font-size: 1.75rem;
    }
    
    .account-content-wrapper {
        padding: 1rem;
    }
    
    .woocommerce-account .woocommerce-form-row input.input-text,
    .woocommerce-account .woocommerce-form-row textarea,
    .woocommerce-account .woocommerce-form-row select {
        padding: 0.75rem;
    }
}

/* Loading States */
.woocommerce-account .woocommerce-form-row.loading input,
.woocommerce-account .woocommerce-form-row.loading textarea,
.woocommerce-account .woocommerce-form-row.loading select {
    opacity: 0.6;
    pointer-events: none;
}

.woocommerce-account .woocommerce-form-row.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 20px;
    height: 20px;
    border: 2px solid var(--secondary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translateY(-50%);
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Success/Error Messages */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
}

.woocommerce-account .woocommerce-message {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: #10b981;
    color: #065f46;
}

.woocommerce-account .woocommerce-error {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
    color: #991b1b;
}

.woocommerce-account .woocommerce-info {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    color: #1e40af;
}