/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --black: #1D1D1F;
  --black-soft: #2C2C2E;
  --accent: #34C759;
  --accent-dark: #248A3D;
  --accent-light: #E8F8EE;
  --red: #FF3B30;
  --bg: #F5F5F7;
  --bg-card: #FFFFFF;
  --border: #E8E8ED;
  --border-dark: #D2D2D7;
  --text: #1D1D1F;
  --text-muted: #6E6E73;
  --text-light: #AEAEB2;
  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Arial, sans-serif; font-size: 16px; color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--black); text-decoration: none; }
a:hover { opacity: 0.75; }
img { max-width: 100%; display: block; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-white { background: var(--bg-card); }
.section-gray { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.5px; margin-bottom: 0.5rem; color: var(--text); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif; }
.section-header p { color: var(--text-muted); font-size: 17px; }
.section-tag { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 0.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
.mt-1 { margin-top: 0.5rem; }

/* ─── Flash ──────────────────────────────────────────────────────────────── */
.flash { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 1.5rem; font-size: 14px; }
.flash-success { background: var(--accent-light); color: var(--accent-dark); border-bottom: 1px solid var(--accent); }
.flash-error { background: #FFF0EE; color: #C0392B; border-bottom: 1px solid var(--red); }
.flash button { background: none; border: none; cursor: pointer; font-size: 18px; opacity: 0.5; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header { background: rgba(255,255,255,0.88); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); color: var(--text); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 0; gap: 1rem; }
.logo { font-size: 18px; font-weight: 700; letter-spacing: -0.3px; color: var(--text); white-space: nowrap; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; }
.logo:hover { opacity: 0.75; }
.main-nav { display: flex; gap: 2rem; align-items: center; }
.main-nav a { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--text); opacity: 1; }
.header-right { display: flex; align-items: center; gap: 0.6rem; }
.header-phone { font-size: 13px; color: var(--text-muted); white-space: nowrap; }
.btn-header-link { color: var(--text-muted); font-size: 13px; font-weight: 500; display: flex; align-items: center; gap: 4px; position: relative; }
.btn-header-link:hover { color: var(--text); opacity: 1; }
.header-link-text { font-size: 13px; }
.btn-cart { display: flex; align-items: center; gap: 5px; background: var(--black); color: #fff; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 8px; position: relative; transition: background 0.2s; }
.btn-cart:hover { background: #333; opacity: 1; }
.btn-cart:hover { opacity: 0.75; }
.cart-badge { background: var(--accent); color: white; font-size: 11px; font-weight: 700; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; display: block; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary, .btn-blue, .btn-green, .btn-outline, .btn-white, .btn-red { display: inline-block; padding: 11px 24px; border-radius: 980px; font-weight: 500; font-size: 15px; border: 1.5px solid transparent; cursor: pointer; transition: all .2s; text-align: center; }
.btn-blue, .btn-primary { background: var(--black); color: white; border-color: var(--black); }
.btn-blue:hover, .btn-primary:hover { background: var(--black-soft); opacity: 1; }
.btn-green { background: var(--accent); color: white; border-color: var(--accent); }
.btn-green:hover { background: var(--accent-dark); opacity: 1; }
.btn-outline { background: transparent; color: var(--black); border-color: var(--border-dark); }
.btn-outline:hover { background: var(--bg); opacity: 1; }
.btn-white { background: white; color: var(--black); border-color: var(--border); }
.btn-white:hover { background: var(--bg); opacity: 1; }
.btn-outline-sm { display: inline-block; padding: 7px 16px; border: 1.5px solid var(--border-dark); color: var(--black); border-radius: 980px; font-size: 14px; margin-top: 6px; margin-right: 6px; }
.btn-outline-sm:hover { border-color: var(--black); opacity: 1; }
.btn-sm { padding: 7px 16px; font-size: 13px; border-radius: 980px; }
.btn-lg { padding: 15px 36px; font-size: 17px; }
.btn-full { width: 100%; display: block; text-align: center; }
.btn-disabled, button:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-primary.btn-sm { background: var(--black); color: white; border-color: var(--black); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { background: var(--bg); color: var(--text); padding: 6rem 0 5rem; text-align: center; }
.hero-badge { display: inline-block; background: var(--accent-light); color: var(--accent-dark); padding: 6px 18px; border-radius: 980px; font-size: 12px; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
.hero h1 { font-size: 56px; font-weight: 700; line-height: 1.08; margin-bottom: 1.25rem; letter-spacing: -1.5px; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif; }
.hero-sub { font-size: 19px; color: var(--text-muted); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.5; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.btn-outline.btn-lg { border-color: var(--border-dark); color: var(--black); }
.btn-outline.btn-lg:hover { background: var(--bg-card); }
.hero-trust { display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap; font-size: 14px; color: var(--text-muted); }

/* ─── Comparison Cards ───────────────────────────────────────────────────── */
.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.comparison-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.75rem; position: relative; box-shadow: var(--shadow-xs); }
.comparison-card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), var(--shadow-sm); }
.card-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); padding: 4px 16px; border-radius: 980px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.card-badge--green { background: var(--accent); color: white; }
.card-badge--blue { background: var(--black); color: white; }
.text-center { text-align: center; }
.product-cat-label { font-size: 12px; color: var(--text-muted); margin-bottom: 0.5rem; }
.comparison-product-name { font-size: 16px; font-weight: 500; margin-bottom: 1rem; }
.price-compare { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 1rem; }
.price-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.price-value { font-size: 34px; font-weight: 600; letter-spacing: -1px; }
.price-green { color: var(--accent-dark); }
.price-red { color: var(--red); }
.price-strikethrough { text-decoration: line-through; font-size: 18px !important; opacity: 0.5; }
.price-arrow { font-size: 22px; color: var(--border-dark); }
.savings-badge { background: var(--accent-light); color: var(--accent-dark); padding: 8px 16px; border-radius: var(--radius); font-size: 14px; font-weight: 600; display: inline-block; }
.tier-hint { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }
.tier-hint-label { margin-bottom: 4px; }

/* ─── Categories ─────────────────────────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.category-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: block; transition: box-shadow .2s, transform .2s; box-shadow: var(--shadow-xs); }
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); opacity: 1; }
.category-icon { font-size: 26px; width: 52px; height: 52px; background: var(--bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.category-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.category-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 1rem; }
.category-footer { display: flex; justify-content: flex-end; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.cat-link { font-size: 13px; color: var(--text); font-weight: 500; }

/* ─── Target & Features ──────────────────────────────────────────────────── */
.target-grid, .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.target-card, .feature-card { text-align: center; padding: 2rem 1.5rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-xs); }
.target-icon, .feature-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 1rem; }
.feature-icon--blue { background: #E8F0FE; }
.feature-icon--green { background: var(--accent-light); }
.feature-icon--yellow { background: #FEF9E7; }
.feature-icon--purple { background: #F3E8FD; }
.target-card h3, .feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.5rem; }
.target-card p, .feature-card p { font-size: 14px; color: var(--text-muted); }

/* ─── Shop ───────────────────────────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; padding-top: 2rem; padding-bottom: 2rem; }
.filter-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 80px; box-shadow: var(--shadow-xs); }
.filter-box h3 { font-size: 15px; font-weight: 600; margin-bottom: 1rem; }
.filter-group { margin-bottom: 1.5rem; }
.filter-label { font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.filter-option { display: block; font-size: 14px; cursor: pointer; padding: 3px 0; line-height: 1.8; }
.filter-option input { margin-right: 8px; accent-color: var(--black); }
.btn-reset { display: block; margin-top: 1rem; width: 100%; padding: 8px; background: transparent; border: 1px solid var(--border); border-radius: 980px; font-size: 13px; color: var(--text-muted); cursor: pointer; text-align: center; }
.btn-reset:hover { border-color: var(--black); color: var(--black); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.shop-count { font-size: 14px; color: var(--text-muted); }
.sort-select { padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; cursor: pointer; background: var(--bg-card); }

/* ─── Product Grid ───────────────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-grid-sm { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s, transform .2s; box-shadow: var(--shadow-xs); }
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card--sold-out { opacity: 0.75; }
.sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.sold-out-overlay span {
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.product-card-image { display: block; background: var(--bg); height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-placeholder { font-size: 64px; opacity: 0.18; }
.product-badge { position: absolute; top: 10px; right: 10px; padding: 4px 10px; border-radius: 980px; font-size: 11px; font-weight: 600; }
.product-badge--br { top: auto; bottom: 10px; right: 10px; }
.badge-green { background: var(--accent); color: white; }
.badge-blue { background: var(--black); color: white; }
.badge-red { background: var(--red); color: white; }
.badge-savings { background: #10B981; color: white; font-size: 12px; font-weight: 700; padding: 5px 10px; }
.product-card-body { padding: 1.25rem; }
.product-tag { font-size: 11px; color: var(--accent-dark); font-weight: 600; margin-bottom: 0.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
.product-name { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 0.25rem; line-height: 1.4; }
.product-name a { color: inherit; }
.product-short-desc { font-size: 12px; color: #6B7280; margin: 0.25rem 0 0.5rem; line-height: 1.4; }
.product-name a:hover { opacity: 0.7; }
.product-sku { font-size: 12px; color: var(--text-light); margin-bottom: 0.75rem; }
.tier-table { background: var(--bg); padding: 10px; border-radius: var(--radius); margin-bottom: 1rem; }
.tier-table-label { font-size: 11px; color: var(--text-light); margin-bottom: 6px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
.tier-table-row { display: flex; justify-content: space-between; font-size: 13px; }
.tier-qty { color: var(--text-muted); }
.tier-price { font-weight: 600; }
.tier-price--green { color: var(--accent-dark); }
.product-order-row { display: flex; gap: 8px; margin-bottom: 0.75rem; }
.qty-input { flex: 1; padding: 10px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: var(--bg-card); }
.btn-add-cart { flex: 2; padding: 10px 16px; background: var(--black); color: white; border: none; border-radius: 8px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .2s; }
.btn-add-cart:hover { background: var(--black-soft); }
.product-stock { font-size: 12px; text-align: center; }
.stock-in { color: var(--accent-dark); }
.stock-out { color: var(--red); }
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 2rem; }
.page-btn { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: var(--bg-card); }
.page-btn--active { background: var(--black); color: white; border-color: var(--black); }

/* ─── Schnell-Bestellformular ───────────────────────────────────────────── */
/* ─── Schnellbestellung ──────────────────────────────────────────────────── */
.schnell-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); margin: 2rem 0; box-shadow: var(--shadow-sm); overflow: hidden; }
.schnell-inner { padding: 2rem 2.5rem; }
.schnell-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.schnell-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.schnell-header h2 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.schnell-header p { font-size: 13px; color: var(--text-muted); }
.schnell-col-labels { display: grid; grid-template-columns: 1fr 120px 36px; gap: 0.5rem; margin-bottom: 0.5rem; padding: 0 2px; }
.schnell-col-labels span { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.schnell-line { display: grid; grid-template-columns: 1fr 120px 36px; gap: 0.5rem; margin-bottom: 0.5rem; }
.schnell-sku, .schnell-qty { background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; padding: 10px 12px; color: var(--text); font-size: 14px; transition: border-color .15s; width: 100%; }
.schnell-sku::placeholder, .schnell-qty::placeholder { color: var(--text-light); }
.schnell-sku:focus, .schnell-qty:focus { outline: none; border-color: var(--accent); background: var(--bg-card); box-shadow: 0 0 0 3px rgba(52,199,89,0.1); }
.schnell-remove { background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; color: var(--text-muted); cursor: pointer; font-size: 13px; transition: all .15s; display: flex; align-items: center; justify-content: center; }
.schnell-remove:hover { background: #FFF0EE; border-color: var(--red); color: var(--red); }
.schnell-actions { display: flex; gap: 0.75rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
.schnell-add-btn { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); border-radius: 8px; padding: 9px 16px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .15s; }
.schnell-add-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.schnell-submit-btn { background: var(--accent); border: none; color: white; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .15s; }
.schnell-submit-btn:hover { background: var(--accent-dark); }
.schnell-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.schnell-msg { margin-top: 0.75rem; padding: 10px 14px; border-radius: 8px; font-size: 14px; }
.schnell-msg--ok { background: var(--accent-light); border: 1px solid rgba(52,199,89,0.3); color: var(--accent-dark); }
.schnell-msg--err { background: #FFF0EE; border: 1px solid rgba(255,59,48,0.3); color: #C0392B; }
.schnell-msg ul { margin: 4px 0 0 16px; font-size: 13px; }

/* ─── Product Detail ─────────────────────────────────────────────────────── */
.breadcrumb { font-size: 13px; color: var(--text-muted); padding: 1.25rem 0; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--text); }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-bottom: 3rem; }
.gallery-main { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-bottom: 0.75rem; min-height: 300px; display: flex; align-items: center; justify-content: center; }
.gallery-main img { max-height: 300px; object-fit: contain; }
.gallery-placeholder { font-size: 100px; opacity: 0.15; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-thumb { background: var(--bg); border: 2px solid transparent; border-radius: var(--radius); padding: 8px; cursor: pointer; overflow: hidden; }
.gallery-thumb.active { border-color: var(--black); }
.gallery-thumb img { width: 100%; height: 60px; object-fit: cover; }
.product-badge-detail { display: inline-block; padding: 4px 14px; border-radius: 980px; font-size: 12px; font-weight: 600; margin-bottom: 0.75rem; }
.product-detail-title { font-size: 32px; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; line-height: 1.2; letter-spacing: -0.5px; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif; }
.product-detail-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 1.25rem; }
.text-green { color: var(--accent-dark); }
.text-red { color: var(--red); }
.market-price-box { background: var(--bg); border-left: 3px solid var(--accent); padding: 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1.5rem; }
.market-price-label { font-size: 13px; color: var(--text-muted); margin-bottom: 0.5rem; }
.market-price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.savings-text { font-size: 14px; color: var(--accent-dark); font-weight: 600; }
.tier-box { background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.tier-box h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 1rem; }
.tier-option-row { display: flex; align-items: center; padding: 12px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; margin-bottom: 8px; transition: border-color .2s; }
.tier-option-row.selected { border-color: var(--black); background: var(--bg-card); }
.tier-option-info { flex: 1; }
.tier-option-range { font-size: 14px; font-weight: 500; color: var(--text); }
.tier-option-sub { font-size: 12px; color: var(--text-muted); }
.tier-option-price { text-align: right; }
.tier-price-val { font-size: 22px; font-weight: 600; letter-spacing: -0.5px; }
.qty-section { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.qty-label { font-size: 14px; font-weight: 500; margin-bottom: 0.75rem; }
.qty-row { display: flex; gap: 8px; margin-bottom: 1rem; }
.qty-input-lg { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 16px; background: var(--bg-card); }
.btn-qty-adj { padding: 12px 16px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; cursor: pointer; }
.btn-qty-adj:hover { background: var(--border); }
.price-summary { background: var(--accent-light); padding: 1rem; border-radius: var(--radius); margin-bottom: 0.75rem; }
.price-summary-row { display: flex; justify-content: space-between; align-items: center; }
.price-total-big { font-size: 30px; font-weight: 700; color: var(--accent-dark); letter-spacing: -0.5px; }
.price-summary-note { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.tip-box { background: #FFF9E6; padding: 10px 14px; border-radius: var(--radius); font-size: 13px; color: #7D5A00; margin-bottom: 0.75rem; border: 1px solid #FFE58A; }
.btn-add-cart-lg { width: 100%; padding: 15px; border: none; border-radius: 980px; font-size: 16px; font-weight: 600; cursor: pointer; margin-bottom: 8px; transition: all .2s; }
.btn-blue-full { background: var(--black); color: white; }
.btn-blue-full:hover { background: var(--black-soft); }
.btn-outline-full { border: 1.5px solid var(--border-dark); color: var(--black); background: var(--bg-card); border-radius: 980px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: center; }
.trust-item { padding: 12px; background: var(--bg); border-radius: var(--radius); }
.trust-item span { font-size: 20px; display: block; margin-bottom: 4px; }
.trust-item small { font-size: 12px; color: var(--text-muted); }
.product-tabs { border-top: 1px solid var(--border); padding-top: 2rem; margin-top: 2rem; }
.tab-nav { display: flex; gap: 0.25rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.tab-btn { padding: 10px 20px; background: transparent; border: none; font-size: 14px; font-weight: 500; cursor: pointer; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn.tab-active { color: var(--text); border-bottom-color: var(--text); }
.tab-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
.product-description { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.app-list { padding-left: 1.5rem; color: var(--text-muted); line-height: 2; }
.why-box { background: var(--accent-light); border: 1px solid rgba(52,199,89,0.3); border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1.25rem; }
.why-box h3 { font-size: 15px; font-weight: 600; color: var(--accent-dark); margin-bottom: 0.75rem; }
.why-list { list-style: none; font-size: 14px; color: var(--accent-dark); line-height: 1.9; }
.contact-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.contact-box h3 { font-size: 15px; font-weight: 500; margin-bottom: 0.5rem; }
.contact-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 0.75rem; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--bg); border-radius: var(--radius); overflow: hidden; }
.specs-table td { padding: 11px 14px; }
.specs-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.specs-table td:first-child { color: var(--text-muted); width: 40%; }
.specs-table td:last-child { font-weight: 500; }
.why-content { max-width: 700px; }
.why-content h2 { font-size: 26px; font-weight: 600; margin-bottom: 1rem; letter-spacing: -0.5px; }
.comparison-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.comparison-logos div { background: var(--bg); padding: 1rem; border-radius: var(--radius); font-size: 14px; }
.related-products { padding-top: 2rem; border-top: 1px solid var(--border); margin-top: 2rem; }
.related-products h2 { font-size: 22px; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: -0.3px; }

/* ─── Cart ───────────────────────────────────────────────────────────────── */
.page-title { font-size: 30px; font-weight: 700; padding: 2rem 0 1.5rem; letter-spacing: -0.5px; }
.empty-state { text-align: center; padding: 5rem 2rem; }
.empty-icon { font-size: 64px; margin-bottom: 1rem; opacity: 0.25; }
.empty-state h2 { font-size: 24px; font-weight: 600; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2rem; align-items: start; padding-bottom: 3rem; }
.cart-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cart-table th { text-align: left; padding: 10px 12px; border-bottom: 1.5px solid var(--border); font-weight: 500; color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.cart-table td { padding: 1rem 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product-name { font-weight: 500; color: var(--text); display: block; margin-bottom: 4px; }
.tier-hint-sm { font-size: 11px; color: var(--text-light); margin-top: 4px; display: flex; gap: 8px; flex-wrap: wrap; }
.tier-hint-sm span { padding: 2px 6px; border-radius: 4px; background: var(--bg); }
.tier-hint-sm .tier-active { background: var(--accent-light); color: var(--accent-dark); }
.cart-tier-nudge { font-size: 12px; color: #92400E; background: #FFFBEB; border: 1px solid #FDE68A; border-radius: 6px; padding: 5px 10px; margin-top: 6px; line-height: 1.4; }
.qty-form { display: flex; align-items: center; }
.btn-remove { background: none; border: none; font-size: 20px; color: var(--text-light); cursor: pointer; padding: 4px 8px; border-radius: 6px; }
.btn-remove:hover { background: #FFF0EE; color: var(--red); }
.cart-actions { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.saved-cart-link { display: flex; align-items: center; gap: 8px; margin-top: 1rem; padding: 12px; background: var(--bg); border-radius: var(--radius); font-size: 13px; }
.link-input { flex: 1; padding: 6px 10px; border: 1px solid var(--border); border-radius: 6px; font-size: 13px; }
.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 90px; box-shadow: var(--shadow-xs); }
.cart-summary h3 { font-size: 18px; font-weight: 600; margin-bottom: 1rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 0.75rem; }
.summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 1rem; border-top: 1.5px solid var(--border); margin-top: 0.5rem; margin-bottom: 1rem; }
.summary-vat { font-size: 11px; color: var(--text-light); margin-bottom: 1rem; }
.shipping-hint { font-size: 13px; color: var(--text-muted); margin-bottom: 0.75rem; background: #FFF9E6; padding: 10px; border-radius: var(--radius); border: 1px solid #FFE58A; }
.shipping-bar { background: var(--border); border-radius: 4px; height: 3px; margin-top: 6px; }
.shipping-bar-fill { background: var(--accent); height: 100%; border-radius: 4px; }
.payment-icons { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 0.75rem; display: flex; justify-content: center; gap: 1rem; }

/* ─── Checkout ────────────────────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; padding-bottom: 3rem; }
.form-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; margin-bottom: 1.25rem; }
.form-section h2 { font-size: 18px; font-weight: 600; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: inherit; transition: border-color .2s; background: var(--bg-card); color: var(--text); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--black); box-shadow: 0 0 0 3px rgba(29,29,31,.08); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.payment-options { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1.5px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: border-color .2s; }
.payment-option.selected { border-color: var(--black); background: var(--bg); }
.payment-option input { margin: 0; accent-color: var(--black); }
.payment-option strong { display: block; font-size: 15px; }
.payment-option p { font-size: 13px; color: var(--text-muted); margin: 0; }
.payment-option--locked { cursor: not-allowed; opacity: 0.7; background: #F9FAFB; }
.payment-locked-icon { font-size: 18px; flex-shrink: 0; }
.form-agb { background: transparent !important; border: none !important; padding: 0.5rem 0 !important; }
.checkbox-label { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; cursor: pointer; }
.checkout-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; position: sticky; top: 90px; box-shadow: var(--shadow-xs); }
.checkout-summary h3 { font-size: 16px; font-weight: 600; margin-bottom: 1rem; }
.checkout-item { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); font-size: 14px; }
.checkout-item-name { grid-column: 1; font-weight: 500; }
.checkout-item-qty { grid-column: 1; color: var(--text-muted); font-size: 13px; }
.checkout-item-total { grid-column: 2; grid-row: 1; font-weight: 500; text-align: right; }

/* ─── Confirmation ────────────────────────────────────────────────────────── */
.confirmation-box { max-width: 600px; margin: 3rem auto; text-align: center; padding: 2rem; }
.confirmation-icon { width: 80px; height: 80px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 1.5rem; color: var(--accent-dark); }
.confirmation-number { font-size: 16px; color: var(--text-muted); margin-bottom: 0.75rem; }
.bank-info { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin: 1.5rem 0; text-align: left; }
.bank-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.75rem; }
.bank-details { font-size: 14px; line-height: 2; }
.order-summary-confirm { background: var(--bg); border-radius: var(--radius-lg); padding: 1.25rem; margin: 1.5rem 0; text-align: left; }
.confirm-item { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.confirm-total { display: flex; justify-content: space-between; font-size: 15px; padding-top: 0.75rem; font-weight: 600; }
.confirmation-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }

/* ─── Auth ────────────────────────────────────────────────────────────────── */
.auth-box { max-width: 520px; margin: 3rem auto 4rem; }
.auth-tabs { display: flex; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.auth-tab { flex: 1; text-align: center; padding: 12px; font-weight: 500; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; display: block; }
.auth-tab.active { color: var(--text); border-bottom-color: var(--text); }
.auth-box h1 { font-size: 26px; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.auth-form .form-group { margin-bottom: 1rem; }
.auth-switch { font-size: 14px; text-align: center; margin-top: 1rem; color: var(--text-muted); }

/* ─── Account ─────────────────────────────────────────────────────────────── */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; padding: 2rem 0 3rem; }
.account-sidebar { position: sticky; top: 90px; }
.account-sidebar h3 { font-size: 11px; font-weight: 600; color: var(--text-light); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.account-sidebar nav { display: flex; flex-direction: column; gap: 2px; }
.account-sidebar nav a { display: block; padding: 9px 12px; border-radius: var(--radius); font-size: 14px; color: var(--text-muted); }
.account-sidebar nav a.active, .account-sidebar nav a:hover { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); opacity: 1; }
.account-content h1 { font-size: 26px; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.5px; }
.section-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; }
.section-card h2 { font-size: 17px; font-weight: 600; margin-bottom: 1rem; }
.account-stats { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.account-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1rem 1.5rem; text-align: center; }
.stat-num { font-size: 32px; font-weight: 700; color: var(--text); letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-muted); }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { text-align: left; padding: 10px 12px; border-bottom: 1.5px solid var(--border); font-weight: 500; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.data-table td { padding: 12px; border-bottom: 1px solid var(--border); }
.status-badge { padding: 3px 10px; border-radius: 980px; font-size: 12px; font-weight: 500; }
.status-success { background: var(--accent-light); color: var(--accent-dark); }
.status-info { background: #E8F0FE; color: #1A56DB; }
.status-warning { background: #FEF9E7; color: #7D5A00; }
.status-primary { background: #F3E8FD; color: #6B21A8; }
.status-danger { background: #FFF0EE; color: #C0392B; }
.status-secondary { background: var(--bg); color: var(--text-muted); }
.order-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; }
.order-card-header { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; background: var(--bg); border-bottom: 1px solid var(--border); font-size: 14px; }
.order-items-preview { padding: 0.75rem 1.25rem; }
.order-item-row { display: flex; justify-content: space-between; font-size: 14px; padding: 4px 0; }
.order-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 1.25rem; border-top: 1px solid var(--border); font-size: 14px; }
.order-totals { margin-top: 1rem; }
.order-meta { display: flex; gap: 1.5rem; align-items: center; font-size: 14px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.back-link { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 1rem; }
.back-link:hover { color: var(--text); opacity: 1; }

/* ─── Pages ───────────────────────────────────────────────────────────────── */
.page-content { max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem; }
.page-content h1 { font-size: 36px; font-weight: 700; margin-bottom: 2rem; letter-spacing: -0.5px; }
.page-content h2 { font-size: 22px; font-weight: 600; margin: 2rem 0 0.75rem; }
.page-content h3 { font-size: 18px; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.page-content p, .page-content li { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 0.75rem; }
.legal-content { max-width: 760px; }
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; }
.about-box { background: var(--bg); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; border: 1px solid var(--border); }
.about-box h3 { font-size: 16px; font-weight: 600; margin-bottom: 0.75rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stats div { text-align: center; }
.about-stats span { display: block; font-size: 28px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; }
.about-stats small { font-size: 13px; color: var(--text-muted); }

/* Lieferanten Logos */
.supplier-logos { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.supplier-card { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.supplier-logo-box { width: 64px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; letter-spacing: 1px; color: white; flex-shrink: 0; }
.supplier-onka { background: linear-gradient(135deg, #1E3A8A, #2563EB); }
.supplier-tork { background: linear-gradient(135deg, #065F46, #059669); }
.supplier-info { display: flex; flex-direction: column; gap: 2px; }
.supplier-info strong { font-size: 14px; font-weight: 600; }
.supplier-info span { font-size: 12px; color: var(--text-muted); }
.supplier-cert { color: var(--accent-dark) !important; font-weight: 500 !important; font-size: 11px !important; }

/* CE Sertifika Download */
.cert-downloads { margin-top: 0.75rem; }
.cert-download-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--radius); text-decoration: none; color: var(--text); transition: all .2s; }
.cert-download-btn:hover { border-color: var(--accent); background: var(--accent-light); opacity: 1; }
.cert-icon { font-size: 28px; flex-shrink: 0; }
.cert-download-btn strong { display: block; font-size: 14px; }
.cert-download-btn small { font-size: 12px; color: var(--text-muted); }
.cert-dl { margin-left: auto; font-size: 18px; color: var(--accent-dark); font-weight: 700; flex-shrink: 0; }
.contact-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; }
.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.contact-info-card h2 { font-size: 20px; font-weight: 600; margin-bottom: 1.25rem; }
.btn-callback { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: white; font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 980px; text-decoration: none; transition: background 0.15s; }
.btn-callback:hover { background: var(--accent-dark); }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 1.25rem; font-size: 14px; }
.contact-info-icon { font-size: 20px; min-width: 28px; }
.contact-form .form-group { margin-bottom: 0.75rem; }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; background: none; border: none; font-size: 16px; font-weight: 500; cursor: pointer; text-align: left; color: var(--text); }
.faq-question span:first-child { flex: 1; }
.faq-icon { font-size: 22px; color: var(--text-light); transition: transform .2s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.faq-contact { text-align: center; margin-top: 2rem; font-size: 15px; }

/* ─── Error page ─────────────────────────────────────────────────────────── */
.error-page { text-align: center; padding: 6rem 2rem; }
.error-code { font-size: 96px; font-weight: 700; color: var(--border); letter-spacing: -3px; }
.error-page h1 { font-size: 28px; font-weight: 600; margin-bottom: 0.75rem; }
.error-page p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ─── Trust Strip ────────────────────────────────────────────────────────── */
.trust-strip { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; padding: 1rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 1.5rem 0; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 13px; font-weight: 500; color: var(--text-muted); }
.trust-icon { font-size: 16px; }
@media (max-width: 600px) {
  .trust-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem; }
}

/* ─── Trust Bar (temiz yatay şerit) ─────────────────────────────────────── */
.trust-bar { display: flex; align-items: center; justify-content: center; gap: 1.75rem; flex-wrap: wrap; padding: 0.75rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: 1.25rem; }
.trust-bar-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--text); white-space: nowrap; }
.trust-bar-item svg { flex-shrink: 0; }
@media (max-width: 768px) { .trust-bar { gap: 0.625rem 1rem; padding: 0.625rem 0.875rem; } .trust-bar-item { font-size: 12px; } }
@media (max-width: 480px) { .trust-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; } .trust-bar-item { font-size: 11px; white-space: normal; } }

/* ─── Services Section ───────────────────────────────────────────────────── */
.services-section { padding: 3rem 0; background: var(--bg-card); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.service-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 1rem; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* ─── Footer Services Strip ──────────────────────────────────────────────── */
.footer-services { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; padding: 0.75rem 0 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; }
.footer-service-item { display: flex; align-items: center; gap: 0.4rem; font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-service-item span:first-child { font-size: 14px; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer-cta { background: var(--black); color: white; padding: 4rem 0; text-align: center; }
.footer-cta h2 { font-size: 32px; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.footer-cta p { font-size: 16px; opacity: 0.7; max-width: 480px; margin: 0 auto 1.5rem; }
.price-list-input { display: flex; gap: 0.75rem; justify-content: center; max-width: 480px; margin: 0 auto; }
.price-list-input input { flex: 1; padding: 12px 18px; border: none; border-radius: 980px; font-size: 15px; background: rgba(255,255,255,0.12); color: white; }
.price-list-input input::placeholder { color: rgba(255,255,255,0.45); }
.price-list-input .btn-green { border-radius: 980px; }
.footer-cta-note { font-size: 12px; margin-top: 5rem !important; opacity: 0.45; }
.footer-main { background: var(--black-soft); color: white; padding: 3rem 0; }
.footer-logo { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; color: white; margin-bottom: 0.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer-grid h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-links { font-size: 13px; line-height: 2.2; color: rgba(255,255,255,0.65); }
.footer-links a { color: rgba(255,255,255,0.65); display: block; }
.footer-links a:hover { color: white; opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.social-links { display: flex; align-items: center; gap: 0.5rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); transition: background 0.2s, color 0.2s; }
.social-link:hover { background: rgba(255,255,255,0.15); color: #fff; opacity: 1; }
.text-gray { color: var(--text-muted); }

/* ─── Cart Toast ─────────────────────────────────────────────────────────── */
.cart-toast { position: fixed; top: 5rem; left: 50%; transform: translateX(-50%); background: var(--black); color: white; padding: 0.875rem 1.5rem; border-radius: var(--radius-lg); font-size: 14px; z-index: 99999; box-shadow: var(--shadow-md); animation: slideIn .3s ease; white-space: nowrap; max-width: 90vw; text-align: center; }
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ─── Header Left ─────────────────────────────────────────────────────────── */
.header-left { display: flex; align-items: center; gap: 2rem; }

/* ─── Table Scroll Wrapper ───────────────────────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }

/* ─── Filter Toggle (desktop hidden) ────────────────────────────────────── */
.filter-toggle-btn { display: none; width: 100%; padding: 10px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; text-align: left; margin-bottom: 0.75rem; }
.filter-toggle-btn .ft-arrow { float: right; transition: transform .2s; }
.filter-toggle-btn.open .ft-arrow { transform: rotate(180deg); }
.shop-filter-body { display: block; }

/* ─── Account Stats ──────────────────────────────────────────────────────── */
.account-stats { flex-wrap: wrap; }
.account-stat { flex: 1; min-width: 120px; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .tab-grid { grid-template-columns: 1fr; }
}

/* (768px responsive rules consolidated below — see comprehensive blocks) */

/* (480px responsive rules consolidated below — see comprehensive blocks) */

/* ─── Merken & Vergleichen Buttons ─────────────────────────────────────────── */
.product-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.btn-merken, .btn-vergleichen, .btn-share-cart {
  flex: 1;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1.5px solid;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-share-cart { color: #6B7280; border-color: #D1D5DB; }
.btn-share-cart:hover { background: #F3F4F6; border-color: #9CA3AF; }
.btn-merken {
  color: #EF4444;
  border-color: #EF4444;
}
.btn-merken:hover, .btn-merken.active {
  background: #EF4444;
  color: #fff;
}
.btn-vergleichen {
  color: #3B82F6;
  border-color: #3B82F6;
}
.btn-vergleichen:hover, .btn-vergleichen.active {
  background: #3B82F6;
  color: #fff;
}

/* ─── Merkliste Header Badge ─────────────────────────────────────────────── */
.merkliste-badge {
  background: #EF4444 !important;
}

/* ─── Merkliste Page ──────────────────────────────────────────────────────── */
.merkliste-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.merkliste-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.merkliste-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
  overflow: hidden;
}
.merkliste-card-img img {
  max-height: 100%;
  object-fit: contain;
}
.merkliste-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.merkliste-card-name {
  font-weight: 600;
  font-size: 14px;
  color: #1D1D1F;
}
.merkliste-card-price {
  font-size: 13px;
  color: #34C759;
  font-weight: 600;
}
.merkliste-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.merkliste-card-actions a {
  flex: 1;
  text-align: center;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: #1D1D1F;
  color: #fff;
  text-decoration: none;
}
.merkliste-card-actions form button {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  border: 1.5px solid #EF4444;
  color: #EF4444;
  cursor: pointer;
}

/* ─── Vergleich Grid ──────────────────────────────────────────────────────── */
.vergleich-grid {
  display: grid;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.vergleich-label {
  background: #F9FAFB;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
}
.vergleich-cell {
  padding: 14px 16px;
  font-size: 14px;
  color: #1D1D1F;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
}
.vergleich-product-header {
  padding: 1.25rem;
  border-bottom: 1px solid #E5E7EB;
  border-right: 1px solid #E5E7EB;
  text-align: center;
}
.vergleich-product-header img {
  max-height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}
.vergleich-product-header h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.vergleich-product-header h3 a {
  color: #1D1D1F;
  text-decoration: none;
}
.vergleich-sku {
  font-size: 12px;
  color: #6B7280;
  margin-top: 4px;
}
.vergleich-img-placeholder {
  font-size: 48px;
  margin-bottom: 8px;
}
.text-green { color: #34C759; font-weight: 600; }
.text-red { color: #EF4444; font-weight: 600; }

/* ─── Coupon Box (Checkout) ───────────────────────────────────────────────── */
.coupon-box {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E5E7EB;
}
.coupon-row {
  display: flex;
  gap: 8px;
}
.coupon-input {
  flex: 1;
  padding: 8px 12px;
  border: 1.5px solid #E5E7EB;
  border-radius: 8px;
  font-size: 14px;
  text-transform: uppercase;
}
.coupon-input:focus {
  outline: none;
  border-color: #34C759;
}

/* ─── Badge Savings ───────────────────────────────────────────────────────── */
.badge-savings { background: #10B981; color: #fff; }
.product-short-desc { font-size: 12px; color: var(--text-muted); margin: 4px 0 6px; line-height: 1.4; }
.product-badge--br { bottom: 8px; right: 8px; top: auto; left: auto; }

/* ─── Rückruf Button ──────────────────────────────────────────────────────── */
.btn-callback { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff; border-radius: 980px; padding: 12px 24px; font-weight: 600; font-size: 15px; border: none; cursor: pointer; text-decoration: none; transition: background .15s; }
.btn-callback:hover { background: var(--accent-dark); opacity: 1; color: #fff; }

/* ─── WhatsApp Hero Button ───────────────────────────────────────────────── */
.btn-wa { display: inline-flex; align-items: center; background: #25D366; color: #fff; border: 1.5px solid #25D366; border-radius: 980px; padding: 11px 24px; font-weight: 500; font-size: 15px; text-decoration: none; transition: background .15s, opacity .15s; }
.btn-wa:hover { background: #1ebe5a; opacity: 1; color: #fff; }

/* ─── Floating WhatsApp Button ───────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; left: 28px; right: auto; z-index: 9999; display: flex; align-items: center; gap: 8px; background: #25D366; color: #fff; border-radius: 980px; padding: 13px 20px 13px 16px; box-shadow: 0 4px 20px rgba(37,211,102,.45); text-decoration: none; font-weight: 600; font-size: 14px; transition: transform .18s, box-shadow .18s; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.55); opacity: 1; color: #fff; }
.wa-float-label { letter-spacing: .01em; }
@media (max-width: 600px) {
  .wa-float { padding: 13px; border-radius: 50%; bottom: 20px; left: 16px; }
  .wa-float-label { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 900px)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Header */
  .header-phone { display: none; }
  .header-right { gap: 0.75rem; }

  /* Shop layout */
  .shop-layout { grid-template-columns: 1fr; gap: 1rem; }
  .shop-sidebar { position: static; top: auto; }
  .filter-desktop-h { display: none; }
  .filter-toggle-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .shop-filter-body { display: none; }
  .shop-filter-body.open { display: block; }
  .filter-box { padding: 0.875rem 1rem; border-radius: var(--radius); }

  /* Product grid → 2 columns */
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  /* Checkout */
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }

  /* Cart */
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-items { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Account */
  .account-layout { grid-template-columns: 1fr; gap: 1rem; }
  .account-sidebar { position: static; }
  .account-sidebar nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .account-sidebar nav a { flex: 1; min-width: 120px; text-align: center; padding: 8px 12px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  .hamburger { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: -1.5rem; right: -1.5rem;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    flex-direction: column; padding: 0.5rem 1.5rem 1rem; gap: 0;
    border-bottom: 1px solid var(--border); border-top: 1px solid var(--border);
    z-index: 200; box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); color: var(--text); font-size: 15px; }
  .main-nav a:last-child { border-bottom: none; }
  .header-inner { flex-wrap: nowrap; position: relative; }
  .header-left { gap: 0.75rem; flex: 1; min-width: 0; }
  .header-right { gap: 0.5rem; flex-shrink: 0; }
  .btn-primary.btn-sm { display: none; }
  .header-icons { gap: 8px; }

  /* Page headings */
  .page-title { font-size: 22px; padding: 1.25rem 0 1rem; }

  /* Hero */
  .hero { padding: 4rem 0 3rem; }
  .hero h1 { font-size: 34px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btns .btn-lg { width: 100%; max-width: 320px; }
  .hero-trust { gap: 1.25rem; font-size: 13px; flex-wrap: wrap; }

  /* Section */
  .section { padding: 2.5rem 0; }
  .section-header h2 { font-size: 24px; }
  .section-header p { font-size: 15px; }

  /* Shop toolbar */
  .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .sort-select { width: 100%; }

  /* Product cards */
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-card-body { padding: 0.75rem; }
  .product-name { font-size: 13px; }
  .product-actions-row { flex-direction: column; gap: 5px; }
  .btn-merken, .btn-vergleichen { flex: none; width: 100%; }

  /* Tier table compact */
  .tier-table-row { flex-wrap: wrap; gap: 4px; }
  .tier-table-row > div { flex: 1; min-width: 58px; }

  /* Product detail */
  .product-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-detail-title { font-size: 22px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .tier-option-row { flex-wrap: wrap; gap: 8px; }
  .tier-price-val { font-size: 20px; }
  .qty-row { flex-wrap: wrap; }
  .qty-input-lg { flex: 1 1 80px; }
  .tab-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding-bottom: 0; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; padding: 10px 14px; font-size: 13px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  /* Cart */
  .cart-table { min-width: 480px; }
  .cart-table th, .cart-table td { padding: 0.75rem 8px; font-size: 13px; }
  .cart-actions { flex-direction: column; gap: 0.75rem; }
  .cart-actions .btn-outline { order: 2; }
  .cart-actions .btn-green { order: 1; }

  /* Checkout */
  .form-grid { grid-template-columns: 1fr; }
  .section-card { padding: 1.25rem; }
  .section-card .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Schnellbestellung */
  .schnell-inner { padding: 1.25rem 1rem; }
  .schnell-header { gap: 0.75rem; }
  .schnell-icon { width: 36px; height: 36px; font-size: 18px; border-radius: 10px; }
  .schnell-col-labels { grid-template-columns: 1fr 80px 36px; }
  .schnell-line { grid-template-columns: 1fr 80px 36px; }
  .schnell-actions { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .schnell-add-btn, .schnell-submit-btn { width: 100%; text-align: center; justify-content: center; }

  /* Merkliste */
  .merkliste-grid { grid-template-columns: 1fr 1fr; }

  /* Vergleich */
  .vergleich-grid { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Account */
  .account-stat { padding: 0.75rem 1rem; }
  .stat-num { font-size: 26px; }
  .account-stats { flex-direction: column; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-cta h2 { font-size: 22px; }
  .price-list-input { flex-direction: column; }

  /* Pagination */
  .pagination { gap: 4px; flex-wrap: wrap; }
  .page-btn { padding: 7px 12px; font-size: 13px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: 26px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .hero-trust { gap: 1rem; font-size: 12px; }

  /* Grids → 1 column */
  .comparison-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .target-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .target-card, .feature-card { padding: 1.25rem 0.75rem; }

  /* Product grid → 1 column on very small screens */
  .product-grid { grid-template-columns: 1fr; }
  .merkliste-grid { grid-template-columns: 1fr; }

  /* Buttons */
  .btn-lg { padding: 12px 24px; font-size: 15px; }

  /* Section */
  .section-header h2 { font-size: 20px; }
  .section { padding: 2rem 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-cta { padding: 2rem 0; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  /* Cart table horizontal scroll */
  .cart-table { min-width: 360px; }

  /* Coupon row */
  .coupon-row { flex-direction: column; }
  .coupon-input, .coupon-row .btn-outline { width: 100%; }

  /* Schnellbestellung — stack qty below sku on tiny screens */
  .schnell-col-labels { grid-template-columns: 1fr 70px 32px; font-size: 10px; }
  .schnell-line { grid-template-columns: 1fr 70px 32px; }
}

/* ─── Cookie Consent Banner ──────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(29,29,31,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.cookie-banner-text { flex: 1; }
.cookie-banner-text strong { color: #fff; font-size: 15px; display: block; margin-bottom: 0.3rem; }
.cookie-banner-text p { color: #AEAEB2; font-size: 13px; margin: 0; line-height: 1.5; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-decline {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #AEAEB2;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-cookie-decline:hover { border-color: #fff; color: #fff; }
.btn-cookie-accept {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-cookie-accept:hover { background: var(--accent-dark); }

/* Cookie banner mobile */
@media (max-width: 640px) {
  .cookie-banner-inner { flex-direction: column; gap: 1rem; align-items: stretch; }
  .cookie-banner-actions { flex-direction: column; }
  .btn-cookie-decline, .btn-cookie-accept { width: 100%; text-align: center; }
}

/* ─── Account Delete Section ─────────────────────────────────────────────── */
.danger-zone {
  border: 1px solid #FFCDD2;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
  background: #FFF8F8;
}
.danger-zone h2 { color: var(--red); margin-bottom: 0.5rem; font-size: 18px; }
.danger-zone p { color: var(--text-muted); font-size: 14px; margin-bottom: 1rem; }
.btn-danger {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-danger:hover { opacity: 0.85; }

/* ─── Auth consent checkbox ──────────────────────────────────────────────── */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
.checkbox-label a { color: var(--accent); text-decoration: underline; }

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats-bar { background: var(--black); padding: 2.5rem 0; }
.stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; padding: 0.5rem 1rem; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--accent); letter-spacing: -1px; line-height: 1; }
.stat-label { font-size: 13px; color: #9CA3AF; margin-top: 0.4rem; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ─── Products Grid (homepage) ───────────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.product-card { background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; color: var(--text); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); opacity: 1; }
.product-img-wrap { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.product-badge { position: absolute; top: 0.6rem; left: 0.6rem; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.product-badge--hot { background: var(--accent); color: #fff; }
.product-badge--out { background: #FF3B30; color: #fff; }
.product-info { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.product-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent); font-weight: 600; }
.product-name { font-size: 14px; font-weight: 600; line-height: 1.4; color: var(--text); flex: 1; }
.product-sku { font-size: 11px; color: var(--text-light); }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 0.5rem; }
.product-price { font-size: 13px; color: var(--text-muted); }
.product-price strong { color: var(--accent); font-size: 15px; }
.product-cta { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ─── How it works / Steps ───────────────────────────────────────────────── */
.steps-grid { display: flex; align-items: center; gap: 0; }
.step-card { flex: 1; text-align: center; padding: 2rem 1.5rem; background: var(--bg); border-radius: var(--radius-lg); position: relative; }
.step-num { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; width: 28px; height: 28px; border-radius: 50%; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.step-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 0.5rem; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-arrow { font-size: 1.5rem; color: var(--border-dark); padding: 0 1rem; flex-shrink: 0; }

/* ─── Google Reviews ─────────────────────────────────────────────────────── */
.google-rating-header { display: inline-flex; align-items: center; gap: 1rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 0.875rem 1.5rem; box-shadow: var(--shadow-sm); }
.google-logo { width: 28px; height: 28px; flex-shrink: 0; }
.google-rating-score { display: flex; align-items: center; gap: 0.5rem; }
.google-score-num { font-size: 1.5rem; font-weight: 700; color: var(--text); line-height: 1; }
.google-stars { color: #FBBC05; font-size: 18px; letter-spacing: 1px; line-height: 1; }
.google-rating-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.google-icon-sm { width: 18px; height: 18px; flex-shrink: 0; margin-left: auto; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card { background: #fff; border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-xs); transition: box-shadow 0.2s; }
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-meta { flex: 1; }
.testimonial-meta strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.testimonial-meta span { font-size: 12px; color: var(--text-muted); }

.testimonial-stars-row { display: flex; align-items: center; gap: 1px; margin-bottom: 0.6rem; }
.testimonial-stars-row span { color: #FBBC05; font-size: 15px; }
.testimonial-date { font-size: 12px; color: var(--text-muted); margin-left: 0.5rem; font-family: inherit; }

.testimonial-text { font-size: 14px; color: #3C4043; line-height: 1.65; margin: 0; }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, #1D1D1F 0%, #2C2C2E 100%); padding: 4rem 0; }
.cta-banner-inner { display: flex; align-items: center; gap: 3rem; }
.cta-banner-text { flex: 1; }
.cta-banner-text h2 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.cta-banner-text p { color: #9CA3AF; font-size: 16px; line-height: 1.6; }
.cta-banner-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-white-solid { background: #fff; color: var(--black); font-weight: 700; padding: 0.85rem 2rem; border-radius: 10px; border: none; cursor: pointer; transition: opacity 0.2s; }
.btn-white-solid:hover { opacity: 0.9; }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: #fff; padding: 0.85rem 2rem; border-radius: 10px; font-weight: 600; transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: #fff; opacity: 1; }

/* ─── Homepage responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 1 1 40%; }
  .stat-divider { display: none; }
  .stat-number { font-size: 2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { flex-direction: column; gap: 2rem; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; gap: 2rem; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .cta-banner-text h2 { font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-info { padding: 0.6rem; gap: 0.15rem; }
  .product-cat { font-size: 10px; }
  .product-name { font-size: 12px; line-height: 1.3; }
  .product-sku { display: none; }
  .product-price strong { font-size: 13px; }
  .product-cta { font-size: 12px; }
  .product-img-wrap { aspect-ratio: 1; }
}

/* ─── Bewertungen Tab ────────────────────────────────────────────────────── */
.tab-badge { display:inline-flex;align-items:center;justify-content:center;background:#1E3A8A;color:#fff;font-size:10px;font-weight:700;border-radius:20px;padding:1px 7px;margin-left:6px;vertical-align:middle; }
.reviews-layout { display:grid;grid-template-columns:220px 1fr;gap:2rem;padding:1.5rem 0; }
.reviews-summary { background:#F9FAFB;border-radius:12px;padding:1.5rem;text-align:center;height:fit-content; }
.review-score-big { font-size:3rem;font-weight:800;color:#1E3A8A;line-height:1; }
.review-stars-big { display:flex;justify-content:center;gap:2px;margin:8px 0 4px; }
.review-count-text { font-size:13px;color:#6B7280; }
.review-empty-hint { padding:1rem;color:#6B7280;font-size:14px; }
.reviews-list { display:flex;flex-direction:column;gap:1rem; }
.review-card { background:#fff;border:1px solid #E5E7EB;border-radius:12px;padding:1.25rem; }
.review-card-header { display:flex;align-items:center;gap:10px;margin-bottom:8px; }
.review-avatar { width:38px;height:38px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:15px;font-weight:700;flex-shrink:0; }
.review-meta { flex:1; }
.review-meta strong { display:block;font-size:14px;font-weight:600;color:#111827; }
.review-meta span { font-size:12px;color:#9CA3AF; }
.review-verified { font-size:11px;font-weight:600;color:#10B981;background:#ECFDF5;padding:2px 8px;border-radius:20px;white-space:nowrap; }
.review-stars { display:flex;gap:2px;margin-bottom:8px; }
.review-text { font-size:14px;color:#374151;line-height:1.6;margin:0; }
.reviews-list .review-form-wrap { display:none; }
.review-form-wrap { background:#F9FAFB;border-radius:12px;padding:1.5rem;border:1px solid #E5E7EB;margin-top:1.5rem;grid-column:1/-1; }
.review-form-wrap h3 { margin:0 0 1rem;font-size:16px; }
.review-login-note { font-size:14px;color:#6B7280;padding:1rem;background:#fff;border-radius:8px;border:1px solid #E5E7EB; }
.review-login-note a { color:#1E3A8A;font-weight:600; }
.review-form { display:flex;flex-direction:column;gap:1rem; }
.star-picker { display:flex;gap:4px;margin-bottom:4px; }
.star-pick:hover { transform:scale(1.1); }
@media (max-width:700px) {
  .reviews-layout { grid-template-columns:1fr; }
  .reviews-summary { order:-1; }
}

/* ─── Schnellansicht Hover Button ────────────────────────────────────────── */
.product-card-image { position: relative; overflow: hidden; }
.quickview-btn {
  position: absolute;
  bottom: 10px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: rgba(30,58,138,0.92);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
  pointer-events: none;
}
.product-card:hover .quickview-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ─── Schnellansicht Modal ───────────────────────────────────────────────── */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.qv-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: qvFadeIn 0.2s ease;
}
@keyframes qvFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.qv-close {
  position: absolute;
  top: 14px; right: 14px;
  background: #F3F4F6;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  color: #374151;
  transition: background 0.15s;
}
.qv-close:hover { background: #E5E7EB; }
.qv-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.qv-image-col {
  background: #F9FAFB;
  border-radius: 16px 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 2rem;
}
.qv-image-wrap {
  width: 100%;
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv-placeholder { font-size: 80px; opacity: 0.2; }
.qv-loading { font-size: 2rem; color: #9CA3AF; animation: spin 1s linear infinite; }
.qv-loading-full { padding: 2rem; color: #6B7280; font-size: 14px; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.qv-info-col { padding: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.qv-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); font-weight: 600; }
.qv-name { font-size: 20px; font-weight: 700; color: var(--text); line-height: 1.3; margin: 0; }
.qv-badge { display: inline-block; background: #10B981; color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.qv-sku { font-size: 12px; color: #6B7280; }
.qv-mkt { font-size: 13px; color: #6B7280; }
.qv-tiers-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; color: #6B7280; font-weight: 600; margin-top: 0.25rem; }
.qv-tiers { display: flex; flex-direction: column; gap: 6px; }
.qv-tier { display: flex; justify-content: space-between; align-items: center; background: #F9FAFB; border-radius: 8px; padding: 7px 12px; font-size: 13px; }
.qv-tier--green { background: #ECFDF5; }
.qv-tier-qty { color: #6B7280; }
.qv-tier-price { font-weight: 700; color: var(--text); }
.qv-tier--green .qv-tier-price { color: #059669; }
.qv-stock { font-size: 13px; font-weight: 500; }
.qv-order-row { display: flex; gap: 0.75rem; align-items: center; margin-top: 0.25rem; }
.qv-order-row .qty-input { width: 80px; }
.qv-order-row .btn-add-cart { flex: 1; }
.qv-detail-link { font-size: 13px; color: var(--primary); text-decoration: none; font-weight: 500; }
.qv-detail-link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .qv-body { grid-template-columns: 1fr; }
  .qv-image-col { border-radius: 16px 16px 0 0; min-height: 200px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — ADDITIONAL MOBILE IMPROVEMENTS  (≤ 768px)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Container padding tighter */
  .container { padding: 0 1rem; }

  /* Page content headings */
  .page-content { padding: 2rem 0; }
  .page-content h1 { font-size: 26px; margin-bottom: 1.25rem; }
  .page-content h2 { font-size: 18px; margin: 1.5rem 0 0.5rem; }
  .page-content h3 { font-size: 15px; }

  /* About page */
  .about-grid { display: block; }
  .about-grid > div { margin-bottom: 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }
  .about-box { padding: 1rem !important; }

  /* Categories → 2×2 grid on mobile */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-card { padding: 1.25rem 1rem; }
  .category-icon { width: 40px; height: 40px; font-size: 20px; margin-bottom: 0.625rem; }
  .category-card h3 { font-size: 14px; }
  .category-card p { font-size: 12px; margin-bottom: 0.5rem; }

  /* Shop product card: simplify tier table on mobile */
  .tier-table-label { font-size: 10px; }
  .tier-table-row > div:nth-child(n+3) { display: none; } /* show max 2 tiers */
  .tier-qty { font-size: 11px; }
  .tier-price { font-size: 13px; }

  /* Product detail — specs table scroll */
  .specs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .specs-table { min-width: 320px; }

  /* Market price box */
  .market-price-row { flex-direction: column; gap: 6px; }

  /* Comparison logos → 1 col */
  .comparison-logos { grid-template-columns: 1fr; }

  /* Contact layout already 1fr but tighten */
  .contact-info-card { margin-bottom: 1rem; }

  /* Auth box padding */
  .auth-box { margin: 1.5rem auto 2.5rem; }

  /* Confirmation box */
  .confirmation-box { margin: 1.5rem auto; padding: 1rem; }
  .confirmation-actions { flex-direction: column; align-items: center; }

  /* Error page */
  .error-code { font-size: 64px; }
  .error-page { padding: 4rem 1rem; }

  /* Footer CTA email input */
  .price-list-input { flex-direction: column; gap: 0.5rem; }
  .price-list-input input, .price-list-input .btn-green { width: 100%; border-radius: 12px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Stats bar — 2 per row */
  .stats-grid { flex-wrap: wrap; justify-content: center; }
  .stat-item { flex: 1 1 45%; min-width: 120px; }
  .stat-divider { display: none; }

  /* Section header */
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* Product detail tabs */
  .tab-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Trust row in product detail → 3 col stays but smaller */
  .trust-row { gap: 0.5rem; }
  .trust-item { padding: 8px 6px; }
  .trust-item small { font-size: 11px; }

  /* Back link */
  .back-link { display: inline-block; margin-bottom: 0.5rem; }

  /* Order meta wrap */
  .order-meta { gap: 0.75rem; }
  .order-card-header { flex-wrap: wrap; gap: 0.5rem; }

  /* Cert download button */
  .cert-download-btn { flex-wrap: wrap; gap: 0.75rem; }

  /* Supplier card */
  .supplier-card { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Header link text — hide label on mobile, keep icon */
  .header-link-text { display: none; }

  /* Quick-view button: hide on touch to avoid sticky hover */
  .quickview-btn { display: none; }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ADDITIONS  (≤ 480px)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 0.875rem; }

  /* Page content */
  .page-content h1 { font-size: 22px; }
  .page-content h2 { font-size: 16px; }

  /* Stats bar compact */
  .stat-number { font-size: 1.75rem; }
  .stat-label { font-size: 12px; }
  .stat-item { flex: 1 1 44%; padding: 0.4rem 0.5rem; }
  .stats-bar { padding: 1.75rem 0; }

  /* Product detail title smaller */
  .product-detail-title { font-size: 20px; }

  /* Auth box */
  .auth-box { margin: 1rem auto 2rem; }

  /* Footer main */
  .footer-main { padding: 2rem 0; }
  .footer-cta h2 { font-size: 20px; }
  .footer-cta p { font-size: 14px; }

  /* Page title */
  .page-title { font-size: 20px; }

  /* Section card (account) */
  .section-card { padding: 1rem; }

  /* Form section */
  .form-section { padding: 1.25rem; }

  /* Cart summary / checkout summary */
  .cart-summary, .checkout-summary { padding: 1rem; }

  /* About stats text */
  .about-stats span { font-size: 22px !important; }
  .about-stats small { font-size: 11px; }

  /* bank info */
  .bank-info { padding: 1rem; }

  /* Tab buttons - smaller on tiny screens */
  .tab-btn { padding: 8px 10px; font-size: 12px; }

  /* Tier table */
  .tier-box { padding: 1rem; }

  /* Comparison card */
  .comparison-card { padding: 1.5rem 1.25rem; }
  .price-value { font-size: 28px; }

  /* Steps - compact */
  .step-card { padding: 1.5rem 1rem; }

  /* Empty state */
  .empty-icon { font-size: 48px; }
  .empty-state { padding: 3rem 1rem; }
  .empty-state h2 { font-size: 20px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   SHOP — MOBILE KAPSAMLI DÜZELTME
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 900px) ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; padding-top: 1rem; }
  .shop-sidebar { position: static; }

  /* Filter toggle */
  .filter-toggle-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 0.75rem 1rem;
    background: var(--bg-card); border: 1.5px solid var(--border);
    border-radius: var(--radius); font-size: 14px; font-weight: 600;
    color: var(--text); cursor: pointer;
  }
  .filter-toggle-btn .ft-arrow { transition: transform .2s; }
  .filter-toggle-btn.open .ft-arrow { transform: rotate(180deg); }
  .filter-desktop-h { display: none; }
  .shop-filter-body { display: none; }
  .shop-filter-body.open { display: block; padding-top: 0.75rem; }
  .filter-box { padding: 0.875rem 1rem; border-radius: var(--radius); position: static; }

  /* Toolbar */
  .shop-toolbar { flex-direction: row; align-items: center; justify-content: space-between; gap: 0.5rem; flex-wrap: wrap; }
  .shop-count { font-size: 13px; color: var(--text-muted); }
  .sort-select { font-size: 13px; padding: 6px 10px; }

  /* Product grid — 2 cols */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── Mobile (≤ 768px) ────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .shop-layout { padding-top: 0.75rem; padding-bottom: 1.5rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }

  /* Product card */
  .product-card { display: flex; flex-direction: column; }
  .product-card-image { height: 140px; }
  .product-card-body { padding: 0.625rem; display: flex; flex-direction: column; gap: 0; flex: 1; }

  /* Product name */
  .product-name { font-size: 12px; font-weight: 600; line-height: 1.35; margin-bottom: 2px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-name a { color: var(--text); }

  /* SKU + description: gizle */
  .product-sku { font-size: 10px; color: var(--text-muted); margin-bottom: 4px; }
  .product-short-desc { display: none; }
  .product-tag { font-size: 9px; margin-bottom: 3px; }

  /* Tier table — kompakt, max 2 fiyat */
  .tier-table { padding: 6px 8px; margin-bottom: 6px; }
  .tier-table-label { font-size: 9px; margin-bottom: 4px; }
  .tier-table-row { display: flex; gap: 4px; }
  .tier-table-row > div { flex: 1; text-align: center; }
  .tier-table-row > div:nth-child(n+3) { display: none; }
  .tier-qty { font-size: 10px; color: var(--text-muted); }
  .tier-price { font-size: 12px; font-weight: 700; }

  /* Order row: qty üstte, buton altta */
  .product-order-row { display: flex; flex-direction: column; gap: 5px; margin-bottom: 5px; }
  .product-order-row .qty-input { width: 100%; padding: 6px 8px; font-size: 13px; text-align: center; }
  .product-order-row .btn-add-cart,
  .product-order-row .btn-disabled { width: 100%; padding: 7px 4px; font-size: 11px; font-weight: 600; text-align: center; }

  /* Actions row: Merken + Vergleichen yan yana */
  .product-actions-row { display: flex; flex-direction: row; gap: 4px; margin-bottom: 5px; }
  .btn-merken, .btn-vergleichen { flex: 1; padding: 5px 4px; font-size: 10px; text-align: center; }

  /* Stock */
  .product-stock { font-size: 10px; margin-top: auto; padding-top: 4px; }

  /* Badge */
  .product-badge { font-size: 10px; padding: 3px 7px; }

  /* Sold out overlay */
  .sold-out-overlay span { font-size: 13px; }

  /* Schnellbestellung */
  .schnell-section { margin: 1rem 0; border-radius: var(--radius); }
  .schnell-inner { padding: 1rem; }
  .schnell-header { gap: 0.625rem; margin-bottom: 1rem; }
  .schnell-header h2 { font-size: 15px; }
  .schnell-header p { font-size: 12px; }
  .schnell-icon { width: 32px; height: 32px; font-size: 16px; }
  .schnell-col-labels { display: none; }
  .schnell-line { grid-template-columns: 1fr 72px 34px; gap: 6px; }
  .schnell-sku, .schnell-qty { padding: 8px 10px; font-size: 13px; }
  .schnell-actions { flex-direction: column; gap: 6px; margin-top: 0.75rem; }
  .schnell-add-btn, .schnell-submit-btn { width: 100%; padding: 10px; font-size: 14px; }

  /* Quickview modal */
  .qv-modal { width: 95vw; max-height: 90vh; overflow-y: auto; border-radius: 16px; }
  .qv-body { grid-template-columns: 1fr; }
  .qv-image-col { min-height: 180px; border-radius: 16px 16px 0 0; }
  .qv-info-col { padding: 1.25rem; gap: 0.6rem; }
  .qv-name { font-size: 17px; }
  .qv-order-row { flex-wrap: wrap; }
  .qv-order-row .btn-add-cart { width: 100%; }

  /* Pagination */
  .pagination { gap: 4px; flex-wrap: wrap; justify-content: center; }
  .page-btn { padding: 7px 11px; font-size: 13px; }
}

/* ── Küçük Mobil (≤ 480px) ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .product-card-image { height: 120px; }
  .product-card-body { padding: 0.5rem; }
  .product-name { font-size: 11px; }
  .tier-price { font-size: 11px; }
  .product-order-row .btn-add-cart,
  .product-order-row .btn-disabled { font-size: 10px; padding: 6px 2px; }
  .btn-merken, .btn-vergleichen { font-size: 9px; padding: 4px 2px; }
  .shop-toolbar { gap: 0.4rem; }
  .sort-select { font-size: 12px; padding: 5px 8px; }
}

/* ── Çok Küçük (≤ 360px) ─────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-card-image { height: 160px; }
  .product-card-body { padding: 0.75rem; }
  .product-name { font-size: 13px; -webkit-line-clamp: 3; }
  .product-order-row .btn-add-cart { font-size: 13px; padding: 8px; }
  .btn-merken, .btn-vergleichen { font-size: 12px; padding: 6px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS FIXES
   Audit date: 2026-05-18
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Global: prevent horizontal overflow ─────────────────────────────────── */
body {
  overflow-x: hidden;
}

/* ── All images responsive by default ───────────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
}

/* ── Buttons: minimum tap target size (44px) on all screens ─────────────── */
.btn-primary, .btn-blue, .btn-green, .btn-outline, .btn-white, .btn-red,
.btn-add-cart, .btn-add-cart-lg, .btn-callback, .btn-wa,
.btn-cookie-accept, .btn-cookie-decline {
  min-height: 44px;
}

/* ════════════════════════════════════════════════════════════════════════════
   TABLET  (≤ 900px) — additional fixes
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Product detail: stack on tablet */
  .product-detail-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Tab grid: single column */
  .tab-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Reviews layout: single column */
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-summary { order: -1; }

  /* Checkout & cart already 1fr at ≤900, ensure order summary below on tablet */
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }

  /* Footer grid: 2 columns on tablet */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* CTA banner: stack */
  .cta-banner-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  /* About grid: single column */
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Contact layout: single column */
  .contact-layout { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Steps grid: vertical */
  .steps-grid { flex-direction: column; gap: 1.5rem; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .step-card { flex: none; }

  /* Testimonials: 1 col */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Homepage products grid: 2 cols */
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE  (≤ 768px) — comprehensive fixes
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ──────────────────────────────────────────────────────────────── */
  .header-inner { position: relative; }
  /* Ensure hamburger has minimum tap size */
  .hamburger { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  /* Logo: prevent overflow */
  .logo { font-size: 15px; overflow: hidden; text-overflow: ellipsis; }
  /* Hide comparison icon on small screens to save space */
  .header-right .btn-header-link[title="Vergleichsliste"] { display: none; }

  /* ── Nav overlay: ensure full-width and proper z-index ──────────────────── */
  .main-nav {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
  }

  /* ── Hero ────────────────────────────────────────────────────────────────── */
  .hero { padding: 3rem 0 2.5rem; }
  .hero h1 { font-size: clamp(22px, 8vw, 34px); }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-btns .btn-lg { width: 100%; max-width: 340px; text-align: center; }
  .hero-trust { gap: 0.75rem; font-size: 12px; }

  /* ── Stats bar ───────────────────────────────────────────────────────────── */
  .stats-bar { padding: 1.5rem 0; }
  .stats-grid { flex-wrap: wrap; gap: 0; }
  .stat-item { flex: 1 1 45%; min-width: 120px; padding: 0.6rem 0.5rem; }
  .stat-number { font-size: 1.75rem; }

  /* ── Section ─────────────────────────────────────────────────────────────── */
  .section { padding: 2.5rem 0; }
  .section-header h2 { font-size: clamp(18px, 5vw, 24px); }

  /* ── Homepage product grid ───────────────────────────────────────────────── */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* ── Categories grid: 2-col ─────────────────────────────────────────────── */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-card { padding: 1rem; }

  /* ── Target + Feature grid: 2-col ───────────────────────────────────────── */
  .target-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .target-card, .feature-card { padding: 1.25rem 0.875rem; }

  /* ── Comparison grid: 1-col ─────────────────────────────────────────────── */
  .comparison-grid { grid-template-columns: 1fr; }

  /* ── CTA Banner ──────────────────────────────────────────────────────────── */
  .cta-banner { padding: 2.5rem 0; }
  .cta-banner-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .cta-banner-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .cta-banner-actions a, .cta-banner-actions button { width: 100%; max-width: 300px; text-align: center; }
  .cta-banner-text h2 { font-size: clamp(18px, 5vw, 24px); }

  /* ── CART ─────────────────────────────────────────────────────────────────── */
  /* Cart table: horizontal scroll wrapper */
  .cart-items { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
  .cart-table { min-width: 480px; width: 100%; }
  .cart-table th, .cart-table td { padding: 0.75rem 8px; font-size: 13px; white-space: nowrap; }
  /* Cart product name: allow wrap */
  .cart-product-name { white-space: normal; display: block; font-size: 12px; }
  /* Cart actions: stack vertically */
  .cart-actions { flex-direction: column; gap: 0.75rem; }
  .cart-actions > * { width: 100%; text-align: center; }
  /* Qty input in cart: tappable */
  .qty-form .qty-input { width: 70px; min-height: 44px; font-size: 16px; text-align: center; }
  /* Cart summary: full width */
  .cart-layout { grid-template-columns: 1fr; gap: 1rem; }
  .cart-summary { position: static; width: 100%; }
  /* Save cart link: stack */
  .saved-cart-link { flex-direction: column; gap: 0.5rem; }
  .link-input { width: 100%; }

  /* ── CHECKOUT ─────────────────────────────────────────────────────────────── */
  .checkout-layout { grid-template-columns: 1fr; gap: 1rem; }
  .checkout-summary { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 1.25rem; margin-bottom: 0.875rem; }
  /* Inputs: full-width, min 44px, font-size 16px to prevent iOS zoom */
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    font-size: 16px;
    min-height: 44px;
    padding: 10px 12px;
  }
  .form-group textarea { min-height: 80px; }
  /* Checkout submit: full width */
  .checkout-form .btn-green.btn-full { width: 100%; font-size: 15px; padding: 14px; }
  /* Payment options: full width */
  .payment-option { padding: 12px; }
  /* Coupon row: stack */
  .coupon-row { flex-direction: column; gap: 0.5rem; }
  .coupon-input { width: 100%; }
  .coupon-row .btn-outline { width: 100%; text-align: center; min-height: 44px; }

  /* ── PRODUCT DETAIL ───────────────────────────────────────────────────────── */
  .product-detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-detail-title { font-size: clamp(18px, 5vw, 24px); }
  /* Gallery thumbs: smaller on mobile */
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .gallery-thumb img { height: 50px; }
  /* Gallery main: constrain height */
  .gallery-main { min-height: 220px; padding: 1.25rem; }
  /* Specs table: horizontal scroll */
  .specs-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .specs-table { min-width: 300px; }
  /* Tab nav: horizontal scroll */
  .tab-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; scrollbar-width: none; }
  .tab-nav::-webkit-scrollbar { display: none; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; min-height: 44px; }
  /* Tab grid: 1 col */
  .tab-grid { grid-template-columns: 1fr; }
  /* Trust row: 3-col on mobile */
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .trust-item { padding: 8px 4px; }
  .trust-item small { font-size: 10px; }
  /* Qty row: prevent overflow */
  .qty-row { flex-wrap: wrap; gap: 6px; }
  .qty-input-lg { flex: 1 1 60px; min-height: 44px; font-size: 16px; }
  .btn-qty-adj { min-height: 44px; min-width: 44px; }
  /* Add to cart button: full width, tappable */
  .btn-add-cart-lg { min-height: 50px; font-size: 15px; }
  /* Tier options: make radio tappable */
  .tier-option-row { padding: 10px; }
  /* Comparison logos: 1 col */
  .comparison-logos { grid-template-columns: 1fr; }
  /* Reviews layout: single column */
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-summary { order: -1; }
  /* Related products: 2 col */
  .related-products .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* ── ACCOUNT ──────────────────────────────────────────────────────────────── */
  .account-layout { grid-template-columns: 1fr; gap: 1rem; }
  .account-sidebar { position: static; }
  .account-sidebar nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .account-sidebar nav a { flex: 1; min-width: 110px; text-align: center; padding: 10px 8px; min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
  .account-stats { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
  .account-stat { flex: 1 1 120px; padding: 0.875rem 1rem; }
  /* Account form grid: 1 col */
  .account-content .form-grid { grid-template-columns: 1fr; }
  /* Data table: horizontal scroll */
  .section-card .data-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .data-table { min-width: 480px; }
  .data-table th, .data-table td { white-space: nowrap; }

  /* ── CONTACT PAGE ─────────────────────────────────────────────────────────── */
  .contact-layout { grid-template-columns: 1fr; gap: 1.25rem; }
  .contact-info-card { margin-bottom: 0; }
  /* Contact form grid: 1 col on mobile */
  .contact-form .form-grid { grid-template-columns: 1fr; }
  .contact-form .btn-blue.btn-lg { width: 100%; text-align: center; min-height: 50px; }

  /* ── ABOUT PAGE ───────────────────────────────────────────────────────────── */
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .about-box { padding: 1.25rem; }

  /* ── FAQ PAGE ─────────────────────────────────────────────────────────────── */
  .faq-question { padding: 1rem 0; font-size: 15px; }
  .faq-list { max-width: 100%; }

  /* ── FOOTER ───────────────────────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-cta h2 { font-size: clamp(18px, 5vw, 24px); }
  .footer-cta p { font-size: 14px; }
  .price-list-input { flex-direction: column; gap: 0.5rem; }
  .price-list-input input { width: 100%; border-radius: 10px; min-height: 44px; font-size: 16px; }
  .price-list-input .btn-green { width: 100%; border-radius: 10px; min-height: 44px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* ── FIXED/FLOATING ELEMENTS ─────────────────────────────────────────────── */
  /* Cookie banner: full width, stacked */
  .cookie-banner { padding: 1rem; }
  .cookie-banner-inner { flex-direction: column; gap: 0.875rem; align-items: stretch; }
  .cookie-banner-actions { flex-direction: row; gap: 0.5rem; }
  .btn-cookie-decline, .btn-cookie-accept { flex: 1; min-height: 44px; }

  /* Cart toast: avoid hiding content at bottom */
  .cart-toast { top: 4.5rem; left: 1rem; right: 1rem; transform: none; text-align: center; border-radius: 10px; white-space: normal; }

  /* WhatsApp float: already handled by existing rule */

  /* ── MERKLISTE ────────────────────────────────────────────────────────────── */
  .merkliste-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  /* ── VERGLEICH ────────────────────────────────────────────────────────────── */
  .vergleich-grid { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* ── PAGE CONTENT (legal pages etc) ─────────────────────────────────────── */
  .page-content { padding: 1.5rem 0; }
  .page-content h1 { font-size: clamp(22px, 6vw, 28px); }
  .page-content h2 { font-size: clamp(16px, 4vw, 20px); }
  .page-content p, .page-content li { font-size: 14px; }

  /* ── CONFIRMATION PAGE ───────────────────────────────────────────────────── */
  .confirmation-box { margin: 1.5rem auto; padding: 1.25rem; }
  .confirmation-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .confirmation-actions > * { width: 100%; max-width: 280px; text-align: center; }
  .bank-info { padding: 1.25rem; }

  /* ── SCHNELLBESTELLUNG ───────────────────────────────────────────────────── */
  .schnell-section { margin: 1rem 0; }
  .schnell-inner { padding: 1rem; }
  .schnell-col-labels { display: none; }
  .schnell-line { grid-template-columns: 1fr 72px 36px; gap: 6px; }
  .schnell-sku, .schnell-qty { font-size: 16px; min-height: 44px; }
  .schnell-add-btn, .schnell-submit-btn { width: 100%; min-height: 44px; }
  .schnell-actions { flex-direction: column; gap: 0.5rem; }

  /* ── GENERAL BUTTONS on mobile: ensure tappability ──────────────────────── */
  .btn-sm { min-height: 36px; }
  .btn-outline-sm { min-height: 36px; display: inline-flex; align-items: center; justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════════════════
   SMALL MOBILE  (≤ 480px) — additional overrides
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Hero ────────────────────────────────────────────────────────────────── */
  .hero h1 { font-size: clamp(20px, 7vw, 26px); letter-spacing: -0.3px; }
  .hero-sub { font-size: 14px; }

  /* ── Grids: some go to 1-col ─────────────────────────────────────────────── */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-grid { grid-template-columns: 1fr; }

  /* ── Products grid stays 2-col even on 480px (existing rule) ─────────────── */

  /* ── Cart: scrollable ────────────────────────────────────────────────────── */
  .cart-table { min-width: 380px; }

  /* ── Checkout form inputs: 16px prevents iOS zoom ───────────────────────── */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }

  /* ── Footer: single column ───────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-cta { padding: 2rem 0; }

  /* ── Account stats: row wrap ─────────────────────────────────────────────── */
  .account-stats { flex-direction: row; flex-wrap: wrap; }
  .account-stat { flex: 1 1 130px; }

  /* ── Gallery thumbs: 4-col maintained ───────────────────────────────────── */
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .gallery-thumb img { height: 44px; }

  /* ── Trust row: may need to go 2-col on very small ──────────────────────── */
  /* Keep 3-col but smaller padding */
  .trust-item { padding: 6px 2px; }
  .trust-item small { font-size: 9px; }

  /* ── Quick-view modal ────────────────────────────────────────────────────── */
  .qv-modal { width: 100%; border-radius: 16px 16px 0 0; max-height: 95vh; margin: auto auto 0; }
  .qv-info-col { padding: 1rem; }

  /* ── Page content ────────────────────────────────────────────────────────── */
  .page-content { padding: 1.25rem 0; }
  .page-content h1 { font-size: 20px; }

  /* ── Pagination ──────────────────────────────────────────────────────────── */
  .pagination { gap: 3px; }
  .page-btn { padding: 7px 10px; font-size: 12px; min-height: 36px; }

  /* ── Data table ──────────────────────────────────────────────────────────── */
  .data-table { min-width: 380px; }

  /* ── Form section ────────────────────────────────────────────────────────── */
  .form-section { padding: 1rem; }
  .form-section h2 { font-size: 16px; }

  /* ── Cart summary / checkout summary ─────────────────────────────────────── */
  .cart-summary, .checkout-summary { padding: 1rem; }
  .cart-summary h3 { font-size: 16px; }
  .summary-total { font-size: 16px; }

  /* ── Sections / section headers ──────────────────────────────────────────── */
  .section { padding: 2rem 0; }
  .section-header h2 { font-size: 18px; }
  .section-header p { font-size: 13px; }

  /* ── About stats ─────────────────────────────────────────────────────────── */
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats span { font-size: 20px; }
  .about-stats small { font-size: 11px; }

  /* ── Steps compact ───────────────────────────────────────────────────────── */
  .step-card { padding: 1.25rem 1rem; }
  .step-icon { font-size: 2rem; }

  /* ── Empty state ─────────────────────────────────────────────────────────── */
  .empty-icon { font-size: 48px; }
  .empty-state { padding: 3rem 1rem; }
  .empty-state h2 { font-size: 18px; }

  /* ── Confirmation ────────────────────────────────────────────────────────── */
  .confirmation-icon { width: 64px; height: 64px; font-size: 32px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   SMALL MOBILE  (≤ 360px) — very small screen overrides
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {

  /* ── Container padding ───────────────────────────────────────────────────── */
  .container { padding: 0 0.75rem; }

  /* ── Hero ────────────────────────────────────────────────────────────────── */
  .hero h1 { font-size: 20px; }
  .hero-sub { font-size: 13px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* ── Grids: single column ────────────────────────────────────────────────── */
  .categories-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .merkliste-grid { grid-template-columns: 1fr; }

  /* ── Stats: stack vertically ─────────────────────────────────────────────── */
  .stat-item { flex: 1 1 100%; }

  /* ── Footer: single column ───────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr; }

  /* ── Header: compact ────────────────────────────────────────────────────── */
  .logo { font-size: 13px; }
  .btn-cart { padding: 6px 10px; font-size: 12px; }

  /* ── Account sidebar: vertical ───────────────────────────────────────────── */
  .account-sidebar nav { flex-direction: column; }
  .account-sidebar nav a { min-width: auto; width: 100%; }

  /* ── Trust row: 2 col on 360px ───────────────────────────────────────────── */
  .trust-row { grid-template-columns: repeat(2, 1fr); }

  /* ── Gallery thumbs: 3 col ───────────────────────────────────────────────── */
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }

  /* ── Tab buttons: very compact ───────────────────────────────────────────── */
  .tab-btn { font-size: 11px; padding: 8px 8px; }

  /* ── CTA banner actions: vertical ────────────────────────────────────────── */
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .btn-white-solid, .btn-outline-white { width: 100%; max-width: 260px; text-align: center; display: block; }

  /* ── Page content ────────────────────────────────────────────────────────── */
  .page-content h1 { font-size: 18px; }
  .page-content h2 { font-size: 15px; }
  .page-content p, .page-content li { font-size: 13px; }

  /* ── Section header ──────────────────────────────────────────────────────── */
  .section-header h2 { font-size: 16px; }

  /* ── Product detail title ────────────────────────────────────────────────── */
  .product-detail-title { font-size: 18px; }

  /* ── About stats ─────────────────────────────────────────────────────────── */
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER MOBILE OVERRIDE — tüm çakışmaları geçersiz kılar
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── CTA kutusu ──────────────────────────────────────────────────────────── */
  .footer-cta { padding: 2.5rem 0; }
  .footer-cta h2 { font-size: clamp(18px, 5vw, 24px); line-height: 1.3; }
  .footer-cta p { font-size: 14px; }
  .price-list-form { padding: 0 1rem; }
  .price-list-input { flex-direction: column; gap: 0.6rem; max-width: 100%; }
  .price-list-input input {
    width: 100%; border-radius: 12px;
    min-height: 48px; font-size: 16px;
    padding: 0 16px;
  }
  .price-list-input .btn-white {
    width: 100%; border-radius: 12px;
    min-height: 48px; font-size: 15px;
  }
  .footer-cta-note { margin-top: 1.5rem !important; }

  /* ── Services şeridi ─────────────────────────────────────────────────────── */
  .footer-services { gap: 0.75rem; padding: 0.6rem 0 1rem; }
  .footer-service-item { font-size: 11px; }

  /* ── Footer grid: 2 kolon, logo + kontakt tam genişlik ───────────────────── */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem 1.25rem !important;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(2) { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(5) { grid-column: 1 / -1; }

  /* ── Footer alt satır ────────────────────────────────────────────────────── */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-bottom p { font-size: 11px; line-height: 1.6; }
  .social-links { justify-content: center; }

  /* ── Footer ana alan ─────────────────────────────────────────────────────── */
  .footer-main { padding: 2rem 0; }
  .footer-grid h4 { margin-bottom: 0.5rem; }
  .footer-links { line-height: 2; }
}

@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(5) { grid-column: auto; }
}

/* ════════════════════════════════════════════════════════════════════════════
   PAGE-CONTENT YATAY PADDING FIX
   Mobil CSS'de .page-content { padding: Xrem 0 } yazılıyor ve
   .container'ın yatay padding'ini sıfırlıyor — bu kural bunu düzeltir
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .container.page-content { padding-left: 1rem; padding-right: 1rem; }
}
@media (max-width: 600px) {
  .container.page-content { padding-left: 0.875rem; padding-right: 0.875rem; }
}
@media (max-width: 360px) {
  .container.page-content { padding-left: 0.75rem; padding-right: 0.75rem; }
}
