   :root {
            --peach: #ffffff;
            --maroon: #612D53;
            --blackish: #2D1A27;
            --white: #FFFFFF;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: 'Bellota', cursive;
            background-color: var(--peach);
            color: var(--maroon);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Typography */
        h1, h2, h3 { font-weight: 700; }
        h1 { font-size: 3.5rem; line-height: 1.1; }
        p { font-weight: 400; margin-bottom: 1rem; }
        .italic { font-style: italic; }

        /* Marquee Header */
        .marquee-container {
            background-color: var(--maroon);
            color: var(--peach);
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            position: sticky;
            top: 0;
            z-index: 1100;
        }
        .marquee-text {
            display: inline-block;
            animation: marquee 20s linear infinite;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Navigation */
        header {
            background: var(--white);
            padding: 20px 5%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 40px;
            z-index: 1000;
        }
        .logo { font-size: 1.8rem; font-weight: 700; cursor: pointer; color: var(--maroon); text-decoration: none; }
        nav { display: flex; gap: 30px; }
        nav a { text-decoration: none; color: var(--maroon); font-weight: 700; transition: var(--transition); font-size: 1.1rem; }
        nav a:hover, nav a.active { transform: scale(1.1); text-decoration: underline; }
        
        .header-icons { display: flex; gap: 20px; align-items: center; }
        .icon-btn { background: none; border: none; cursor: pointer; color: var(--maroon); position: relative; }

        /* Page System */
        .page { display: none; animation: pageFade 0.5s ease-out forwards; min-height: 80vh; }
        .page.active { display: block; }
        @keyframes pageFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Hero Section */
        .hero-banner { text-align: center; padding: 40px 20px; color: #612D53; margin-bottom: 40px; font-weight: 900; }
        .hero-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; padding: 0 5%; align-items: center; margin-bottom: 80px; }
        .hero-image-container { position: relative; border-radius: 30px; overflow: hidden; box-shadow: 20px 20px 0 var(--maroon); }
        .hero-image-container img { width: 100%; display: block; transition: transform 2s ease; }
        .hero-image-container:hover img { transform: scale(1.05); }

        .btn {
            padding: 15px 35px; border: 2px solid var(--maroon); background: transparent;
            color: var(--maroon); font-family: inherit; font-weight: 700; cursor: pointer;
            border-radius: 50px; transition: var(--transition); text-transform: uppercase;
        }
        .btn:hover { background: var(--maroon); color: var(--peach); transform: translateY(-5px); box-shadow: 0 10px 20px rgba(97, 45, 83, 0.2); }

        /* Products Grid */
        .section-title { text-align: center; margin: 60px 0 40px; font-size: 2.5rem; }
        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 0 5%; margin-bottom: 80px; }
        .product-card {
            background: var(--white); border-radius: 20px; padding: 20px;
            transition: var(--transition); text-align: center; position: relative;
            border: 2px solid transparent;
        }
        .product-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(97, 45, 83, 0.15); border-color: var(--maroon); }
        .product-card img { width: 100%; border-radius: 15px; margin-bottom: 15px; height: 250px; object-fit: cover; }
        
        /* Favorites Horizontal Scroll */
        .favorites-section { background: var(--maroon); color: var(--peach); padding: 80px 0; }
        .fav-scroll { display: flex; overflow-x: auto; gap: 30px; padding: 20px 5%; scrollbar-width: none; }
        .fav-item { flex: 0 0 200px; text-align: center; }
        .fav-item img { width: 150px; height: 150px; border-radius: 50%; border: 4px solid var(--peach); background: white; margin-bottom: 15px; }

        /* Form Styling */
        .auth-container { max-width: 450px; margin: 100px auto; background: var(--white); padding: 50px; border-radius: 30px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
        .form-group { margin-bottom: 25px; }
        .form-group label { display: block; margin-bottom: 8px; font-weight: 700; }
        .form-group input { width: 100%; padding: 15px; border-radius: 10px; border: 2px solid var(--peach); font-family: inherit; }
        .form-group input:focus { border-color: var(--maroon); outline: none; }

        /* Quick View Modal */
        .modal {
            position: fixed; inset: 0; background: rgba(97, 45, 83, 0.8); backdrop-filter: blur(5px);
            z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px;
        }
        .modal-content {
            background: var(--peach); width: 100%; max-width: 900px; border-radius: 30px;
            display: grid; grid-template-columns: 1fr 1.5fr; overflow: hidden; position: relative;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }
        .modal-body { padding: 40px; color: var(--maroon); }
        .close-modal { position: absolute; top: 20px; right: 20px; background: none; border: none; cursor: pointer; }

        /* Footer */
        footer { background: var(--maroon); color: var(--peach); padding: 80px 5% 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; border-bottom: 1px solid rgba(232, 209, 197, 0.2); padding-bottom: 40px; }
        .footer-col h4 { margin-bottom: 25px; font-size: 1.2rem; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; }
        .footer-col a { color: var(--peach); text-decoration: none; opacity: 0.8; transition: 0.3s; }
        .footer-col a:hover { opacity: 1; padding-left: 5px; }

        /* Responsive */
        @media (max-width: 900px) {
            .hero-split, .modal-content { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            h1 { font-size: 2.5rem; }
        }
        #modal-view .modal-container {
    max-height: 90vh;
    width: 80%;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
}

#modal-view .modal-content {
    overflow-y: auto;
    padding: 30px;
}
/* Base Header Styles */
nav {
    display: flex;
    gap: 20px;
}

.nav-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: black;
}

.header-icons {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hamburger Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        display: none;
        gap: 15px;
        padding: 15px 0;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

