:root {
    --boutique-beige: #F5F2ED;   /* Primary Background */
    --boutique-stone: #D9D1C7;   /* Secondary / Accents */
    --boutique-charcoal: #2A2A2A; /* Text & Primary Buttons */
    --boutique-gold: #B59A7D;    /* Subtle Highlights */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--boutique-beige);
    color: var(--boutique-charcoal);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.serif { font-family: 'Playfair Display', serif; }
.navbar {
            background: rgba(245, 242, 237, 0.9) !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 20px 0;
        }
        .nav-link {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--boutique-charcoal) !important;
            font-weight: 600;
            margin: 0 15px;
        }
        .navbar-brand {
            letter-spacing: 4px;
            text-transform: uppercase;
        }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- CART DRAWER FIXES --- */
#cartDrawer {
    z-index: 1060 !important; /* Higher than fixed navbar */
    opacity: 1 !important;    /* Ensure it is not see-through */
    transition: transform 0.3s ease-in-out;
}

.offcanvas-backdrop {
    z-index: 1055 !important;
}

/* Ensure the drawer background is solid */
.offcanvas.offcanvas-end {
    background-color: #F9F7F2 !important; /* Using your --zen-oat variable */
}
/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--boutique-charcoal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-full {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
}