:root{

            --bg-beige: #f7a644;
            --dark: #1C1C1C;
            --burnt-red: #C84B31;
            --muted-teal: #2F3E46;
            --orange: #E36414;
            --white: #FFFFFF;
            --site-padding: 6%;
            --transition-smooth: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        }

        /* --- GLOBAL RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-beige);
            color: var(--dark);
            font-family: 'Manrope', sans-serif;
            overflow-x: hidden;
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, .playfair { font-family: 'Playfair Display', serif; font-weight: 600; }
        p { font-weight: 300; font-size: 1.05rem; color: rgba(28, 28, 28, 0.85); }
        button { font-family: 'Manrope', sans-serif; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; border: none; transition: var(--transition-smooth); outline: none; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        /* --- ANIMATIONS --- */
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
        @keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

        /* --- HEADER --- */
        header {
            position: fixed; top: 0; left: 0; width: 100%;
            padding: 30px var(--site-padding);
            display: flex; justify-content: space-between; align-items: center;
            z-index: 2000; transition: var(--transition-smooth);
        }
        header.scrolled {
            background: rgba(246, 241, 235, 0.98);
            padding: 15px var(--site-padding);
            box-shadow: 0 10px 40px rgba(0,0,0,0.04);
            backdrop-filter: blur(10px);
        }
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
}

