/* ===== CSS Variables ===== */
:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-card: #1a1a1a;
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-primary: #e63946;
    --color-primary-dark: #c1121f;
    --color-accent: #ff6b6b;
    --color-border: #2a2a2a;
    --color-gold: #ffd700;
    --color-success: #10b981;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--color-bg); color: var(--color-text); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; text-transform: uppercase; letter-spacing: 0.05em; }
h1 { font-size: clamp(2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ===== GDPR Cookie Banner ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--color-bg-card); border-top: 1px solid var(--color-border); padding: 20px; z-index: 9999; transform: translateY(0); transition: transform 0.3s ease; }
.cookie-banner.hidden { transform: translateY(100%); }
.cookie-content { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-text { flex: 1; min-width: 300px; }
.cookie-text h3 { font-size: 1.1rem; margin-bottom: 8px; }
.cookie-text p { font-size: 0.9rem; color: var(--color-text-muted); }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn { padding: 12px 24px; font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border: none; border-radius: 4px; cursor: pointer; transition: var(--transition); text-align: center; }
.cookie-btn.accept { background: var(--color-primary); color: white; }
.cookie-btn.accept:hover { background: var(--color-primary-dark); }
.cookie-btn.reject { background: var(--color-border); color: var(--color-text); }
.cookie-btn.reject:hover { background: #3a3a3a; }
.cookie-btn.settings { background: transparent; color: var(--color-text-muted); border: 1px solid var(--color-border); }
.cookie-btn.settings:hover { color: var(--color-text); border-color: var(--color-text); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; border: none; border-radius: 4px; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--color-primary); color: white; }
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3); }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-read-more { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); padding: 10px 20px; font-size: 0.85rem; }
.btn-read-more:hover { background: var(--color-primary); color: white; }
.btn svg { width: 18px; height: 18px; }

/* ===== Header ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.1em; }
.logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 1.4rem; color: var(--color-text); letter-spacing: 0.08em; }
.logo-tagline { font-size: 0.65rem; color: var(--color-primary); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 35px; }
.nav-links a { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-text-muted); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--color-primary); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn svg { width: 26px; height: 26px; color: var(--color-text); }
.mobile-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--color-bg-secondary); border-bottom: 1px solid var(--color-border); padding: 20px; }
.mobile-menu.active { display: flex; flex-direction: column; gap: 15px; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1rem; color: var(--color-text-muted); padding: 10px 0; }

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 100px 0 20px; background: var(--color-bg); }
.breadcrumb .container { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--color-text-muted); }
.breadcrumb a { color: var(--color-text-muted); transition: var(--transition); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span:last-child { color: var(--color-text); }

/* ===== Hero Section ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 30% 70%, rgba(230, 57, 70, 0.15) 0%, transparent 50%); }
.hero-content { position: relative; text-align: center; z-index: 1; padding: 100px 20px; }
.badge { display: inline-block; padding: 8px 20px; background: var(--color-primary); color: white; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; border-radius: 2px; margin-bottom: 30px; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.hero p { max-width: 600px; margin: 0 auto 40px; font-size: 1.1rem; color: var(--color-text-muted); }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.discount-badge { display: flex; flex-direction: column; align-items: flex-start; padding: 15px 25px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 8px; }
.discount-code { font-family: var(--font-heading); font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.1em; }
.discount-amount { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--color-gold); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); animation: bounce 2s infinite; }
.hero-scroll svg { width: 30px; height: 30px; color: var(--color-text-muted); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } }

/* ===== Features Section ===== */
.features { padding: 80px 0; background: var(--color-bg-secondary); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.feature-card { text-align: center; padding: 35px 20px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 12px; transition: var(--transition); }
.feature-card:hover { transform: translateY(-8px); border-color: var(--color-primary); }
.feature-icon { width: 55px; height: 55px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); border-radius: 50%; }
.feature-icon svg { width: 25px; height: 25px; color: white; }
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.85rem; color: var(--color-text-muted); }

