
:root {
  --bg: #FFF8F3;
  --text: #4A3B32;
  --primary: #E8A5B0;
  --secondary: #D4A853;
  --font-head: 'Josefin Sans', sans-serif;
  --font-body: 'Nunito', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, .logo { font-family: var(--font-head); }
a { text-decoration: none; color: inherit; }
header { background: var(--bg); padding: 20px; border-bottom: 1px solid var(--secondary); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 24px; font-weight: bold; color: var(--primary); }
#main-nav a { margin: 0 15px; font-weight: 600; }
.btn-primary, .cart-btn { background: var(--primary); color: #FFF8F3; border: none; padding: 10px 20px; cursor: pointer; border-radius: 4px; font-family: var(--font-body); font-weight: bold; }
.btn-secondary { background: transparent; color: var(--primary); border: 1px solid var(--primary); padding: 10px 20px; cursor: pointer; border-radius: 4px; }
#hero { text-align: center; padding: 80px 20px; background: linear-gradient(135deg, var(--bg) 0%, var(--secondary) 100%); }
#hero h1 { font-size: 3rem; margin-bottom: 10px; color: var(--primary); }
.trust-bar { display: flex; justify-content: space-around; padding: 20px; background: var(--secondary); color: var(--bg); flex-wrap: wrap; }
.trust-item { padding: 10px; font-weight: bold; }
#shop, #about { max-width: 1200px; margin: 50px auto; padding: 0 20px; }
.section-header h2 { font-size: 2rem; margin-bottom: 30px; text-align: center; color: var(--primary); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 30px; }
.product-card { border: 1px solid var(--secondary); border-radius: 8px; overflow: hidden; background: #fff; cursor: pointer; transition: transform 0.3s; color: #333; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.product-img img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.product-info { padding: 15px; }
.product-category { font-size: 0.8rem; color: #666; text-transform: uppercase; }
.product-title { font-size: 1.1rem; margin: 5px 0; color: #111; }
.product-price { font-weight: bold; color: var(--primary); font-size: 1.2rem; margin: 10px 0; }
.price-original { text-decoration: line-through; color: #999; font-size: 0.9rem; margin-left: 10px; }
.btn-add { width: 100%; padding: 10px; background: var(--primary); color: #FFF8F3; border: none; cursor: pointer; border-radius: 4px; margin-top: 10px; }
footer { background: var(--primary); color: #FFF8F3; padding: 40px 20px; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; }
.footer-links a { display: block; margin: 5px 0; }
.cart-drawer { position: fixed; top: 0; right: -400px; width: 400px; max-width: 100%; height: 100%; background: var(--bg); box-shadow: -2px 0 10px rgba(0,0,0,0.1); z-index: 1000; transition: 0.3s; display: flex; flex-direction: column; }
.cart-drawer.open { right: 0; }
.cart-header, .cart-footer { padding: 20px; border-bottom: 1px solid var(--secondary); }
.cart-footer { border-bottom: none; border-top: 1px solid var(--secondary); margin-top: auto; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 15px; margin-bottom: 15px; border-bottom: 1px solid var(--secondary); padding-bottom: 15px; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-overlay, .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 999; display: none; }
.cart-overlay.active, .modal-overlay.active { display: block; }
.product-modal, .checkout-modal { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--bg); padding: 30px; z-index: 1001; width: 90%; max-width: 800px; max-height: 90vh; overflow-y: auto; display: none; border-radius: 8px; }
.product-modal.open, .checkout-modal.open { display: block; }
.modal-close { position: absolute; top: 15px; right: 15px; background: transparent; border: none; font-size: 20px; cursor: pointer; color: var(--text); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 768px) { .modal-body { grid-template-columns: 1fr; } .header-inner { flex-wrap: wrap; } #main-nav { display: none; width: 100%; margin-top: 15px; } #main-nav.open { display: flex; flex-direction: column; } #main-nav a { margin: 10px 0; } }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; margin-bottom: 5px; }
.form-row input, .form-row select { width: 100%; padding: 10px; border: 1px solid var(--secondary); border-radius: 4px; }
.hero-card { display: inline-block; margin: 10px; cursor: pointer; }
.hero-card img { width: 200px; height: 200px; object-fit: cover; border-radius: 8px; }
