:root {
    --primary-green: #1B5E20;
    --luxury-gold: #D4AF37;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #E0C15A 100%);
    --white: #FFFFFF;
    --soft-cream: #F8F8F5;
    --dark-text: #1F2933;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--soft-cream);
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    display: block;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    box-sizing: border-box;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.navbar-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.premium-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .premium-container, .navbar-container {
        padding: 0 1.5rem;
    }
}

.nav-links {
    display: flex;
    gap: 3rem;
}


.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--luxury-gold);
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    border: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    background-color: var(--soft-cream);
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
    padding-right: 5%;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--primary-green);
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--dark-text);
    opacity: 0.7;
    max-width: 500px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-visual img {
    max-width: 120%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Glassmorphism Product Card */
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: contain;
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 600;
}

.product-category {
    font-size: 0.85rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Boutique Grid */
.boutique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    padding: 0;
}

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 8rem 0 4rem;
}


/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
