* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Georgia, serif; background: #fdf8f2; color: #3a2e2e; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; background: #3a2e2e; }
nav .logo { color: #f5e6c8; font-size: 1.4rem; text-decoration: none; }
nav .nav-links a { color: #f5e6c8; text-decoration: none; margin-left: 1.5rem; }
main { min-height: 80vh; padding: 2rem; max-width: 1100px; margin: 0 auto; }
footer { text-align: center; padding: 1.5rem; background: #3a2e2e; color: #f5e6c8; }
.hero { text-align: center; padding: 4rem 1rem; background: linear-gradient(135deg, #f5e6c8, #fdf8f2); border-radius: 12px; margin-bottom: 2rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; margin-bottom: 1.5rem; color: #7a5c3a; }
.btn { display: inline-block; padding: 0.6rem 1.4rem; background: #3a2e2e; color: #f5e6c8; border-radius: 6px; text-decoration: none; border: none; cursor: pointer; font-size: 1rem; }
.btn:hover { background: #7a5c3a; }
.btn-remove { color: #c0392b; text-decoration: none; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.product-card { background: white; border-radius: 10px; padding: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center; }
.product-card img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; margin-bottom: 0.8rem; }
.product-card h3 { margin-bottom: 0.3rem; }
.scent { color: #7a5c3a; font-style: italic; margin-bottom: 0.3rem; }
.price { font-size: 1.2rem; font-weight: bold; color: #3a2e2e; margin: 0.5rem 0; }
.page-title { margin-bottom: 1.5rem; font-size: 2rem; }
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product-detail img { width: 100%; border-radius: 10px; }
.product-info h1 { margin-bottom: 1rem; }
.product-info p { margin-bottom: 0.8rem; line-height: 1.6; }
.product-info input[type=number] { width: 70px; padding: 0.4rem; margin-right: 1rem; border: 1px solid #ccc; border-radius: 4px; }
.cart { max-width: 700px; }
.cart-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #eee; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }
.cart-total { text-align: right; padding: 1.5rem 0; font-size: 1.2rem; }
.cart-total .btn { margin-left: 1rem; }
#payment-form { max-width: 500px; display: flex; flex-direction: column; gap: 1rem; }
#payment-form input { padding: 0.7rem; border: 1px solid #ccc; border-radius: 6px; font-size: 1rem; }
#card-element { padding: 0.7rem; border: 1px solid #ccc; border-radius: 6px; background: white; }
#card-errors { color: #c0392b; }
.total { font-size: 1.2rem; font-weight: bold; }
.success { text-align: center; padding: 4rem 1rem; }
.success h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.success p { margin-bottom: 0.8rem; font-size: 1.1rem; }
.admin-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.admin-table th, .admin-table td { padding: 0.7rem 1rem; border: 1px solid #ddd; text-align: left; }
.admin-table th { background: #3a2e2e; color: #f5e6c8; }
.error { color: #c0392b; background: #fde; padding: 0.7rem; border-radius: 6px; }
@media(max-width:600px) { .product-detail { grid-template-columns: 1fr; } }
