        :root {
            --yellow: #FFD45A;
            --overlay: rgba(138, 118, 80, 0.7);
            --black: #000000;
            --white: #ffffff;
            --gray: #f4f4f4;
            --radius: 50px;
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            font-family: "Quicksand", sans-serif; 
            background: var(--white); 
            color: var(--black);
            overflow-x: hidden;
        }

        /* --- UTILS --- */
        .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
        .pill-btn { 
            padding: 12px 28px; 
            border-radius: var(--radius); 
            font-weight: 600; 
            cursor: pointer; 
            transition: var(--transition);
            border: 1px solid transparent;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .btn-black { background: var(--black); color: var(--white); }
        .btn-black:hover { background: var(--yellow); color: var(--black); }
        .btn-outline { background: var(--white); border-color: var(--black); color: var(--black); }
        .btn-outline:hover { background: var(--black); color: var(--white); }
        .btn-yellow { background: var(--yellow); color: var(--black); border: none; }

        /* --- MARQUEE --- */
        .marquee-container {
            background: var(--black);
            color: var(--yellow);
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- HEADER --- */
        header {
            background: var(--white);
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 60px;
        }
.logo {
    cursor: pointer;
    display: inline-block;
}

.logo img {
    height: 120px; /* adjust to fit your header */
    width: auto;
    display: block;
}        .header-right { display: flex; align-items: center; gap: 20px; }
        
        .search-box {
            display: flex; align-items: center; background: var(--gray);
            padding: 8px 20px; border-radius: 30px;
        }
        .search-box input {
            border: none; background: transparent; outline: none; font-family: inherit;
            padding-left: 10px; width: 150px; transition: width 0.3s;
        }
        .search-box input:focus { width: 250px; }

        /* --- MENU DROPDOWN --- */
        .menu-wrapper { position: relative; }
        #main-menu {
            position: absolute; top: 120%; right: 0; width: 280px;
            background: var(--white); box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 20px; padding: 20px; display: none; flex-direction: column; gap: 10px;
        }
        #main-menu.active { display: flex; animation: slideDown 0.3s ease; }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
        .menu-item { 
            padding: 12px 20px; border-radius: 12px; transition: 0.3s; 
            cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center;
        }
        .menu-item:hover { background: var(--gray); color: var(--yellow); }
        .submenu { padding-left: 20px; display: none; flex-direction: column; gap: 5px; margin-top: 5px; }
        .menu-item.has-sub:hover .submenu { display: flex; }

        /* --- HERO SECTIONS --- */
        .hero {
            height: 90vh;
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero-content {
            z-index: 10;
            padding-left: 10%;
            max-width: 600px;
        }
        .hero h1 { font-size: 5rem; line-height: 0.9; margin-bottom: 20px; font-weight: 800; }
        .hero p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.8; }
.floating-card {
    position: absolute;
    bottom: 80px;
    right: 10%;

    display: flex;
    align-items: center;

    background: transparent;
    backdrop-filter: blur(10px);

    width: 420px;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Image takes full left side */
.floating-card img{
    width: 105%;
    height: 100%;
    object-fit: cover;
}

/* Right text area */
.card-text{
    padding: 15px;
}

.card-text h4{
    margin:0;
    font-size:1.1rem;
}

.card-text .price{
    font-weight:700;
    margin:5px 0;
    color:#666;
}

.card-text a{
    color:var(--black);
    font-weight:700;
    text-decoration:none;
}

@keyframes float {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(-20px); }
}
        /* --- PRODUCT GRIDS --- */
        .section-padding { padding: 120px 0; }
        .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 60px; position: relative; }
        .section-title::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 60px; height: 5px; background: var(--yellow); }

        .product-grid {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 40px;
        }
        .product-card {
            background: var(--white); border-radius: 30px; overflow: hidden;
            transition: var(--transition); border: 1px solid #eee; position: relative;
        }
        .product-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
        .product-img-box { height: 350px; background: #f9f9f9; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 20px; }
        .product-img-box img { width: 100%; transition: 0.5s; }
        .product-card:hover .product-img-box img { transform: scale(1.1) rotate(-5deg); }
        
        .product-info { padding: 30px; }
        .product-price { font-size: 1.4rem; font-weight: 800; margin: 10px 0; }
        
        .quick-view-btn {
            position: absolute; top: 20px; right: 20px; background: white;
            width: 45px; height: 45px; border-radius: 50%; display: flex;
            align-items: center; justify-content: center; cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s;
        }
        .quick-view-btn:hover { background: var(--yellow); }

        /* --- COLLECTION CARDS --- */
        .collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .collection-card {
            height: 600px; border-radius: 40px; overflow: hidden; position: relative;
            display: flex; align-items: flex-end; padding: 50px; cursor: pointer;
        }
        .collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: 1s; }
        .collection-card:hover img { transform: scale(1.1); }
        .collection-card h3 { position: relative; z-index: 5; color: white; font-size: 2.5rem; font-weight: 800; }
        .collection-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }

        /* --- SUSTAINABILITY --- */
        .overlay-box {
            background: var(--overlay); backdrop-filter: blur(10px);
            padding: 80px; border-radius: 40px; color: white; max-width: 500px;
            margin-left: auto; margin-right: 10%;
        }

        /* --- MODALS --- */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 5000;
            display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal-content {
            background: white; width: 100%; max-width: 1000px; border-radius: 40px;
            display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; position: relative;
        }
        .modal-close { position: absolute; top: 30px; right: 30px; cursor: pointer; z-index: 10; }

        /* --- CART & AUTH --- */
        #cart-sidebar {
            position: fixed; right: -400px; top: 0; width: 400px; height: 100%;
            background: white; z-index: 6000; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: -20px 0 50px rgba(0,0,0,0.1); padding: 40px; display: flex; flex-direction: column;
        }
        #cart-sidebar.active { right: 0; }
        .cart-item { display: flex; gap: 20px; margin-bottom: 25px; align-items: center; }
        .cart-item img { width: 80px; height: 80px; border-radius: 15px; object-fit: cover; }

        /* --- PAGES --- */
        .page { display: none; animation: fadeIn 0.5s ease; }
        .page.active { display: block; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* --- FOOTER --- */
        footer { background: var(--black); color: var(--white); padding: 100px 0 50px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; }
        .footer-col h4 { color: var(--yellow); margin-bottom: 30px; font-size: 1.2rem; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; opacity: 0.6; cursor: pointer; transition: 0.3s; }
        .footer-col li:hover { opacity: 1; color: var(--yellow); }
        .newsletter input {
            background: #222; border: none; padding: 15px 20px; border-radius: 30px; color: white; width: 100%; margin-bottom: 15px;
        }
.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.popup-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 350px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}
        /* SEARCH RESULTS */
        #search-results-section { display: none; padding: 100px 0; }