/* ===== Section Header ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-block; padding: 6px 16px; background: rgba(230, 57, 70, 0.1); color: var(--color-primary); font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; border-radius: 2px; margin-bottom: 12px; }
.section-header p { color: var(--color-text-muted); font-size: 1rem; }

/* ===== Products Section ===== */
.products { padding: 80px 0; }
.products-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { position: relative; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; transition: var(--transition); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--color-primary); }
.product-badge { position: absolute; top: 15px; left: 15px; z-index: 10; padding: 5px 12px; background: var(--color-primary); color: white; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; border-radius: 3px; }
.product-badge.new { background: var(--color-gold); color: #000; }
.product-badge.sale { background: var(--color-success); }
.product-image-wrapper { position: relative; height: 250px; overflow: hidden; background: #151515; }
.product-image-wrapper a { display: block; height: 100%; }
.product-image { width: 100%; height: 100%; object-fit: contain; padding: 15px; transition: transform 0.3s ease; }
.product-card:hover .product-image { transform: scale(1.05); }
.product-info { padding: 20px; }
.product-brand { display: inline-block; font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600; color: var(--color-primary); letter-spacing: 0.15em; margin-bottom: 6px; }
.product-title { font-size: 1.1rem; margin-bottom: 10px; }
.product-title a { transition: var(--transition); }
.product-title a:hover { color: var(--color-primary); }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.stars { display: flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; color: var(--color-gold); }
.product-rating span { font-size: 0.8rem; color: var(--color-text-muted); }
.product-excerpt { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 15px; line-height: 1.5; }
.product-price-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.price-group { display: flex; flex-direction: column; }
.price-old { font-size: 0.85rem; color: var(--color-text-muted); text-decoration: line-through; }
.price-current { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--color-text); }

/* ===== Product Detail Page ===== */
.product-detail { padding: 30px 0 60px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.product-gallery .main-image { background: var(--color-bg-card); border-radius: 12px; overflow: hidden; margin-bottom: 15px; }
.product-gallery .main-image img { width: 100%; height: 400px; object-fit: contain; padding: 20px; }
.thumbnail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumbnail-grid img { width: 100%; height: 80px; object-fit: contain; background: var(--color-bg-card); border: 2px solid var(--color-border); border-radius: 8px; cursor: pointer; padding: 5px; transition: var(--transition); }
.thumbnail-grid img:hover, .thumbnail-grid img.active { border-color: var(--color-primary); }
.product-info-detail .product-badge { position: relative; top: 0; left: 0; display: inline-block; margin-bottom: 15px; }
.product-info-detail h1 { font-size: 2rem; margin-bottom: 15px; text-transform: none; }
.product-rating-large { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.product-rating-large .stars svg { width: 20px; height: 20px; }
.product-rating-large span { font-size: 0.95rem; color: var(--color-text-muted); }
.product-price-detail { margin-bottom: 25px; }
.price-old-large { display: block; font-size: 1rem; color: var(--color-text-muted); text-decoration: line-through; margin-bottom: 5px; }
.price-current-large { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.discount-info { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.discount-badge-inline { padding: 5px 12px; background: var(--color-primary); color: white; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600; border-radius: 3px; }
.price-after-discount { color: var(--color-success); font-weight: 500; }
.product-description-detail { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 25px; line-height: 1.7; }
.product-highlights { margin-bottom: 30px; }
.product-highlights h3 { font-size: 1rem; margin-bottom: 15px; }
.product-highlights ul { display: flex; flex-direction: column; gap: 10px; }
.product-highlights li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--color-text-muted); }
.product-highlights svg { width: 18px; height: 18px; color: var(--color-success); flex-shrink: 0; }
.cta-buttons { display: flex; flex-direction: column; gap: 15px; }
.promo-reminder { display: flex; align-items: center; gap: 10px; }
.promo-reminder span { color: var(--color-text-muted); }
.code-copy { padding: 10px 20px; background: var(--color-bg-card); border: 2px dashed var(--color-primary); color: var(--color-primary); font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; border-radius: 6px; cursor: pointer; transition: var(--transition); }
.code-copy:hover { background: var(--color-primary); color: white; }

/* ===== Review Content ===== */
.review-content { max-width: 900px; }
.review-content h2 { margin-bottom: 30px; }
.review-section { margin-bottom: 30px; }
.review-section h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--color-text); }
.review-section p { color: var(--color-text-muted); margin-bottom: 15px; line-height: 1.7; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 40px 0; }
.pros, .cons { padding: 25px; background: var(--color-bg-card); border-radius: 12px; }
.pros { border-left: 4px solid var(--color-success); }
.cons { border-left: 4px solid var(--color-primary); }
.pros h3, .cons h3 { display: flex; align-items: center; gap: 10px; font-size: 1rem; margin-bottom: 15px; }
.pros h3 svg { color: var(--color-success); width: 20px; height: 20px; }
.cons h3 svg { color: var(--color-primary); width: 20px; height: 20px; }
.pros ul, .cons ul { display: flex; flex-direction: column; gap: 8px; }
.pros li, .cons li { font-size: 0.9rem; color: var(--color-text-muted); padding-left: 15px; position: relative; }
.pros li::before, .cons li::before { content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; }
.pros li::before { background: var(--color-success); }
.cons li::before { background: var(--color-primary); }
.specs-table { margin: 40px 0; }
.specs-table h3 { margin-bottom: 20px; }
.specs-table table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 12px 15px; border-bottom: 1px solid var(--color-border); font-size: 0.9rem; }
.specs-table td:first-child { color: var(--color-text-muted); width: 40%; }
.specs-table tr:hover { background: var(--color-bg-secondary); }
.verdict { background: linear-gradient(135deg, var(--color-bg-card) 0%, #1f1f1f 100%); border: 1px solid var(--color-border); border-radius: 12px; padding: 30px; margin-top: 40px; }
.verdict h3 { margin-bottom: 20px; }
.verdict-score { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.verdict-score .score { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--color-gold); }
.verdict-score .score-label { font-family: var(--font-heading); font-size: 1.2rem; color: var(--color-text-muted); }
.verdict p { color: var(--color-text-muted); line-height: 1.7; }

/* ===== Related Products ===== */
.related-products { padding: 60px 0; background: var(--color-bg-secondary); }
.related-products h2 { text-align: center; margin-bottom: 40px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.related-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 12px; overflow: hidden; text-align: center; transition: var(--transition); }
.related-card:hover { transform: translateY(-5px); border-color: var(--color-primary); }
.related-card img { width: 100%; height: 180px; object-fit: contain; padding: 15px; background: #151515; }
.related-card h4 { font-size: 0.95rem; padding: 15px 15px 5px; }
.related-card span { display: block; padding: 5px 15px 15px; color: var(--color-text-muted); font-size: 0.9rem; }

/* ===== Promo Banner ===== */
.promo-banner { padding: 60px 0; background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-accent) 100%); }
.promo-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.promo-text { flex: 1; min-width: 280px; }
.promo-label { display: inline-block; padding: 4px 12px; background: rgba(255, 255, 255, 0.2); font-family: var(--font-heading); font-size: 0.7rem; letter-spacing: 0.15em; border-radius: 2px; margin-bottom: 12px; }
.promo-text h2 { font-size: 1.8rem; margin-bottom: 8px; }
.promo-text p { font-size: 1rem; opacity: 0.9; }
.promo-code-box { display: flex; align-items: center; gap: 15px; padding: 18px 25px; background: rgba(0, 0, 0, 0.3); border-radius: 10px; }
.promo-code-box .code { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; letter-spacing: 0.1em; }
.copy-btn { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: white; color: var(--color-primary-dark); font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600; border: none; border-radius: 6px; cursor: pointer; transition: var(--transition); }
.copy-btn:hover { transform: scale(1.05); }
.copy-btn svg { width: 16px; height: 16px; }

/* ===== Testimonials ===== */
.testimonials { padding: 80px 0; background: var(--color-bg-secondary); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.testimonial-card { padding: 30px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 12px; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--color-primary); transform: translateY(-5px); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--color-gold); }
.testimonial-text { font-size: 0.95rem; line-height: 1.6; color: var(--color-text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; background: var(--color-primary); color: white; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; border-radius: 50%; }
.author-info { display: flex; flex-direction: column; }
.author-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem; }
.author-location { font-size: 0.8rem; color: var(--color-text-muted); }

