* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; background-color: #f8f9fa; scroll-behavior: smooth; line-height: 1.6; }

/* Navigation */
nav { display: flex; justify-content: space-between; align-items: center; background: #111; color: #fff; padding: 15px 5%; position: sticky; top: 0; z-index: 100; }
.logo { font-size: 24px; font-weight: bold; color: #c5a059; }
nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 20px; }
nav ul li a { color: white; text-decoration: none; font-size: 14px; text-transform: uppercase; }

/* Hero */
.hero { height: 70vh; background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1590736704728-f4730bb30770?q=80&w=1000') no-repeat center/cover; display: flex; flex-direction: column; justify-content: center; align-items: center; color: white; text-align: center; }
.hero h1 { font-size: 3rem; color: #c5a059; margin-bottom: 10px; }
.btn { background: #c5a059; color: #000; padding: 12px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; }

/* Features */
.features { display: flex; justify-content: space-around; padding: 40px 5%; background: #fff; text-align: center; border-bottom: 1px solid #eee; }
.feature-box i { font-size: 30px; color: #c5a059; margin-bottom: 10px; }

/* Sections */
section { padding: 80px 5%; text-align: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
.product-card { background: #fff; padding: 25px; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: 0.3s; }
.product-card:hover { transform: translateY(-10px); }
.product-image { background: #f0f0f0; height: 180px; border-radius: 8px; margin-bottom: 15px; }
.buy-btn { display: inline-block; background: #222; color: #fff; padding: 10px 25px; text-decoration: none; border-radius: 5px; margin-top: 15px; }

/* Form */
.order-form-section { background: #f1f1f1; }
.form-container { max-width: 500px; margin: auto; background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
form input, form select, form textarea { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ddd; border-radius: 5px; font-size: 16px; }
#submitBtn { background: #c5a059; color: black; border: none; width: 100%; padding: 15px; font-weight: bold; cursor: pointer; border-radius: 5px; font-size: 18px; }
#msg { display: block; margin-top: 15px; font-weight: bold; }

/* Footer */
footer { background: #111; color: white; padding: 40px; text-align: center; }
.social-links { margin-top: 20px; }
.social-links a { color: #c5a059; font-size: 24px; margin: 0 15px; }