:root {
  --blue: #0057FF;
  --blue-dark: #003FCC;
  --dark: #0A0E14;
  --dark-2: #1B222C;
  --dark-3: #2A3340;
  --bg: #F5F7FA;
  --white: #FFFFFF;
  --border: #E8ECF1;
  --border-2: #D8E0EA;
  --border-3: #F0F2F5;
  --muted: #5B6472;
  --muted-2: #7C8AA0;
  --muted-3: #9AA4B2;
  --blue-tint: #E8F0FF;
  --text: #1B222C;
  --font-heading: 'Poppins', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
::selection { background: var(--blue); color: #fff; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

.page-wrap { flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--dark); border-bottom: 1px solid var(--dark-2);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-mark { width: 34px; height: 34px; border-radius: 8px; background: var(--blue); flex-shrink: 0; }
.brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: .3px; }
.brand-name span { color: var(--blue); }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: #fff; font-weight: 600; font-size: 15px; cursor: pointer;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { border-bottom-color: var(--blue); color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative; cursor: pointer; background: var(--dark-2);
  padding: 10px 18px; border-radius: 999px; display: flex; align-items: center; gap: 8px;
  border: none; color: #fff;
}
.cart-icon { width: 16px; height: 16px; border: 2px solid #fff; border-top: none; border-radius: 0 0 4px 4px; }
.cart-label { color: #fff; font-weight: 600; font-size: 14px; }
.cart-badge {
  position: absolute; top: -8px; right: -8px; background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  flex-direction: column; gap: 4px;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; display: block; }

/* ---------- HERO ---------- */
.hero {
  background: var(--dark);
  background-image: linear-gradient(135deg, var(--dark) 45%, var(--blue) 200%);
  padding: 80px 24px; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center;
}
.eyebrow {
  display: inline-block; background: var(--blue); color: #fff; font-weight: 700;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase; padding: 6px 14px;
  border-radius: 999px; margin-bottom: 20px;
}
.hero h1 { font-family: var(--font-heading); font-weight: 800; font-size: 52px; line-height: 1.08; color: #fff; margin: 0 0 20px; }
.hero p { font-size: 18px; line-height: 1.6; color: #C7CEDA; margin: 0 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--dark-3); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 16px 28px; border-radius: 10px;
  cursor: pointer; border: none; text-align: center; font-family: var(--font-body);
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid var(--dark-3); }
.btn-outline:hover { color: #fff; border-color: var(--blue); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { color: #fff; opacity: .9; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: 8px; }

/* ---------- BENEFITS BAR ---------- */
.benefits {
  background: #fff; border-bottom: 1px solid var(--border);
}
.benefits-inner {
  max-width: 1240px; margin: 0 auto; padding: 32px 24px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
}
.benefit { display: flex; align-items: center; gap: 12px; }
.benefit-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--blue-tint); flex-shrink: 0; }
.benefit-icon.sq { border-radius: 8px; }
.benefit-icon.diamond { transform: rotate(45deg); }
.benefit-text { font-size: 14px; font-weight: 600; }

/* ---------- SECTIONS ---------- */
.section { max-width: 1240px; margin: 0 auto; padding: 64px 24px; }
.section-white { background: #fff; padding: 64px 24px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-white > .section-inner, .section-dark > .section-inner { max-width: 1240px; margin: 0 auto; }
.section-dark { background: var(--dark); padding: 64px 24px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
h2.section-title { font-family: var(--font-heading); font-weight: 700; font-size: 30px; margin: 0; }
.section-link { color: var(--blue); font-weight: 600; cursor: pointer; }

/* ---------- FOCUS TILES ---------- */
.tiles-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.tile {
  border-radius: 16px; padding: 28px 20px; cursor: pointer; min-height: 130px;
  display: flex; flex-direction: column; justify-content: flex-end; color: #fff;
}
.tile-dark1 { background: var(--dark); }
.tile-blue { background: var(--blue); }
.tile-dark2 { background: var(--dark-2); }
.tile-label { font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 6px; opacity: .85; }
.tile-name { font-family: var(--font-heading); font-weight: 700; font-size: 20px; }

/* ---------- PRODUCT CARD ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff;
  display: flex; flex-direction: column;
}
.product-photo { aspect-ratio: 1/1; overflow: hidden; cursor: pointer; background: var(--blue-tint); }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { color: var(--muted-3); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.product-name { font-weight: 700; font-size: 15px; cursor: pointer; }
.product-price { color: var(--blue); font-weight: 800; font-size: 17px; }
.add-cart-btn {
  background: var(--dark); color: #fff; text-align: center; padding: 10px; border-radius: 8px;
  font-weight: 600; font-size: 13px; cursor: pointer; margin-top: auto; border: none;
}
.add-cart-btn:hover { background: var(--blue); }

/* ---------- CHIPS ---------- */
.chips { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.chip {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border-2);
  background: #fff; color: var(--text); font-weight: 600; font-size: 14px; cursor: pointer;
  white-space: nowrap;
}
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------- ARTICLE CARD ---------- */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.article-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; }
.article-photo { aspect-ratio: 16/9; overflow: hidden; background: var(--dark); }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 20px; }
.article-cat { color: var(--blue); font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 8px; display: flex; justify-content: space-between; }
.article-date { color: var(--muted-3); font-size: 12px; font-weight: 400; text-transform: none; }
.article-title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; margin-bottom: 10px; line-height: 1.3; }
.article-excerpt { color: var(--muted); font-size: 14px; line-height: 1.5; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { background: var(--dark-2); border-radius: 14px; padding: 24px; border-left: 3px solid var(--blue); }
.testimonial-quote { color: var(--border); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.testimonial-name { color: var(--blue); font-weight: 700; font-size: 14px; }

/* ---------- REWARDS BANNER ---------- */
.rewards-banner { background: var(--blue); padding: 56px 24px; }
.rewards-inner {
  max-width: 1240px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.rewards-title { font-family: var(--font-heading); font-weight: 800; font-size: 26px; color: #fff; margin-bottom: 8px; }
.rewards-text { color: var(--blue-tint); font-size: 15px; }

/* ---------- PAGE HEADERS ---------- */
.page-header { max-width: 1240px; margin: 0 auto; padding: 56px 24px 0; }
.page-title { font-family: var(--font-heading); font-weight: 800; font-size: 38px; margin: 0 0 12px; }
.page-lead { color: var(--muted); font-size: 16px; max-width: 640px; margin: 0 0 32px; }

/* ---------- ARTICLE PAGE ---------- */
.article-wrap { max-width: 840px; margin: 0 auto; padding: 56px 24px; }
.back-link { color: var(--blue); font-weight: 600; cursor: pointer; font-size: 14px; display: inline-block; }
.article-meta { color: var(--blue); font-weight: 700; font-size: 13px; text-transform: uppercase; margin: 24px 0 10px; }
.article-h1 { font-family: var(--font-heading); font-weight: 800; font-size: 36px; line-height: 1.2; margin: 0 0 24px; }
.article-hero-photo { aspect-ratio: 16/8; overflow: hidden; border-radius: 14px; margin-bottom: 32px; }
.article-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-wrap p.body-p { font-size: 17px; line-height: 1.75; color: var(--dark-3); margin: 0 0 18px; }
.related-block { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.related-heading { font-family: var(--font-heading); font-weight: 700; font-size: 20px; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.related-item { cursor: pointer; }
.related-thumb { aspect-ratio: 16/9; border-radius: 10px; margin-bottom: 10px; overflow: hidden; background: var(--blue-tint); }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-title { font-weight: 700; font-size: 14px; line-height: 1.3; }
.related-price-thumb { aspect-ratio: 1/1; background: var(--blue-tint); overflow: hidden; }
.related-price-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- PRODUCT PAGE ---------- */
.product-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 24px; }
.product-main-photo { aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; background: var(--blue-tint); }
.product-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-info-cat { color: var(--blue); font-weight: 700; font-size: 12px; text-transform: uppercase; margin-bottom: 10px; }
.product-info-name { font-family: var(--font-heading); font-weight: 800; font-size: 30px; margin: 0 0 14px; }
.product-info-price { color: var(--blue); font-weight: 800; font-size: 26px; margin-bottom: 20px; }
.product-info-desc { color: var(--dark-3); font-size: 16px; line-height: 1.6; margin: 0 0 24px; }
.spec-list { margin-bottom: 24px; }
.spec-item { font-size: 14px; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--border-3); }
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border-2); border-radius: 10px; }
.qty-btn { padding: 12px 18px; cursor: pointer; font-weight: 700; font-size: 18px; background: none; border: none; }
.qty-val { padding: 12px 18px; font-weight: 700; font-size: 15px; min-width: 20px; text-align: center; }
.trust-note { font-size: 13px; color: var(--muted); }

/* ---------- CART ---------- */
.cart-wrap { max-width: 960px; margin: 0 auto; padding: 56px 24px; }
.cart-title { font-family: var(--font-heading); font-weight: 800; font-size: 34px; margin: 0 0 32px; }
.cart-empty { text-align: center; padding: 64px 24px; background: #fff; border-radius: 14px; border: 1px solid var(--border); }
.cart-empty-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.cart-empty-text { color: var(--muted); margin-bottom: 24px; }
.shipping-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 8px 24px; margin-bottom: 20px; }
.shipping-msg { font-size: 13px; color: var(--muted); padding: 12px 0; }
.shipping-track { height: 6px; background: var(--border-3); border-radius: 3px; overflow: hidden; margin-bottom: 16px; }
.shipping-fill { height: 100%; background: var(--blue); }
.cart-items-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 24px; }
.cart-row { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-bottom: 1px solid var(--border-3); flex-wrap: wrap; }
.cart-thumb { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--blue-tint); }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 140px; }
.cart-item-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.cart-item-price { color: var(--muted-3); font-size: 13px; }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--border-2); border-radius: 8px; }
.cart-qty button { padding: 8px 14px; cursor: pointer; font-weight: 700; background: none; border: none; }
.cart-qty span { padding: 8px 12px; font-weight: 700; min-width: 16px; text-align: center; }
.cart-line-total { font-weight: 800; color: var(--blue); min-width: 70px; text-align: right; }
.cart-remove { color: var(--muted-3); cursor: pointer; font-size: 13px; text-decoration: underline; background: none; border: none; }
.cart-summary-wrap { display: flex; justify-content: flex-end; }
.cart-summary { width: 320px; max-width: 100%; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 15px; }
.summary-row.muted { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.summary-total { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); margin-bottom: 20px; }
.summary-total span:last-child { font-weight: 800; color: var(--blue); font-size: 18px; }

