@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.08);
    --radius-md: 0px;
    --radius-lg: 0.0px;
    --shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
}
*, *::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; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background-color: rgba(0, 0, 100, 0.95); backdrop-filter: blur(10px); 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: 70px; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.nav-menu { display: flex; gap: 25px; align-items: center; }
.nav-link { font-weight: 600; font-size: 0.9rem; padding: 6px 12px; border-radius: 4px; }
.nav-link:hover { background: rgba(0,0,0,0.03); }
.cart-icon-wrapper { position: relative; display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
.cart-badge { position: absolute; top: 0; right: 0; background-color: var(--accent); color: white; font-size: 0.7rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.burger-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.burger-btn span { width: 24px; height: 3px; background-color: var(--primary); }
.hero { padding: 80px 0; text-align: center; background: radial-gradient(circle, hsla(140, 45%, 20%, 0.04) 0%, transparent 70%); }
.hero-title { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 700; line-height: 1.15; color: var(--primary); max-width: 900px; margin: 0 auto 20px auto; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 35px auto; }
.btn { display: inline-block; padding: 16px 36px; background-color: var(--primary); color: white; font-weight: 600; border-radius: var(--radius-md); box-shadow: 0 4px 12px hsla(140, 45%, 20%, 0.2); transition: all 0.3s; cursor: pointer; }
.btn:hover { background-color: var(--primary-light); transform: translateY(-2px); }
.hero-banner-wrapper { max-width: 900px; margin: 50px auto 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-banner-wrapper img { width: 100%; filter: sepia(0.02) contrast(1.01); }
.comparison-section { padding: 90px 0; background-color: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.comp-table-wrapper { max-width: 800px; margin: 40px auto 0 auto; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; text-align: left; background: var(--card); }
th, td { padding: 18px 24px; border-bottom: 1px solid var(--border); }
th { background: var(--bg); font-family: var(--font-heading); color: var(--primary); font-weight: 700; }
td:nth-child(2) { font-weight: 600; color: var(--primary); }
.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: all 0.3s; }
.product-card.bestseller-highlight { border: 2px solid var(--primary); box-shadow: var(--shadow); transform: scale(1.02); }
.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; }
.badge { position: absolute; top: 15px; left: 15px; padding: 4px 10px; background-color: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; border-radius: var(--radius-sm); }
.product-info { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.product-category { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; }
.product-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; }
.product-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }
.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; }
.reviews-section { padding: 80px 0; background-color: var(--card); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background-color: var(--bg); padding: 30px; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: 0 4px 6px rgba(0,0,0,0.01); }
.review-stars { color: var(--accent); margin-bottom: 15px; }
.review-text { font-style: italic; color: var(--text-muted); margin-bottom: 15px; }
.faq-section { padding: 80px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
.faq-box h4 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
.faq-box p { color: var(--text-muted); font-size: 0.95rem; }
.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: 50px 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) { .cart-grid, .contact-grid, .footer-grid, .faq-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .nav-menu { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: var(--card); flex-direction: column; padding: 30px; transition: 0.3s; } .nav-menu.active { left: 0; } .burger-btn { display: flex; } }
