:root { --primary: #064e3b; --gold: #d4af37; --white: #fff; --gray: #f8fafc; --text: #333; }
* { margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI', sans-serif; }
body { background: var(--gray); color: var(--text); line-height:1.6; }
a { text-decoration: none; color:inherit; }

.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.text-center { text-align: center; }
.gold-text { color: var(--gold); }
.text-white { color: var(--white); }
.section-light { background: var(--white); padding: 80px 0; }
.section-dark { background: var(--primary); padding: 80px 0; color:var(--white); }
.divider-gold { height: 3px; width: 60px; background: var(--gold); margin: 0 auto 30px; }

/* NAV */
.navbar { background: var(--white); padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.nav-links { list-style: none; display: flex; gap: 20px; }

/* HERO */
.hero { background: linear-gradient(rgba(6,78,59,0.9), rgba(6,78,59,0.95)); color: var(--white); padding: 120px 20px; text-align: center; }
.hero h1 { font-size: 3rem; margin-bottom: 20px; font-family:'Georgia', serif; }
.btn-gold { background: var(--gold); color: #000; padding: 12px 30px; font-weight: 700; display: inline-block; margin-top: 20px; border-radius:4px; }

/* PRODUCTS */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.product-card { background: var(--white); border-radius: 8px; overflow: hidden; color:var(--text); transition:0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.img-wrapper { height: 250px; background: #eee; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.p-details { padding: 20px; text-align: center; }
.category { font-size: 0.8rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.price { font-size: 1.4rem; font-weight: 700; color: var(--primary); margin: 10px 0; }
.btn-buy { border: 1px solid var(--primary); padding: 8px 15px; border-radius: 4px; color: var(--primary); font-weight:600; font-size:0.9rem; }
.btn-buy:hover { background: var(--primary); color: var(--white); }

/* DETAIL PAGE */
.detail-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top:30px; }
.btn-gold-solid { background: var(--primary); color: var(--white); padding: 15px; border: none; font-size: 1.1rem; cursor: pointer; border-radius: 4px; display:block; text-align:center; width:100%; margin-top:20px; }
.features-list { list-style:none; margin:20px 0; }
.features-list li { margin-bottom:10px; color:#555; }
.features-list i { color:var(--gold); margin-right:10px; }

/* FOOTER */
.footer { background: #022c22; color: rgba(255,255,255,0.6); padding: 40px 0; font-size: 0.9rem; margin-top: auto; }
.legal-links a { margin: 0 10px; }

/* MOBILE */
@media(max-width:768px) { 
    .detail-wrapper { grid-template-columns: 1fr; } 
    .hero h1 { font-size: 2rem; }
}
