        /* --- 1. CSS VARIABLES & RESET --- */
        :root {
            --bg-dark: var(--bg);
            --bg-darker: var(--primary-text);
            --bg-light: var(--accent);
            --bg-white: var(--text-light);

            --accent-yellow: var(--primary);
            /* Vibrant Amber/Gold from image */
            --accent-yellow-hover: var(--primary);

            --text-main: var(--text-dark);
            --text-light: var(--text-light);
            --text-muted: var(--muted);

            --font-head: var(--title-font);
            --font-body: var(--font-family);

            --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .terms-conditions {
            margin-top: 80px;
            text-align: left;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-light);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-head);
            text-transform: uppercase;
            line-height: 1.1;
            font-weight: 700;
        }

        h1 {
            font-size: 4.5rem;
            letter-spacing: 2px;
        }

        h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        p {
            color: var(--text-muted);
            line-height: 1.6;
        }

        img {
            width: 100%;
            display: block;
            object-fit: cover;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-padding {
            padding: 100px 0;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            padding: 15px 40px;
            font-family: var(--font-head);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: var(--transition);
        }

        .btn-yellow {
            background: var(--accent-yellow);
            color: var(--bg-dark);
            border-radius: 4px;
        }

        .btn-yellow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--bg-dark);
            z-index: -1;
            transition: var(--transition);
        }

        .btn-yellow:hover {
            color: var(--accent-yellow);
        }

        .btn-yellow:hover::after {
            width: 100%;
        }

        .btn-dark {
            background: var(--bg-dark);
            color: white;
            border-radius: 4px;
        }

        .btn-dark:hover {
            background: var(--accent-yellow);
            color: var(--bg-dark);
        }


        /* --- 3. HERO SECTION (Split Layout) --- */
        .hero {
            display: flex;
            position: relative;
            background: var(--bg-dark);
            overflow: hidden;
        }

        /* Left Side (Dark/Text) */
        .hero-left {
            width: 40%;
            padding: 150px 50px 50px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--bg-dark);
            position: relative;
            z-index: 2;
        }

        /* Angled Divider */
        .hero-left::after {
            content: '';
            position: absolute;
            top: 0;
            right: -100px;
            width: 200px;
            height: 100%;
            background: var(--bg-dark);
            transform: skewX(-15deg);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 5;
            color: white;
        }

        .hero-tag {
            color: var(--accent-yellow);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 20px;
            display: block;
        }

        .hero-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            margin-bottom: 40px;
            max-width: 400px;
        }

        /* Right Side (Carousel Images) */
        .hero-right {
            width: 60%;
            position: relative;
            background: none;
            /* Clipping for the diagonal overlap */
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            /* Overlap */
            z-index: 1;
            min-height: 800px;
            max-height: 100vh;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg);
            /* Slight grey for product contrast */
        }

        .carousel-slide.active {
            opacity: 1;
        }

        /* Product Image Styling */
        .carousel-slide img {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            object-fit: cover;
            filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.3));
            transform: scale(0.9);
            transition: transform 1s ease;
        }

        .carousel-slide.active img {
            transform: scale(1);
        }

        .slide-dots {
            position: absolute;
            bottom: 40px;
            right: 60px;
            display: flex;
            gap: 15px;
            z-index: 10;
        }

        .dot {
            width: 12px;
            height: 12px;
            border: 2px solid var(--text-main);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background: var(--text-main);
        }

        /* --- 4. FEATURED PRODUCTS (6 Grid) --- */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header span {
            color: var(--accent-yellow);
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
            text-align: center;
            box-shadow: var(--shadow-card);
            border-bottom: 3px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--accent-yellow);
        }

        .prod-img-wrap {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            background: radial-gradient(circle, #f9f9f9 0%, transparent 70%);
        }

        .prod-img-wrap img {
            max-height: 100%;
            max-width: 80%;
            transition: 0.4s;
        }

        .product-card:hover .prod-img-wrap img {
            transform: scale(1.1);
        }

        .product-card h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }

        .product-card p {
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .price {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-main);
            display: block;
            margin-bottom: 15px;
        }

        .btn-icon {
            width: 40px;
            height: 40px;
            background: var(--bg-dark);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
            align-content: center;
        }

        .btn-icon:hover {
            background: var(--accent-yellow);
            color: black;
        }

        /* --- 5. BEST SELLER (Dark Band) --- */
        .best-seller {
            background: var(--bg-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        /* Yellow angled background accent */
        .best-seller::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 500px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
            transform: skewX(-20deg);
            pointer-events: none;
        }

        .bs-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
        }

        .bs-image img {
            max-width: 80%;
            margin: 0 auto;
            filter: drop-shadow(0 0 40px rgba(255, 193, 7, 0.2));
            animation: float 4s ease-in-out infinite;
        }

        .bs-content h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .bs-content .highlight {
            color: var(--accent-yellow);
        }

        .bs-content p {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .spec-item h4 {
            font-size: 2rem;
            color: var(--accent-yellow);
            margin-bottom: 5px;
        }

        .spec-item span {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: #888;
            letter-spacing: 1px;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        /* --- 6. ABOUT US --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 25px;
        }

        .about-list {
            list-style: none;
            margin-top: 30px;
        }

        .about-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-weight: 600;
            color: var(--text-main);
        }

        .about-list i {
            color: var(--accent-yellow);
            background: var(--bg-dark);
            padding: 8px;
            border-radius: 50%;
            font-size: 0.8rem;
        }

        .about-img {
            position: relative;
        }

        .about-img img {
            border-radius: 4px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .about-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: var(--accent-yellow);
            padding: 30px;
            font-family: var(--font-head);
            font-weight: 700;
            font-size: 1.5rem;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* --- 7. CONTACT (Minimal Form) --- */
        .contact-section {
            background: white;
            border-top: 1px solid #eee;
        }

        .contact-container {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-form {
            margin-top: 50px;
            text-align: left;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .input-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .form-input {
            width: 100%;
            padding: 15px;
            background: var(--bg-light);
            border: 1px solid #e0e0e0;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: 0.3s;
        }

        .form-input:focus {
            border-color: var(--accent-yellow);
            background: white;
            outline: none;
        }

        textarea.form-input {
            min-height: 150px;
            resize: none;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                height: auto;
                width: 100vw;
                margin-left: -1rem;
            }

            .hero-left,
            .hero-right {
                width: 100%;
                margin: 0;
                clip-path: none;
            }

            .hero-left {
                padding: 120px 30px 60px;
                text-align: center;
            }

            .hero-left::after {
                display: none;
            }

            .hero-right {
                height: 50vh;
            }

            .hero-content p {
                margin: 0 auto 30px;
            }

            .nav-links {
                display: none;
            }

            .bs-container,
            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .bs-image {
                order: -1;
                text-align: center;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
        }

        /*************************************************
************************************************
***********************************************
*********** STABLE CSS STARTS FROM HERE **************
*****************************************************
*************************************************
***********************************************
*************************************************
***************************************************




/*****************************************
*************CART*************************
***************************************/
        /* BACKDROP */
        #cart-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            opacity: 0;
            pointer-events: none;
            transition: 0.3s ease;
            z-index: 1000;
        }

        /* SIDEBAR – now appears from the RIGHT */
        #cart-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: 50%;
            max-width: 500px;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            transform: translateX(100%);
            transition: 0.3s ease;
            padding: 20px;
            overflow-y: auto;
            z-index: 1001;
            /*extra*/
            background: var(--accent);
        }

        @media (max-width: 768px) {
            #cart-sidebar {
                width: 80%;
            }

            h1 {
                font-size: 3.5rem;
                letter-spacing: 2px;
            }
        }

        /* CLOSE BUTTON */
        .close-btn {
            font-size: 28px;
            background: none;
            border: none;
            cursor: pointer;
            float: right;
            color: var(--accent);
        }

        /* FORM */
        #cart-form input,
        #cart-form textarea {
            width: 100%;
            padding: 8px;
            margin: 5px 0 15px;
            border: 1px solid var(--text-dark);
            background: none;
            border-radius: 0px;
        }

        /* TABLE */
        .cart-table {
            width: 100%;
            border-collapse: collapse;
        }

        .cart-table th {
            text-align: left;
            padding: 10px 5px;
            border-bottom: 1px solid var(--primary);
            font-size: 14px;
        }

        .cart-table td {
            padding: 12px 5px;
            border-bottom: 1px solid var(--text-dark);
            /* Horizontal separators */
            vertical-align: middle;
        }

        /* Images */
        .prod-img img {
            width: 60px;
            border-radius: 5px;
        }

        /* Delete button */
        .prod-del i {
            cursor: pointer;
            color: #e63946;
        }

        /* SHIPMENT BOX */
        .shipment {
            padding: 15px 0;
            margin-top: 15px;
        }

        /* BOTTOM ROW */
        .bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            gap: 1rem;
        }

        /* CHECKOUT BUTTON */
        .checkout-btn {
            padding: 10px 18px;
            background: var(--accent);
            color: var(--accent-text);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            width: 10rem;
            font-size: 15px;
            justify-content: center;
            border-radius: 25px;
        }

        .preview-item {
            position: relative;
            display: inline-block;
            margin: 6px;
        }

        .preview-item img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border-radius: 6px;
            border: 1px solid var(--muted);
        }

        /*************************************
************ HEADER ****************
***************************************
****************************************
/* --- 2. Header Styles --- */
        .header {

            padding: 20px 0;
            background: linear-gradient(171deg, var(--bg) 43%, transparent 211%);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;

        }

        .logo {
            max-width: 100px;
            max-height: 50px;
            margin-top: 5px;
        }

        .logo img {
            width: 100%;
            max-height: 45px;
            object-fit: contain;
        }

        @keyframes shake {
            0% {
                transform: translateX(0);
            }

            20% {
                transform: translateX(-3px);
            }

            40% {
                transform: translateX(3px);
            }

            60% {
                transform: translateX(-3px);
            }

            80% {
                transform: translateX(3px);
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Hover shake */
        #add-to-cart:hover i {
            animation: shake 0.5s;
            filter: grayscale(0.4);
        }

        /* Click shake */
        #add-to-cart:active i {
            animation: shake 0.3s;
        }

        /* Desktop Navigation */
        .nav-desktop {
            display: none;
        }

        .nav-link {
            padding: 0.5rem;
            border-radius: 0.5rem;
            transition: color 0.15s;
            color: var(--text-light);
            border: none;
            background: none;
            font-family: var(--title-font);
            font-size: 16px;
            font-weight: 200;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        /* Dropdown */
        .dropdown-wrapper {
            position: relative;
            /* Make sure the hover effect covers both button and content area */
            padding-bottom: 0.5rem;
            /* Extend hover area downwards */
            margin-bottom: -0.5rem;
            /* Counteract the padding-bottom to keep layout tight */
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: 40;
            width: 192px;
            box-shadow: 0 10px 15px rgb(0 0 0 / 25%);
            background-color: var(--bg);
            color: var(--text-light);
            overflow: hidden;
            /* border: 1px solid #e5e7eb; */
            transform: translateY(-5px);
        }

        .dropdown-wrapper:hover .dropdown-content {
            display: block;
        }

        .dropdown-item {
            display: block;
            padding: 0.7rem 1.2rem;
            transition: background-color 0.15s;
            font-size: 14px;
        }

        .dropdown-item:hover {
            background-color: var(--primary);
            color: var(--primary-text);
        }

        /* Cart Icon */
        .cart-icon-wrapper {
            position: relative;
            padding: 0.1rem;
            transition: 0.5s;
        }

        .cart-icon-wrapper:hover {
            background-color: rgba(0, 0, 0, 0.067);
            border-radius: 100px;
            /* Gray-700 */
        }


        #template-alert {
            position: fixed;
            top: -60px;
            /* start hidden above screen */
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: var(--accent-text);
            padding: 15px 25px;
            box-shadow: 0 14px 10px rgba(0, 0, 0, 0.453);
            font-size: 14px;
            z-index: 9999;
            transition: top 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .cart-count {
            position: absolute;
            top: 0px;
            right: -3px;
            display: flex;
            height: 20px;
            width: 20px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: var(--primary);
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--primary-text);
            transition: all 0.2s;
            line-height: 1;
        }

        #add-to-cart {
            color: var(--accent);
        }

        /* --- 3. Mobile Menu (Off-Canvas) --- */

        /* Initial state */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 256px;
            color: var(--text-light);
            background: var(--bg);
            box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
            z-index: 50;
            transition: transform 0.3s ease-in-out;
            transform: translateX(-100%);
            /* color: var(--text-light); */

        }

        .m-menu-container {
            background: linear-gradient(45deg, var(--bg), #74747445);
            padding: 1.5rem;
            height: 100%;
        }

        .mobile-menu-open {
            transform: translateX(0);
        }

        .mobile-menu-link {
            display: block;
            padding: 0.75rem;
            margin-bottom: 0.25rem;
            /* border-radius: 0.5rem; */
            transition: background-color 0.15s;
            color: var(--text-light);
        }

        .mobile-menu-link:hover {
            background-color: var(--primary);
            color: var(--primary-text);
        }

        /* Dropdown content (hidden by default) */
        .dropdown-content-mobile {
            display: none;
            flex-direction: column;
            margin-left: 1rem;
            animation: fadeIn 0.25s ease;
        }

        /* Smooth animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-4px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* When active */
        .dropdown-content-mobile.active {
            display: flex;
        }

        .close-button {
            color: var(--text-dark);
            transition: color 0.15s;
        }

        .close-button:hover {
            color: var(--primary-color);
        }

        /* Backdrop */
        .backdrop {
            position: fixed;
            inset: 0;
            background-color: #000;
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 40;
            display: none;
        }

        .backdrop-visible {
            display: block;
            opacity: 0.5;
        }

        @media (min-width: 768px) {

            /* Desktop Layout */
            .burger-button {
                display: none;
            }



            .nav-desktop {
                display: flex;
                gap: 2rem;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 2fr;

                /* Adjust grid for wider screens */
            }

            .header {
                backdrop-filter: blur(10px);
            }
        }


        /*///////////////////////////////
///////// SCROLLBAR /////////////
//////////////////////////////////
////////////////////////////////
/* Chrome, Edge, Safari */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: rgba(131, 131, 131, 0.318);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background-color: var(--primary);
            border-radius: 10px;
            transition: 0.3s;
        }

        *::-webkit-scrollbar-button,
        *::-webkit-scrollbar-button:single-button,
        *::-webkit-scrollbar-button:single-button:horizontal,
        *::-webkit-scrollbar-button:single-button:vertical,
        *::-webkit-scrollbar-button:decrement,
        *::-webkit-scrollbar-button:increment,
        *::-webkit-scrollbar-button:start,
        *::-webkit-scrollbar-button:end {
            display: none !important;
            width: 0 !important;
            height: 0 !important;
            background: transparent !important;
            border: none !important;
        }

        /**********FOOTER*******************
*************************************
**********************************/
        /* --- 5. Footer Styles --- */
        .footer {
            background: var(--bg);
            padding-top: 2.5rem;
            padding-bottom: 2.5rem;
            color: var(--muted);
            font-size: smaller;
        }

        .footer-container {
            max-width: 980px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #555;
        }

        .footer-heading {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
            list-style: none;

        }

        .footer-links a {
            opacity: 0.9;
            transition: 0.3s;

        }

        .footer-links a:hover {
            color: var(--primary);
            opacity: 1;
            padding-left: 5px;
        }



        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .newsletter-input {
            padding: 0.75rem;
            width: 100%;
            box-sizing: border-box;
            outline: none;
            background: none;
            border: 1px solid var(--accent);
            color: var(--text-light);
        }


        .newsletter-input:focus,
        .newsletter-input:hover {
            border-color: var(--primary);
        }

        .footer-bottom {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
        }

        .footer-bottom p {
            color: var(--muted) !important;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            color: var(--primary);
            font-size: 1.25rem;
            transition: color 0.2s;
            opacity: 0.7;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        /* --- 6. Media Queries (Mobile to Desktop) --- */

        @media (min-width: 640px) {
            .newsletter-form {
                flex-direction: row;
                gap: 0.5rem;
            }

            .newsletter-input {
                flex-grow: 1;
            }

            .newsletter-button {
                width: auto;
            }

            .footer-bottom {
                flex-direction: row;
                margin-top: 0px;
                padding-top: 0px;
            }

            .social-links {
                margin-top: 0;
            }
        }

        @media (min-width: 768px) {

            /* Desktop Layout */
            .burger-button {
                display: none;
            }

            .nav-desktop {
                display: flex;
                gap: 2rem;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 2fr 1fr 2fr;
                /* Adjust grid for wider screens */
            }
        }

        /* Footer */
        .footer {
            padding: 40px 20px 20px;
        }

        .footer-container {
            display: grid;
            gap: 20px;
        }

        .footer-container h4 {
            margin-bottom: 10px;
        }

        .footer-bottom {
            text-align: center;
            color: var(--muted);
        }

        /*contact stats*/
        .contact-stats {
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: 20px;
            font-size: smaller;
            padding: 20px 0;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 200;
            font-size: 12px;
            min-width: 26%;
        }

        .stat-item .icon {
            font-size: 1.2em;
            color: var(--accent);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        @media (max-width: 768px) {
            .contact-stats {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }

            .section-padding {
                padding: 50px 15px;
                box-sizing: border-box;
            }

        }



        /**********************************************************
******************SHOP PAGE*****************************
***********************************************************
**********************************************************/
        .page {
            padding: 2rem 2rem 2rem 2rem;
            margin-top: 80px;
        }

        .top-bar {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 18px;
        }

        .search-wrap {
            flex: 1 1 auto;
            display: flex;
            gap: 8px;
        }

        .search-input,
        textarea {
            width: 100%;
            padding: 15px 10px;
            outline: none;
            font-size: 1em;
            background-color: var(--text-light);
            color: var(--text-dark);
            font-family: var(--title-font);
        }

        .search-input {
            border-radius: 5px;
        }

        input:hover,
        .search-input:hover,
        textarea:hover {
            border-color: var(--primary);
        }

        input:focus,
        .search-input:focus,
        textarea:focus {
            border-color: var(--primary);
        }

        /* Layout: sidebar + content */
        .main-grid {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: var(--gap);
            align-items: start;
        }

        /* Sidebar (filters) */

        .filters-overlay {
            position: fixed;
            /* cover the entire viewport */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.35);
            /* semi-transparent black */
            z-index: 1500;
            /* behind the sidebar which is z-index 2000 */
            display: none;
            /* hidden by default */
            transition: opacity 0.3s ease;
            cursor: pointer;
        }

        .filters-overlay.show {
            display: block;
            /* visible when sidebar is open */
            opacity: 1;
        }

        .sidebar {
            padding: 18px;
            position: sticky;
            top: 24px;
            height: fit-content;
            border: 1px solid var(--text-light);
            border-radius: 9px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            background-color: var(--text-light);
        }

        .color.selected {
            outline: 2px solid var(--primary);
            /* optional highlight */
        }

        .size.selected {
            background: var(--primary);
            color: var(--primary-text);
            border-color: var(--accent);
        }

        .burger-button {
            color: var(--primary) !important;
        }

        .sidebar h3 {
            margin: 0 0 18px 0;
            /* font-size: 1.05rem; */
            background-color: var(--primary);
            padding: 0.6rem;
            color: var(--primary-text);
            font-family: var(--title-font);
            font-weight: 200;
            border-radius: 5px;
            text-align: center;
            box-shadow: 2px 18px 23px #3b3b3b2a;
        }

        #closeFiltersBtn {
            visibility: hidden;
        }

        .filter-section {
            margin-bottom: 16px;
        }

        .color.active {
            transform: scale(1.08);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            border-color: rgba(0, 0, 0, 0.35);
        }

        .size.active {
            background: var(--primary);
            color: var(--primary-text);
            border-color: var(--accent);
        }

        .checkbox-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
            flex-wrap: nowrap;
            align-content: flex-start;
            align-items: flex-start;
        }

        .checkbox-list span {
            text-align: left;
            min-width: 222px;
        }

        .checkbox-list label {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 0.95rem;
            cursor: pointer;
        }

        .price-range {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .price-range input[type="range"] {
            width: 100%;
            accent-color: var(--primary);
            padding: 0px;
            cursor: pointer;
        }


        /* Update background on input */

        .price-values {
            display: flex;
            gap: 8px;
            justify-content: space-between;
            font-size: 0.85rem;
            margin-top: 6px;
            color: var(--muted);
        }

        .clear-filters {
            display: inline-block;
            margin-top: 6px;
            padding: 8px 12px;
            background: var(--primary);
            cursor: pointer;
            font-weight: 100;
            font-size: 0.9rem;
        }

        /* Product area */
        .products-area {
            min-height: 400px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(182px, 1fr));
            gap: 16px;

        }

        /* Product card (your original with small tweaks) */
        .product-card {
            overflow: hidden;
            gap: 8px;
            transition: 0.2s ease;
        }

        .shop-products {
            min-width: 0 !important;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 18px;
            flex-wrap: wrap;
        }

        .page-btn {
            padding: 8px 12px;
            border: 1px solid var(--text-dark);
            background: none;
            cursor: pointer;
            color: var(--text-dark);
        }

        .page-btn.active {
            background: var(--primary);
            color: var(--primary-text);
            border-color: var(--primary);
        }

        /* Empty state */
        .empty {
            text-align: center;
            color: var(--muted);
            padding: 60px 12px;
            background: none;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        input[type="checkbox"] {
            accent-color: var(--accent);
            /* simplest modern way */
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 920px) {
            .main-grid {
                grid-template-columns: 260px 1fr;
            }
        }

        @media (max-width: 720px) {
            .main-grid {
                grid-template-columns: 1fr;
            }

            .page {
                padding: 0.5rem 0.5rem 0.5rem 0.5rem;
            }

            .sidebar {
                position: fixed;
                top: 0;
                left: -100%;
                /* hidden initially */
                height: 100%;
                width: 300px;
                /* adjust if needed */
                max-width: 90%;
                padding: 18px;
                border: none;
                box-shadow: var(--shadow);
                overflow-y: auto;
                z-index: 2000;
                transition: left 0.3s ease;
            }

            .sidebar.open {
                left: 0;
            }

            .filters-toggle {
                display: inline-flex !important;
                /* show button */
            }

            .filters-overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.35);
                z-index: 1500;
                display: none;
            }

            .filters-overlay.show {
                display: block;
            }

            #closeFiltersBtn {
                display: block;
                /* always visible on mobile */
            }

            .shop-products {
                font-size: small;
            }



            .shop-btn {
                font-size: 9px !important;
                padding: 0.6rem 0.6rem !important;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .sidedesk {
                display: none;
            }

            .filters-toggle {
                display: inline-flex;
            }
        }

        /* small niceties */
        .muted {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .filters-toggle {
            display: none;
            background: var(--primary);
            color: var(--primary-text);
            border: none;
            padding: 17px 14px;
            /* border-radius: 10px; */
            cursor: pointer;
            height: 100%;
            border-radius: 5px;
        }

        .colors {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .color {
            width: 30px;
            height: 30px;
            /* border-radius: 50%; */
            cursor: pointer;
            border: 1px solid var(--text-dark);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border-radius: 5px;
            outline: 1px solid var(--primary);

        }

        .color:hover {
            outline: 2px solid var(--primary);

        }

        .sizes {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .size {
            padding: 8px 14px;
            border: 1px solid var(--primary);
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            border-radius: 5px;
        }

        .sidebar h1,
        h2,
        h3,
        h4 {
            margin-bottom: 0.5em;
        }

        .size:hover {
            background: var(--primary);
            color: var(--primary-text);
            border-color: var(--primary);
        }

        @media (max-width: 480px) {
            .properties {
                max-width: 95%;
                padding: 0px;
            }

            .category-tab {
                font-size: 11px;
            }

            .product-card-footer {

                padding: 8px !important;
            }

            .product-card-footer .btn {
                font-size: 8px !important;
            }

            .shop-btn {
                font-size: 10px !important;
                min-width: 30px !important;
            }

        }

        .shop-products {
            text-align: center;
            position: relative;
            white-space: normal;
            display: flex;
            flex-direction: column;
            opacity: 1;
            padding: 0 !important;
            transition: 0.2s ease-in;
            background: none;
            border: 1px solid var(--glass-border);
            border-radius: 6px;
            border: 1px solid var(--text-light);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .shop-products h4 {
            padding-left: 10px;
            padding-right: 10px;
        }

        .shop-products:hover {
            box-shadow: var(--shadow-float);
        }

        .shop-products .product-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13px;
            position: absolute;
            bottom: 0;
            width: 100%;
        }

        .product-discount-badge {
            position: absolute;
            top: 0;
            right: 0;
            background-color: var(--bg);
            color: var(--text-light);
            padding: 5px 10px;
            font-size: 0.8em;
            font-weight: bold;
            border-radius: 0px 0px 0px 5px;
        }

        .shop-products p {
            font-size: 0.7em;
            color: var(--muted);
            margin-bottom: 53px;
            padding: 0px 24px;
        }




        .shop-btn {
            display: inline-block;
            padding: 5px 10px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            color: var(--bg-dark);
            font-family: var(--font-head);
            letter-spacing: 2px;
            font-size: 1rem;
            border: none;
            position: relative;
            z-index: 1;
            min-width: 99px;
            overflow: hidden;
            transition: var(--transition);
            background: var(--accent-yellow);
            color: var(--bg-dark);
            border-radius: 4px;
        }

        .shop-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--bg-dark);
            z-index: -1;
            transition: var(--transition);
        }

        .shop-btn:hover {
            color: var(--accent-yellow);
        }

        .shop-btn:hover::after {
            width: 100%;
        }


        .shop-products .product-card-image {
            height: 200px;
            /*margin-bottom: 10px;*/
            display: flex;
            justify-content: center;
            align-items: center;
            /*extra*/
            padding: 1rem;
        }

        .shop-products .product-card-image img {
            height: 100%;
            width: 100%;
            object-fit: contain;
            /*extra*/
            border-radius: 20px;
        }

        .shop-products .product-price {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 17px;
        }

        .shop-products .btn-paint {
            padding: 8px;
            font-size: 13px;
            background: var(--accent);
        }

        main::before {

            content: '';
            position: absolute;
            top: 50%;
            left: -10%;
            width: 50%;
            height: 80%;
            background: var(--primary-orange);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            z-index: -1;
            opacity: 0.05;

        }


        @media (max-width: 768px) {
            main {
                padding: 1rem;
            }
        }

        /*====================================
=======================================
ONE PRODUCT PAGE
===================================
==================================== */
        .related-products-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(250px, 2fr));
            gap: 20px;
        }


        .single-product {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            /*extra*/
        }

        .product-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            border: 1px solid var(--text-light);
            padding: 20px;
            background: none;
            flex-direction: row;
            /*extra */
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            border-color: var(--text-light);
            margin-top: 80px;

        }

        /* GALLERY */
        .product-gallery {
            flex: 1 1 400px;
        }

        .main-image {
            background: none;
            /* border-radius: 8px; */
            padding: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 15px;
            border-radius: 8px;
            width: 100%;
        }

        .main-image img {
            max-width: 100%;
            min-height: 350px;
            object-fit: contain;
            border-radius: 5px;
        }

        .thumbnails {
            display: flex;
            gap: 10px;
            justify-content: center;
        }

        .thumbnails img {
            width: 90px;
            height: 90px;
            object-fit: cover;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .thumbnails img:hover {
            border-color: var(--accent);
            transform: scale(1.05);
        }

        /* DETAILS */
        .product-details {
            flex: 1 1 400px;
        }

        .product-title {
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .product-category {
            font-size: 0.9rem;
            color: var(--muted);
            margin-bottom: 10px;
        }

        .product-category i {
            margin-right: 6px;
            color: var(--accent);
        }

        .product-description {
            color: var(--muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .product-info p {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .product-info i {
            margin-right: 6px;
            color: var(--primary);
            width: 22px;
        }

        .product-price {
            font-weight: 700;
            color: var(--text-dark);
            font-size: 17px;
        }

        .in-stock {
            color: var(--accent);
            font-weight: 400;
            font-size: 14px;
        }

        /* PROPERTIES */
        .properties {
            margin-top: 1.5rem;
        }

        /* QUANTITY */
        .quantity-section {
            margin-top: 1.5rem;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 8px;
        }

        .qty-btn {
            background-color: var(--accent);
            color: var(--accent-text);
            border: none;
            width: 35px;
            height: 35px;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.2s ease;
            /*extra*/
            border-radius: 5px;
        }

        .qty-btn:hover {
            background-color: var(--primary);
        }

        #quantity {
            width: 60px;
            text-align: center;
            padding: 9px;
            font-size: 1rem;
        }

        /* BUTTON */
        .btn-add-to-cart {
            margin-top: 1.5rem;
            background-color: var(--primary);
            color: var(--primary-text);
            padding: 20px 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            border: 1px solid var(--primary);
            transition: all 0.3s ease;
            /*extra*/
            border-radius: 15px;

        }

        .btn-add-to-cart:hover {
            background-color: var(--bg);
            transform: scale(1.03);
            color: var(--primary);
        }

        .prop-title {
            font-weight: 100;
            font-size: 12px;
            margin-top: 10px;
        }

        .sec-title {
            font-family: var(--title-font);
            margin-top: 40px;
            font-weight: bold;
            font-size: 1.5rem;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
                padding: 15px;
            }

            .footer-grid .product-gallery,
            .product-details {
                flex: 1 1 100%;
            }

            .thumbnails img {
                width: 70px;
                height: 70px;
            }

            .related-products-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(140px, 2fr));
                gap: 20px;
            }
        }

        input {
            background: var(--bg-light);
            border: 1px solid var(--text-light);
            color: var(--text-dark);
        }

        input:hover,
        input:focus {
            background: none;
            outline: none;
            border-color: var(--primary);
        }

        #langSwitcher {
            color: var(--text-light);
            border-color: var(--primary);
        }

        #langSwitcher:hover {
            color: var(--text-dark);
        }