* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Inter', sans-serif; color: #2c2c2c; line-height: 1.6; }

a { text-decoration: none; color: inherit; }

header { background: #fff; border-bottom: 1px solid #e8e8e8; position: sticky; top: 0; z-index: 100; }

.header-top { background: #1a1a1a; color: #fff; text-align: center; padding: 10px; font-size: 13px; font-weight: 500; }

.header-main { max-width: 1400px; margin: 0 auto; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: #1a1a1a; letter-spacing: 1px; }

nav ul { display: flex; gap: 35px; list-style: none; }

nav a { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.3s; }

nav a:hover { color: #8b7355; }

.hero { position: relative; height: 600px; overflow: hidden; }

.hero img { width: 100%; height: 100%; object-fit: cover; }

.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; }

.hero h1 { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.hero p { font-size: 18px; margin-bottom: 30px; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }

.btn { display: inline-block; padding: 14px 36px; background: #8b7355; color: #fff; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; transition: all 0.3s; }

.btn:hover { background: #6f5a42; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(139,115,85,0.3); }

.section { max-width: 1400px; margin: 0 auto; padding: 80px 40px; }

.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; text-align: center; margin-bottom: 50px; color: #1a1a1a; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }

.product-card { background: #fff; transition: transform 0.3s, box-shadow 0.3s; }

.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.product-image { position: relative; overflow: hidden; aspect-ratio: 3/4; }

.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

.product-card:hover .product-image img { transform: scale(1.05); }

.product-info { padding: 20px 0; }

.product-name { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: #1a1a1a; }

.product-price { font-size: 18px; font-weight: 700; color: #8b7355; margin-bottom: 12px; }

.product-desc { font-size: 14px; color: #666; margin-bottom: 15px; line-height: 1.5; }

.quick-add { width: 100%; padding: 12px; background: #1a1a1a; color: #fff; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; border: none; cursor: pointer; transition: background 0.3s; }

.quick-add:hover { background: #8b7355; }

.banner { background: #f8f6f3; padding: 40px; text-align: center; margin: 60px 0; }

.banner h2 { font-family: 'Playfair Display', serif; font-size: 32px; margin-bottom: 15px; }

.banner p { font-size: 16px; color: #666; }

footer { background: #1a1a1a; color: #fff; padding: 60px 40px 30px; }

.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }

.footer-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.footer-section ul { list-style: none; }

.footer-section li { margin-bottom: 10px; font-size: 14px; color: #ccc; }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #333; font-size: 13px; color: #999; }

.breadcrumb { max-width: 1400px; margin: 0 auto; padding: 20px 40px; font-size: 13px; color: #666; }

.breadcrumb a { color: #8b7355; }

.product-detail { max-width: 1400px; margin: 0 auto; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.product-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 15px; }

.product-details h1 { font-family: 'Playfair Display', serif; font-size: 42px; margin-bottom: 20px; }

.product-details .price { font-size: 28px; font-weight: 700; color: #8b7355; margin-bottom: 25px; }

.product-details .description { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 30px; }

.size-selector { margin-bottom: 30px; }

.size-selector label { display: block; font-weight: 600; margin-bottom: 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; }

.size-options { display: flex; gap: 10px; }

.size-btn { padding: 10px 20px; border: 1px solid #ddd; background: #fff; cursor: pointer; font-size: 14px; transition: all 0.3s; }

.size-btn:hover, .size-btn.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

.add-to-cart { width: 100%; padding: 18px; background: #8b7355; color: #fff; font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; margin-bottom: 15px; transition: all 0.3s; }

.add-to-cart:hover { background: #6f5a42; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; padding-top: 40px; border-top: 1px solid #e8e8e8; }

.feature { text-align: center; }

.feature h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }

.feature p { font-size: 13px; color: #666; }

@media (max-width: 768px) { .header-main { flex-direction: column; gap: 20px; } nav ul { flex-wrap: wrap; justify-content: center; } .product-grid { grid-template-columns: 1fr; } .product-detail { grid-template-columns: 1fr; } .hero h1 { font-size: 36px; } .features { grid-template-columns: 1fr; } }