.logo svg {
    height: 45px;
}        .nav-icons { display: flex; gap: 25px; align-items: center; }

        .icon-btn { background: none; color: var(--dark); position: relative; }
        .cart-badge {
            position: absolute; top: -5px; right: -8px;
            background: var(--burnt-red); color: white;
            font-size: 0.65rem; padding: 2px 6px; border-radius: 10px;
        }

        /* --- SIDE NAV & CART SIDEBAR --- */
        .sidebar {
            position: fixed; top: 0; width: 450px; height: 100vh;
            background: var(--white); z-index: 3000; padding: 60px;
            transition: var(--transition-smooth); box-shadow: -20px 0 60px rgba(0,0,0,0.1);
            overflow-y: auto;
        }
        #sideNav { left: -450px; background: var(--dark); color: white; }
        #sideNav.active { left: 0; }
        #cartSidebar { right: -450px; }
        #cartSidebar.active { right: 0; }
        
        .sidebar-close { margin-bottom: 50px; cursor: pointer; display: inline-block; }
        .nav-links a { display: block; font-family: 'Playfair Display', serif; font-size: 2.8rem; margin-bottom: 20px; opacity: 0.5; }
        .nav-links a:hover { opacity: 1; padding-left: 15px; color: var(--orange); }
        .overlay-mask { 
            position: fixed; inset: 0; background: rgba(0,0,0,0.4); 
            display: none; z-index: 2500; backdrop-filter: blur(4px);
        }

        /* --- HERO --- */
        .hero { height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden; background: #000; }
        .hero-img { 
            position: absolute; inset: 0; background-size: cover; background-position: center;
            opacity: 0.7; animation: kenBurns 20s infinite alternate ease-in-out;
        }
        .hero-content { 
            position: relative; z-index: 10; padding-left: var(--site-padding); 
            color: var(--white); max-width: 900px; animation: fadeInUp 1.2s ease;
        }
        .hero h1 { font-size: 6.5rem; line-height: 0.9; margin-bottom: 30px; letter-spacing: -2px; }
        .btn-outline {
            padding: 20px 50px; border: 1.5px solid var(--white);
            background: transparent; color: var(--white); font-weight: 500;
        }
        .btn-outline:hover { background: var(--white); color: var(--dark); transform: scale(1.05); }

        /* --- SECTIONS --- */
        section { padding: 140px var(--site-padding); position: relative; }
        .section-dark { background-color: var(--dark); color: var(--white); }
        .section-white { background-color: var(--white); color: var(--dark); }
        .section-title { font-size: 4rem; margin-bottom: 80px; line-height: 1; }

        /* --- ASYMMETRICAL GRID --- */
        .asym-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 50px; }
        .asym-left { height: 850px; position: relative; overflow: hidden; cursor: pointer; }
        .asym-right { display: flex; flex-direction: column; gap: 50px; }
        .asym-item { position: relative; overflow: hidden; height: 400px; cursor: pointer; }
        .asym-item img, .asym-left img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .asym-item:hover img, .asym-left:hover img { transform: scale(1.08); }
        
        .asym-overlay {
            position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 40px; opacity: 0; transition: 0.4s; color: white;
        }
        .asym-item:hover .asym-overlay, .asym-left:hover .asym-overlay { opacity: 1; }

        /* --- SHOP / COLLECTION --- */
        .filter-bar { display: flex; gap: 40px; margin-bottom: 60px; border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 20px; }
        .filter-btn { background: none; text-transform: uppercase; font-size: 0.85rem; font-weight: 600; opacity: 0.4; }
        .filter-btn.active { opacity: 1; color: var(--burnt-red); border-bottom: 2px solid var(--burnt-red); padding-bottom: 18px; }

        .shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px 40px; }
        .art-card { position: relative; }
        .art-img-wrap { width: 100%; height: 500px; overflow: hidden; position: relative; background: #eee; }
        .art-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .art-card:hover .art-img-wrap img { transform: scale(1.05) rotate(1deg); }
        
        .art-info { padding-top: 25px; }
        .art-cat { font-size: 0.75rem; color: var(--burnt-red); margin-bottom: 8px; font-weight: 700; text-transform: uppercase; }
        .art-name { font-size: 1.5rem; margin-bottom: 5px; }
        .art-price { font-weight: 400; font-size: 1.1rem; opacity: 0.6; }

        .add-btn { 
            margin-top: 20px; width: 100%; padding: 18px; 
            border: 1px solid var(--dark); background: transparent; 
            color: var(--dark); font-weight: 600; font-size: 0.8rem;
        }
        .add-btn:hover { background: var(--burnt-red); border-color: var(--burnt-red); color: white; }

        /* --- MARQUEE --- */
        .marquee { background: var(--muted-teal); color: var(--white); padding: 35px 0; overflow: hidden; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marquee 25s linear infinite; }
        .marquee-text { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin: 0 50px; font-style: italic; }

        /* --- ARTIST SPOTLIGHT --- */
        .artist-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .artist-visual { position: relative; height: 750px; }
        .artist-visual img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); }

        /* --- CART UI --- */
        .cart-item { display: flex; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .cart-item img { width: 80px; height: 100px; object-fit: cover; }
        .cart-item-details { flex: 1; }
        .qty-controls { display: flex; align-items: center; gap: 15px; margin-top: 10px; }
        .qty-btn { background: #eee; width: 25px; height: 25px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
        .cart-total { margin-top: 40px; border-top: 2px solid var(--dark); padding-top: 20px; }

        /* --- QUICK VIEW --- */
        .modal { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 5000; display: none; align-items: center; justify-content: center; }
        .modal-inner { background: var(--bg-beige); width: 92%; max-width: 1300px; display: grid; grid-template-columns: 1fr 1.1fr; max-height: 90vh; animation: fadeInUp 0.5s ease; }
        .modal-body { padding: 70px; overflow-y: auto; position: relative; }

        /* --- AUTH --- */
        .auth-card { max-width: 550px; margin: 80px auto; background: var(--white); padding: 70px; box-shadow: 0 30px 60px rgba(0,0,0,0.05); }
        .input-group { margin-bottom: 25px; }
        .input-group label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 600; }
        .input-group input { width: 100%; padding: 18px; background: var(--bg-beige); border: none; font-size: 1rem; }
        .btn-filled { width: 100%; padding: 22px; background: var(--orange); color: white; font-weight: 700; transition: 0.4s; }
        .btn-filled:hover { background: var(--burnt-red); transform: translateY(-5px); }

        /* --- FOOTER --- */
        footer { background: var(--dark); color: white; padding: 120px var(--site-padding) 50px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 80px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 80px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 1.4rem; margin-bottom: 30px; color: var(--orange); }
        .footer-link { display: block; opacity: 0.5; margin-bottom: 12px; font-size: 0.95rem; }
        .footer-link:hover { opacity: 1; color: var(--white); padding-left: 5px; }

        /* --- MOBILE --- */
        @media (max-width: 100px) {
            .asym-grid, .shop-grid, .artist-block, .footer-grid, .modal-inner { grid-template-columns: 1fr; }
            .sidebar { width: 100%; }
            .hero h1 { font-size: 3.5rem; }
            .section-title { font-size: 2.8rem; }
            .modal-inner { max-height: 95vh; overflow-y: auto; }
            .modal-inner img { height: 400px; }
        }

        .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
    text-align: center;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    overflow-y: auto;
    padding: 80px 20px;
}

.modal-content {
    background: white;
    max-width: 800px;
    margin: auto;
    padding: 60px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 28px;
    cursor: pointer;
}

.modal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}
