@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,700;1,300&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');
:root {
    --font-heading: 'Merriweather', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --primary: hsl(140, 45%, 20%);
    --primary-light: hsl(140, 35%, 40%);
    --secondary: hsl(35, 30%, 45%);
    --accent: hsl(35, 55%, 35%);
    --bg: hsl(35, 40%, 97%);
    --card: hsl(0, 0%, 100%);
    --text: hsl(140, 50%, 10%);
    --text-muted: hsla(140, 50%, 10%, 0.65);
    --border: hsla(140, 50%, 10%, 0.1);
    --radius-md: 8px;
    --radius-lg: 12.0px;
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background-color: var(--bg); color: var(--text); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background-color: var(--card); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--border); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 65px; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--primary); text-transform: uppercase; }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.cart-icon-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.cart-badge { position: absolute; top: -8px; right: -8px; background-color: var(--accent); color: white; font-size: 0.7rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.burger-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; }
.burger-btn span { width: 24px; height: 2px; background-color: var(--primary); }
.hero { padding: 0; height: 600px; background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.25)), url('../images/hero.png'); background-size: cover; background-position: center; display: flex; align-items: center; position: relative; }
.hero-card { background: rgba(0, 0, 100, 0.95); backdrop-filter: blur(10px); padding: 50px; max-width: 550px; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); margin-left: 5%; }
.hero-title { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; line-height: 1.2; color: var(--primary); margin-bottom: 20px; }
.hero-subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 30px; background-color: var(--primary); color: white; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; border-radius: var(--radius-md); cursor: pointer; transition: 0.3s; }
.btn:hover { background-color: var(--accent); }
.btn-secondary { background-color: transparent; border: 2px solid var(--primary); color: var(--primary); margin-left: 10px; }
.numeric-features { padding: 80px 0; background-color: var(--card); border-bottom: 1px solid var(--border); }
.numeric-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.numeric-card { display: flex; flex-direction: column; }
.numeric-num { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 700; color: hsla(35, 55%, 35%, 0.25); line-height: 1; margin-bottom: 10px; }
.numeric-card h3 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 10px; }
.numeric-card p { color: var(--text-muted); font-size: 0.95rem; }
.catalog-section { padding: 80px 0; }
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 30px; }
.product-card { background-color: var(--card); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-img-wrapper { position: relative; background-color: var(--bg); padding: 20px; display: flex; align-items: center; justify-content: center; aspect-ratio: 1.1; }
.product-img-wrapper img { filter: sepia(0.02) contrast(1.01); max-height: 170px; }
.product-info { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.product-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; }
.product-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.add-cart-btn { width: 40px; height: 40px; border-radius: 50%; background-color: var(--primary); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.about-section { padding: 80px 0; background-color: var(--card); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; }
.about-img-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.faq-section { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--card); border-radius: var(--radius-md); margin-bottom: 12px; border: 1px solid var(--border); overflow: hidden; }
.faq-question { padding: 20px 25px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: 0.3s; color: var(--text-muted); }
.faq-item.active .faq-answer { padding-bottom: 20px; max-height: 200px; }
.cookie-banner { position: fixed; bottom: -200px; left: 0; right: 0; background-color: var(--card); border-top: 1px solid var(--border); padding: 20px 0; z-index: 10000; transition: bottom 0.5s; }
.cookie-banner.show { bottom: 0; }
.cookie-container { display: flex; justify-content: space-between; align-items: center; }
.cookie-btns { display: flex; gap: 10px; }
footer { background-color: var(--primary); color: white; padding: 60px 0 30px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 25px; display: flex; justify-content: space-between; }
.cart-main { padding: 60px 0; }
.cart-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; }
.cart-table-card, .cart-summary-card { background-color: var(--card); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 25px; }
.cart-item { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid var(--border); gap: 15px; }
.cart-item img { max-height: 60px; filter: sepia(0.02) contrast(1.01); }
.qty-control { display: flex; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.qty-btn { width: 28px; height: 28px; background: var(--bg); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-input { width: 32px; text-align: center; }
.form-group { margin-bottom: 15px; }
.form-control { width: 100%; padding: 10px 15px; border: 1px solid var(--border); border-radius: 4px; background: var(--bg); color: var(--text); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; }
.success-card { max-width: 600px; margin: 80px auto; text-align: center; padding: 40px; background: var(--card); border-radius: var(--radius-md); border: 1px solid var(--border); }
@media (max-width: 992px) { .hero-card { margin: 0 auto; } .numeric-grid, .about-grid, .cart-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .nav-menu { position: fixed; top: 65px; left: -100%; width: 100%; height: calc(100vh - 65px); background: var(--card); flex-direction: column; padding: 30px; transition: 0.3s; } .nav-menu.active { left: 0; } .burger-btn { display: flex; } }
