/* ============================================================
   zakupols — Główny arkusz stylów
   Kolory marki: #CC1A1A (czerwony), #0F0F0F (czarny), #C8A96E (złoty)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:          #CC1A1A;
  --red-dark:     #A01010;
  --red-light:    #E83030;
  --black:        #0F0F0F;
  --off-white:    #F8F4F0;
  --cream:        #FFF8F2;
  --warm-gray:    #8A8078;
  --light-border: #E8E0D8;
  --gold:         #C8A96E;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'DM Sans', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 200px; }

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAWIGACJA ─────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 700;
  color: #fff; letter-spacing: -0.5px;
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo span {
  display: block; width: 100%; height: 2px;
  background: var(--red); border-radius: 2px; margin-top: 4px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: flex; align-items: center; gap: 16px;
}
.btn-nav {
  padding: 9px 22px;
  background: var(--red); color: #fff;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  transition: background .2s;
}
.btn-nav:hover { background: var(--red-dark); }

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid; grid-template-columns: 58% 42%;
  overflow: hidden; position: relative;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 64px 80px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 100px;
  color: var(--gold);
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px; width: fit-content;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.3; transform:scale(.7); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700; color: #fff;
  line-height: 1.05; letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-title em { font-style: normal; color: var(--red); display: block; }
.hero-subtitle {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75; max-width: 400px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 15px 34px;
  background: var(--red); color: #fff;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .25s;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(204,26,26,0.4);
}
.btn-ghost {
  padding: 15px 34px;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; font-size: 14px; font-weight: 500;
  transition: all .25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 60px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 700;
  color: #fff; line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: .5px; text-transform: uppercase; margin-top: 4px;
}
.hero-right {
  position: relative; overflow: hidden;
  height: 100%;
  min-height: 100vh;
}
.hero-img-grid { height: 100%; }
.hero-img-top {
  background: #111;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  height: 100vh;
}
.hero-img-top img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s; transform: scale(1.02);
}
.hero-img-top:hover img { transform: scale(1.05); }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .5px;
}
/* alt emoji kutular kaldırıldı */
.hero-img-bottom { display: none; }
.hero-img-sub { display: none; }

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee-bar { background: var(--red); padding: 13px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 28px;
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.45); border-radius: 50%; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SEKCJE OGÓLNE ─────────────────────────────────────── */
.section { padding: 96px 40px; }
.container { max-width: 1280px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.5px;
  margin-bottom: 14px;
}
.section-desc {
  color: var(--warm-gray); font-size: 15px; font-weight: 300;
  line-height: 1.75; max-width: 520px; margin-bottom: 52px;
}

/* ── KATEGORIE ─────────────────────────────────────────── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin-bottom: 48px; margin-top: 24px;
}
.cat-btn {
  background: var(--black); border-radius: 12px;
  padding: 22px 16px; text-align: center;
  cursor: pointer; border: 2px solid transparent;
  transition: all .25s; display: block;
  position: relative; overflow: hidden;
}
.cat-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(204,26,26,0.15), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.cat-btn:hover::before, .cat-btn.active::before { opacity: 1; }
.cat-btn:hover, .cat-btn.active {
  border-color: var(--red);
  transform: translateY(-3px);
}
.cat-icon { font-size: 38px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.cat-label { font-size: 13px; font-weight: 600; color: #fff; display: block; }
.cat-count {
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin-top: 3px; display: block;
}

/* ── FILTRY / WYSZUKIWARKA ─────────────────────────────── */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 36px; flex-wrap: wrap;
}
.search-wrap { position: relative; flex: 1; max-width: 360px; }
.search-wrap input {
  width: 100%; padding: 11px 16px 11px 42px;
  border: 1px solid var(--light-border);
  border-radius: 8px; font-size: 14px; font-family: inherit;
  background: #fff; outline: none; transition: border-color .2s;
}
.search-wrap input:focus { border-color: var(--red); }
.search-wrap svg {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--warm-gray);
}
.products-count {
  font-size: 13px; color: var(--warm-gray); font-weight: 500;
}
.products-count strong { color: var(--black); }

