@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Poppins:wght@300;400;600;700&display=swap');
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --primary: hsl(220, 20%, 15%);
    --primary-light: hsl(220, 15%, 35%);
    --secondary: hsl(38, 60%, 45%);
    --accent: hsl(38, 70%, 50%);
    --bg: hsl(220, 10%, 97%);
    --card: hsl(0, 0%, 100%);
    --text: hsl(220, 25%, 10%);
    --text-muted: hsla(220, 25%, 10%, 0.65);
    --border: hsla(220, 25%, 10%, 0.1);
    --radius-md: 18px;
    --radius-lg: 27.0px;
    --shadow: 0 4px 6px rgba(0,0,0,0.02), 0 1px 3px rgba(0,0,0,0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::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; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
header { background-color: var(--card); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-link { font-weight: 500; padding: 8px 0; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: var(--accent); transition: var(--transition); }
.nav-link:hover::after { width: 100%; }
.cart-icon-wrapper { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background-color: var(--bg); border-radius: 50%; }
.cart-badge { position: absolute; top: -4px; right: -4px; background-color: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; min-width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.burger-btn { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; }
.burger-btn span { width: 28px; height: 3px; background-color: var(--primary); }
.hero { padding: 90px 0 80px 0; background: radial-gradient(circle at 80% 20%, hsla(38, 70%, 50%, 0.05), transparent 50%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; }
.hero-title { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.btn { display: inline-block; padding: 14px 30px; background-color: var(--primary); color: white; font-weight: 600; border-radius: var(--radius-md); box-shadow: 0 4px 10px hsla(220, 20%, 15%, 0.25); transition: var(--transition); cursor: pointer; }
.btn:hover { background-color: var(--primary-light); transform: translateY(-2px); }
.btn-secondary { background-color: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: none; margin-left: 15px; }
.hero-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-image-wrapper img { filter: brightness(1.01) saturate(1.03); transition: var(--transition); }
.hero-image-wrapper:hover img { transform: scale(1.03); }
.features { padding: 75px 0; background-color: var(--card); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.1rem; color: var(--primary); margin-bottom: 12px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-card { padding: 35px; background-color: var(--bg); border-radius: var(--radius-md); border: 1px solid var(--border); transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 50px; height: 50px; background-color: hsla(220, 20%, 15%, 0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 18px; }
.bestsellers { 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: var(--transition); }
.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: brightness(1.01) saturate(1.03); 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: 4px; }
.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.2rem; 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); }
.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: all 0.3s ease-out; 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-links-list { display: flex; flex-direction: column; gap: 10px; }
.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: brightness(1.01) saturate(1.03); }
.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); }
.checkbox-group { display: flex; gap: 10px; margin-top: 10px; }
.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-grid, .about-grid, .cart-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .nav-menu { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: var(--card); flex-direction: column; padding: 30px; transition: 0.3s; } .nav-menu.active { left: 0; } .burger-btn { display: flex; } }
