:root {
    --olive: #556b2f;
    --dark-olive: #3b4d1d;
    --gold: #d4af37;
    --cream: #f5f5dc;
    --white: #ffffff;
    --text: #4a4a4a;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Top Bar */
.top-bar { background-color: var(--olive); color: var(--white); text-align: center; padding: 8px 0; font-size: 0.9rem; letter-spacing: 1px; }

/* Header */
.rustic-header { background-color: var(--white); padding: 25px 0; border-bottom: 1px solid #e0e0d0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.03); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; color: var(--text); letter-spacing: 2px; }
.gold { color: var(--gold); }

.rustic-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.rustic-nav a { font-size: 0.95rem; text-transform: uppercase; color: var(--text); font-weight: bold; letter-spacing: 1px; }
.rustic-nav a:hover, .rustic-nav a.active { color: var(--olive); }

.btn-olive { border: 2px solid var(--olive); color: var(--olive) !important; padding: 10px 25px; border-radius: 0; transition: 0.3s; }
.btn-olive:hover { background-color: var(--olive); color: var(--white) !important; }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-family: var(--font-serif); font-size: 1.2rem; cursor: pointer; color: var(--olive); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 1px solid #dcdcdc; }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #f0f0f0; color: var(--text); font-family: var(--font-serif); }

/* Hero */
.hero-olive {
    height: 600px; background-size: cover; background-position: center; position: relative;
}
.hero-overlay {
    width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; text-align: center;
}
.hero-content { background: rgba(255, 255, 255, 0.9); padding: 50px; max-width: 700px; border: 1px solid var(--gold); }
.script-text { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-size: 1.5rem; margin-bottom: 10px; display: block; }
.hero-content h1 { font-family: var(--font-serif); font-size: 3rem; color: var(--olive); line-height: 1.1; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 30px; color: #555; }

.btn-gold-fill { background-color: var(--gold); color: var(--white); padding: 15px 40px; display: inline-block; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }
.btn-gold-fill:hover { background-color: #b89628; }

/* Product Grid */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--olive); letter-spacing: 2px; }
.olive-branch { font-size: 1.5rem; color: var(--gold); margin-top: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.product-card { background: var(--white); border: 1px solid #e0e0e0; transition: 0.3s; position: relative; text-align: center; padding-bottom: 20px; }
.product-card:hover { box-shadow: 0 10px 30px rgba(85, 107, 47, 0.1); border-color: var(--gold); }
.badge { position: absolute; top: 10px; left: 10px; background: var(--olive); color: var(--white); padding: 5px 10px; font-size: 0.8rem; font-weight: bold; }
.p-img img { width: 100%; height: 300px; object-fit: cover; }
.p-info { padding: 20px; }
.p-info h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 5px; color: var(--text); }
.price { display: block; font-size: 1.2rem; font-weight: bold; color: var(--gold); margin: 15px 0; }
.add-btn { background: transparent; border: 1px solid var(--text); padding: 10px 30px; cursor: pointer; transition: 0.3s; }
.add-btn:hover { background: var(--text); color: var(--white); }

/* About */
.about-grid { display: flex; gap: 50px; align-items: center; }
.about-text h2 { font-family: var(--font-serif); font-size: 2.2rem; color: var(--olive); margin-bottom: 20px; }
.line-gold { width: 60px; height: 3px; background-color: var(--gold); margin-bottom: 25px; }
.features { list-style: none; margin-top: 20px; }
.features li { margin-bottom: 10px; font-family: var(--font-serif); font-size: 1.1rem; color: var(--dark-olive); }
.about-img img { width: 100%; border: 10px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.page-title { background-color: var(--olive); color: var(--white); padding: 60px 0; text-align: center; }
.page-title h1 { font-family: var(--font-serif); font-size: 3rem; }

/* Reviews */
.review-layout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 40px; border-top: 5px solid var(--gold); text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.stars { color: var(--gold); margin-bottom: 15px; }
.review-card p { font-style: italic; color: #666; margin-bottom: 20px; }
.author { font-weight: bold; color: var(--olive); font-family: var(--font-serif); }

/* Contact Form */
.contact-form-wrapper { display: flex; background: var(--white); border: 1px solid #ddd; }
.info-side { flex: 1; background-color: var(--olive); color: var(--white); padding: 50px; }
.info-side h2 { font-family: var(--font-serif); margin-bottom: 20px; color: var(--gold); }
.address-box { margin-top: 40px; }
.address-box p { margin-bottom: 10px; }

.rustic-form { flex: 1.5; padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--text); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background-color: var(--cream); font-family: var(--font-sans); }
.submit-btn { width: 100%; background-color: var(--gold); color: var(--white); border: none; padding: 15px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.submit-btn:hover { background-color: var(--olive); }

/* Policy */
.policy-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid #eee; }
.policy-content h1 { font-family: var(--font-serif); color: var(--olive); margin-bottom: 30px; text-align: center; }
.policy-content h3 { color: var(--gold); margin-top: 30px; margin-bottom: 10px; }

/* Footer */
.rustic-footer { background-color: var(--text); color: var(--cream); padding: 60px 0 20px; text-align: center; margin-top: auto; }
.f-logo { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 20px; color: var(--gold); }
.f-links a { color: var(--white); margin: 0 15px; }
.f-links a:hover { color: var(--gold); }
.copyright { margin-top: 30px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
    .rustic-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-content { padding: 30px; }
    .hero-content h1 { font-size: 2.5rem; }
    .product-grid, .about-grid, .review-layout, .contact-form-wrapper { grid-template-columns: 1fr; flex-direction: column; }
}