/* ── SIATKA PRODUKTÓW ──────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--light-border);
  transition: all .3s; display: block;
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: transparent;
}
.product-img {
  aspect-ratio: 1; overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-cat-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700;
  padding: 3px 9px; border-radius: 4px;
  letter-spacing: .5px; text-transform: uppercase;
}
.product-body { padding: 16px 18px 18px; }
.product-cat-lbl {
  font-size: 10px; font-weight: 700; color: var(--red);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px;
}
.product-name {
  font-size: 15px; font-weight: 700;
  color: var(--black); margin-bottom: 8px; line-height: 1.3;
}
.product-specs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.spec-pill {
  background: var(--off-white); color: var(--warm-gray);
  font-size: 10px; font-weight: 600;
  padding: 3px 9px; border-radius: 100px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--light-border);
}
.product-unit { font-size: 11px; color: var(--warm-gray); }
.product-link {
  font-size: 12px; font-weight: 700; color: var(--red);
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s;
}
.product-card:hover .product-link { gap: 8px; }

/* ── UKRYWANIE KART (FILTR) ────────────────────────────── */
.product-card.hidden { display: none; }

/* ── DLACZEGO MY ───────────────────────────────────────── */
.why-section { background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-title { color: #fff; }
.why-left .section-desc  { color: rgba(255,255,255,0.45); }
.why-features { display: flex; flex-direction: column; gap: 26px; margin-top: 44px; }
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(204,26,26,0.12);
  border: 1px solid rgba(204,26,26,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feature-text h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.feature-text p  { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.65; }
.why-visual {
  border-radius: 20px; overflow: hidden; position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg,#1c0505,#3a0a0a,#0f0f0f);
  display: flex; align-items: center; justify-content: center;
  font-size: 140px;
}
.why-badge {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
}
.why-badge-icon {
  width: 42px; height: 42px;
  background: var(--red); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.why-badge-text strong { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.why-badge-text span   { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ── CTA ───────────────────────────────────────────────── */
.cta-section {
  background: var(--red); padding: 80px 40px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.07); border-radius: 50%;
}
.cta-section::after {
  content: ''; position: absolute;
  bottom: -60px; left: 25%;
  width: 180px; height: 180px;
  background: rgba(0,0,0,0.1); border-radius: 50%;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1;
}
.cta-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px,3vw,44px); font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.cta-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 420px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }
.btn-white {
  padding: 15px 34px; background: #fff; color: var(--red);
  border-radius: 8px; font-size: 14px; font-weight: 700;
  transition: all .25s; display: inline-block;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.btn-outline-white {
  padding: 15px 34px; background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px; font-size: 14px; font-weight: 600;
  transition: all .25s; display: inline-block;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── PARTNERZY ─────────────────────────────────────────── */
.partners-section { padding: 60px 40px; border-bottom: 1px solid var(--light-border); background: #fff; }
.partners-label {
  text-align: center; font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--warm-gray); margin-bottom: 36px;
}
.partners-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.partner-item {
  padding: 14px 28px; border-right: 1px solid var(--light-border);
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 600;
  color: rgba(15,15,15,0.22); letter-spacing: 1px;
  transition: color .2s; white-space: nowrap;
}
.partner-item:last-child { border-right: none; }
.partner-item:hover { color: rgba(15,15,15,0.55); }

/* ── KONTAKT / FOOTER ──────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-intro { margin-bottom: 28px; }
.contact-intro .section-title { margin-bottom: 10px; }
.contact-intro .section-desc { margin-bottom: 0; }
.contact-items { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
@media (max-width: 1100px) {
  .contact-items { position: relative; top: 0; }
}
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px; background: #fff;
  border-radius: 12px; border: 1px solid var(--light-border);
  transition: all .3s;
}
.contact-item:hover { border-color: var(--red); transform: translateX(4px); }
.contact-icon {
  width: 46px; height: 46px; background: var(--red); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-label { font-size: 10px; font-weight: 700; color: var(--warm-gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-val { font-size: 15px; font-weight: 700; color: var(--black); }
.contact-form {
  background: #fff; border-radius: 16px;
  padding: 36px; border: 1px solid var(--light-border);
}
.contact-form h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: var(--warm-gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 15px;
  border: 1px solid var(--light-border); border-radius: 8px;
  font-size: 14px; font-family: inherit; background: var(--off-white);
  outline: none; transition: border-color .2s, background .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--red); background: #fff;
}
.form-group textarea { height: 110px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 14px; background: var(--red); color: #fff;
  border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background .2s; font-family: inherit;
}
.btn-submit:hover { background: var(--red-dark); }

footer {
  background: var(--black); padding: 72px 40px 40px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.4); max-width: 280px; margin: 14px 0 22px;
}
.footer-contact-item { display: flex; gap: 10px; align-items: center; font-size: 13px; margin-bottom: 9px; color: rgba(255,255,255,0.5); }
.footer-contact-item strong { color: rgba(255,255,255,0.8); }
.footer-contact-item a { color: inherit; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── STRONA PRODUKTU ───────────────────────────────────── */
.product-page-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 110px 40px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.prod-img-main {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--light-border);
  background: #fff; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.prod-img-main img { width: 100%; height: 100%; object-fit: cover; }
.prod-cat-lbl { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.prod-name { font-family: var(--font-serif); font-size: clamp(28px,3vw,42px); font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.prod-desc { font-size: 15px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 32px; }
.prod-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.spec-card { background: var(--cream); border: 1px solid var(--light-border); border-radius: 12px; padding: 16px 18px; }
.spec-card .lbl { font-size: 10px; font-weight: 700; color: var(--warm-gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.spec-card .val { font-size: 20px; font-weight: 800; color: var(--black); }
.prod-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-wa { padding: 15px 28px; background: #25D366; color: #fff; border-radius: 8px; font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-wa:hover { background: #1fba59; transform: translateY(-2px); }
.breadcrumb { padding: 90px 40px 0; max-width: 1100px; margin: 0 auto; display: flex; gap: 6px; align-items: center; font-size: 13px; color: var(--warm-gray); }
.breadcrumb a { color: var(--warm-gray); transition: color .2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ── TOAST ─────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--black); color: #fff;
  padding: 14px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  border-left: 4px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── ANIMACJE WEJŚCIA ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
  animation: fadeUp .8s ease both;
}
.hero-left > *:nth-child(1) { animation-delay: .1s; }
.hero-left > *:nth-child(2) { animation-delay: .2s; }
.hero-left > *:nth-child(3) { animation-delay: .3s; }
.hero-left > *:nth-child(4) { animation-delay: .4s; }
.hero-left > *:nth-child(5) { animation-delay: .55s; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta .btn-nav { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 120px 32px 72px; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { max-width: 100%; }
  .product-page-wrap { grid-template-columns: 1fr; padding: 100px 24px 60px; }
}
@media (max-width: 640px) {
  .hero-left { padding: 110px 20px 60px; }
  .hero-stats { gap: 24px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 20px; }
  .cta-section { padding: 60px 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-white, .btn-outline-white { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .partners-section { padding: 48px 20px; }
  .prod-specs { grid-template-columns: 1fr; }
}

/* ── MOBILE NAV MENU ───────────────────────────────────── */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,0.98); z-index: 190;
  display: flex; flex-direction: column;
  padding: 40px 32px;
  gap: 8px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: rgba(255,255,255,0.7); font-size: 22px; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s;
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn-nav { margin-top: 20px; text-align: center; display: block; }

/* ── LOGO GÖRSELİ ──────────────────────────────────────── */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img--footer {
  height: 34px;
  opacity: 0.85;
  margin-right: 80%;
}