/* ---------- CHECKOUT ---------- */
.checkout-wrap { max-width: 900px; margin: 0 auto; padding: 56px 24px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; }
.checkout-form { display: flex; flex-direction: column; gap: 14px; }
.checkout-form .form-label { font-weight: 700; margin-bottom: 4px; }
.pay-options { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.pay-options label { display: flex; align-items: center; gap: 10px; }
.order-summary { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; align-self: start; }
.order-summary-title { font-weight: 700; margin-bottom: 16px; }
.order-line { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border-3); }
.order-total { display: flex; justify-content: space-between; padding-top: 16px; margin-top: 8px; }
.order-total span:last-child { font-weight: 800; color: var(--blue); font-size: 18px; }
.checkout-success { text-align: center; padding: 64px 24px; background: #fff; border-radius: 14px; border: 1px solid var(--border); }
.success-dot { width: 60px; height: 60px; border-radius: 50%; background: var(--blue); margin: 0 auto 20px; }
.success-title { font-family: var(--font-heading); font-weight: 800; font-size: 26px; margin-bottom: 12px; }

/* ---------- FORMS ---------- */
.form-input, .form-textarea, input[type=text], input[type=email] {
  padding: 14px; border: 1px solid var(--border-2); border-radius: 10px; font-size: 15px;
  font-family: var(--font-body); width: 100%;
}
.form-textarea { resize: vertical; }

/* ---------- ABOUT ---------- */
.about-wrap { max-width: 1000px; margin: 0 auto; padding: 56px 24px; }
.about-wrap p.body-p { font-size: 17px; line-height: 1.75; color: var(--dark-3); }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 40px 0; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: var(--blue); }
.stat-label { color: var(--muted); font-size: 14px; margin-top: 6px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
.team-photo { aspect-ratio: 1/1; border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: var(--blue-tint); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-weight: 700; }
.team-role { color: var(--muted); font-size: 14px; }
.rewards-box { background: var(--dark); border-radius: 16px; padding: 32px; }
.rewards-box-title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 10px; }
.rewards-box-text { color: #C7CEDA; font-size: 15px; line-height: 1.6; }

/* ---------- CONTACT ---------- */
.contact-wrap { max-width: 1000px; margin: 0 auto; padding: 56px 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-sent { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 32px; text-align: center; }
.contact-card { background: var(--dark); border-radius: 14px; padding: 28px; color: #fff; }
.contact-card-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 20px; }
.contact-details { font-size: 14px; color: #C7CEDA; line-height: 2; }
.contact-map { margin-top: 20px; aspect-ratio: 16/9; background: repeating-linear-gradient(45deg, var(--dark-2), var(--dark-2) 10px, #142033 10px, #142033 20px); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.contact-map span { font-family: 'Courier New', monospace; font-size: 11px; color: var(--muted-2); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 700; font-size: 15px; background: none; border: none; width: 100%; text-align: left;
}
.faq-icon { color: var(--blue); font-size: 20px; }
.faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }

/* ---------- LEGAL ---------- */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 56px 24px; }
.legal-title { font-family: var(--font-heading); font-weight: 800; font-size: 32px; margin: 0 0 8px; }
.legal-updated { color: var(--muted-3); font-size: 13px; margin: 0 0 32px; }
.legal-body { font-size: 15px; line-height: 1.75; color: var(--dark-3); }
.legal-body h3 { font-family: var(--font-heading); margin-top: 28px; }
.impressum-box { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 32px; font-size: 15px; line-height: 2; color: var(--dark-3); }
.cookie-types { display: grid; gap: 16px; margin: 28px 0; }
.cookie-type { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.cookie-type-title { font-weight: 700; margin-bottom: 6px; }
.cookie-type-text { color: var(--muted); font-size: 14px; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); padding: 20px 24px;
  z-index: 200; display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; border-top: 1px solid var(--dark-2);
}
.cookie-text { color: #C7CEDA; font-size: 14px; max-width: 600px; }
.cookie-text span { color: var(--blue); cursor: pointer; text-decoration: underline; }

/* ---------- TOAST ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--dark); color: #fff;
  padding: 16px 22px; border-radius: 10px; font-size: 14px; font-weight: 600; z-index: 300;
  border-left: 3px solid var(--blue); display: none;
}
.toast.show { display: block; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--dark); padding: 56px 24px 24px; }
.footer-inner { max-width: 1240px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-mark { width: 28px; height: 28px; border-radius: 7px; background: var(--blue); }
.footer-brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 16px; color: #fff; }
.footer-desc { color: var(--muted-2); font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-col-title { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted-3); font-size: 14px; cursor: pointer; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--dark-2); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-text { color: var(--muted); font-size: 13px; }

/* ---------- FORM MESSAGES ---------- */
.form-msg { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; }
.form-msg.error { background: #FDECEC; color: #B42318; border: 1px solid #F5C2C0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .benefits-inner, .tiles-grid { grid-template-columns: repeat(2,1fr); }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .articles-grid, .testimonials-grid, .stats-grid, .team-grid, .related-grid { grid-template-columns: repeat(1,1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .product-detail-grid, .checkout-grid, .contact-grid { grid-template-columns: 1fr; }
  .main-nav { position: fixed; top: 67px; left: 0; right: 0; background: var(--dark); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; display: none; border-bottom: 1px solid var(--dark-2); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .page-title, .hero h1 { font-size: 30px; }
  .cart-row { justify-content: space-between; }
}