/* ===== About Section ===== */
.about-section { padding: 80px 0; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text p { color: var(--color-text-muted); margin-bottom: 20px; line-height: 1.7; }
.about-features { margin-top: 25px; display: flex; flex-direction: column; gap: 12px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.about-features svg { width: 20px; height: 20px; color: var(--color-success); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat { text-align: center; padding: 25px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: 12px; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--color-primary); }
.stat-label { font-size: 0.85rem; color: var(--color-text-muted); }

/* ===== Legal Pages ===== */
.legal-page { padding: 30px 0 80px; }
.legal-page h1 { margin-bottom: 40px; text-transform: none; }
.legal-section { margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid var(--color-border); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.3rem; margin-bottom: 15px; text-transform: none; }
.legal-section h3 { font-size: 1.1rem; margin: 20px 0 10px; text-transform: none; }
.legal-section p { color: var(--color-text-muted); margin-bottom: 15px; line-height: 1.7; }
.legal-section ul { margin: 15px 0; padding-left: 20px; }
.legal-section li { color: var(--color-text-muted); margin-bottom: 8px; line-height: 1.6; list-style: disc; }
.legal-section a { color: var(--color-primary); transition: var(--transition); }
.legal-section a:hover { text-decoration: underline; }
.legal-section address { color: var(--color-text-muted); line-height: 1.8; margin: 15px 0; }

/* ===== Footer ===== */
.footer { padding: 60px 0 25px; background: var(--color-bg); border-top: 1px solid var(--color-border); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 15px; }
.footer-brand p { color: var(--color-text-muted); font-size: 0.9rem; max-width: 280px; }
.footer-links h4 { font-size: 0.9rem; margin-bottom: 15px; color: var(--color-text); }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--color-text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom { padding-top: 25px; border-top: 1px solid var(--color-border); text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 8px; }
.affiliate-notice { font-size: 0.75rem !important; opacity: 0.7; }

/* ===== Toast ===== */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); display: flex; align-items: center; gap: 10px; padding: 14px 22px; background: var(--color-bg-card); border: 1px solid var(--color-success); border-radius: 8px; box-shadow: var(--shadow-lg); opacity: 0; transition: all 0.3s ease; z-index: 2000; }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 18px; height: 18px; color: var(--color-success); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid-home { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid-home { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .product-image-wrapper { height: 220px; }
    .hero-cta { flex-direction: column; }
    .promo-content { flex-direction: column; text-align: center; }
    .promo-code-box { flex-direction: column; }
    .pros-cons { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { max-width: 100%; }
    .related-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
    .cookie-content { flex-direction: column; text-align: center; }
    .cookie-buttons { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .product-info { padding: 15px; }
    .thumbnail-grid { grid-template-columns: repeat(4, 1fr); gap: 5px; }
    .thumbnail-grid img { height: 60px; }
    .about-stats { grid-template-columns: 1fr; }
    .stat { padding: 20px; }
}
