@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Basic Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #f8f9fa; color: #333; }

/* Premium Header */
header { background-color: #111; color: #d4af37; padding: 20px; text-align: center; font-size: 32px; font-weight: 700; letter-spacing: 2px; border-bottom: 3px solid #d4af37; }
.navbar { background: #fff; padding: 15px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.navbar a { color: #111; text-decoration: none; margin: 0 20px; font-size: 16px; font-weight: 600; transition: color 0.3s ease; }
.navbar a:hover { color: #d4af37; }

/* Hero Banner */
.hero { background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.8)), url('https://images.unsplash.com/photo-1612817288484-6f916006741a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; padding: 80px 20px; text-align: center; color: white; }
.hero h1 { font-size: 48px; color: #d4af37; margin-bottom: 15px; }
.hero p { font-size: 18px; margin-bottom: 30px; font-weight: 300; }

/* Product Grid */
.container { padding: 50px 10%; text-align: center; }
.section-title { font-size: 32px; font-weight: 700; margin-bottom: 40px; position: relative; display: inline-block; }
.section-title::after { content: ''; width: 50px; height: 3px; background: #d4af37; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 20px; }

/* Modern Product Card */
.product-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: all 0.3s ease; position: relative; border: 1px solid #eee; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15); }
.product-image { width: 100%; height: 250px; object-fit: contain; background: #fff; padding: 15px; border-bottom: 1px solid #f0f0f0; }
.product-info { padding: 20px; text-align: left; }
.product-info h3 { font-size: 18px; font-weight: 600; color: #111; margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.product-info p { color: #d4af37; font-size: 22px; font-weight: 700; margin-bottom: 15px; }

/* Buttons */
.btn { background-color: #111; color: #d4af37; border: 2px solid #111; padding: 12px 20px; border-radius: 6px; cursor: pointer; font-size: 14px; font-weight: 600; text-decoration: none; display: inline-block; text-align: center; transition: all 0.3s ease; width: 100%; }
.btn:hover { background-color: #d4af37; color: #111; border-color: #d4af37; }
.btn-outline { background-color: transparent; color: #111; border: 2px solid #111; margin-bottom: 10px; }
.btn-outline:hover { background-color: #111; color: #d4af37; }

/* Footer */
footer { background: #111; color: #fff; text-align: center; padding: 30px 20px; margin-top: 50px; font-size: 14px; border-top: 3px solid #d4af37; }