/* ============================================================
   Koliza Ambalaj — koliza.com.tr
   Tasarım sistemi: Claude Design "Koliza Web Sayfası Tasarımı"
   ============================================================ */

:root {
  --teal: #15697d;
  --teal-dark: #0f4c5c;
  --copper: #c99a6a;
  --copper-dark: #a9743f;
  --green: #5b9a3e;
  --green-dark: #4d8434;
  --cream: #faf7ed;
  --cream-2: #f2efdf;
  --cream-3: #f3eede;
  --line: #ece5d3;
  --ink: #2a2823;
  --muted: #5c584e;
  --muted-2: #6b665c;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Work Sans', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 1px 2px rgba(42, 40, 35, .04);
  --shadow-lift: 0 18px 40px -20px rgba(15, 76, 92, .35);
  --header-h: 74px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--teal-dark);
  line-height: 1.05;
  margin: 0;
}

section { scroll-margin-top: calc(var(--header-h) + 12px); }

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.container-narrow { width: min(860px, 92vw); }

/* ---------- Erişilebilirlik ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--teal-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Üst şerit ---------- */
.top-ribbon {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--teal) 0 58%, var(--copper) 58% 100%);
}

/* ---------- Baklava motifi ---------- */
.diamond {
  width: 9px;
  height: 9px;
  display: inline-block;
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.diamond-green  { background: var(--green); }
.diamond-copper { background: var(--copper); }
.diamond-teal   { background: var(--teal); }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease,
              transform .25s ease, box-shadow .25s ease;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 15px 30px; font-size: 16px; }

.btn .ic { width: 17px; height: 17px; flex: 0 0 auto; }
.btn-lg .ic { width: 19px; height: 19px; }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; box-shadow: 0 10px 24px -12px rgba(15, 76, 92, .55); transform: translateY(-1px); }

.btn-outline { background: #fff; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: #f0f6f7; color: var(--teal-dark); transform: translateY(-1px); }

.btn-copper { background: var(--copper); color: #fff; }
.btn-copper:hover { background: var(--copper-dark); color: #fff; box-shadow: 0 10px 24px -12px rgba(169, 116, 63, .55); transform: translateY(-1px); }

.btn-outline-copper { background: #fff; color: var(--copper-dark); border-color: #d9b48a; }
.btn-outline-copper:hover { background: #faf3e9; color: var(--copper-dark); transform: translateY(-1px); }

.btn-whatsapp { background: var(--green); color: #fff; }
.btn-whatsapp:hover { background: var(--green-dark); color: #fff; box-shadow: 0 10px 24px -12px rgba(77, 132, 52, .55); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(42, 40, 35, .35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 12px 0;
}

.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img {
  height: 46px;
  width: auto;
  transition: height .3s ease;
}
.site-header.scrolled .brand img { height: 38px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 500;
}
.main-nav > a {
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.main-nav > a:hover::after,
.main-nav > a.active::after { transform: scaleX(1); }
.main-nav > a:hover { color: var(--teal-dark); }

.nav-cta { display: none; }

.header-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 10px;
  margin: -10px;
  cursor: pointer;
}
.nav-toggle-box {
  display: block;
  position: relative;
  width: 26px;
  height: 18px;
}
.nav-toggle-line,
.nav-toggle-box::before,
.nav-toggle-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--teal-dark);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.nav-toggle-box::before { top: 0; }
.nav-toggle-line { top: 7.75px; }
.nav-toggle-box::after { top: 15.5px; }

.nav-open .nav-toggle-box::before { top: 7.75px; transform: rotate(45deg); }
.nav-open .nav-toggle-line { opacity: 0; transform: translateX(8px); }
.nav-open .nav-toggle-box::after { top: 7.75px; transform: rotate(-45deg); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(15, 76, 92, .4);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s ease;
}
.nav-backdrop.visible { opacity: 1; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 85% 0%, var(--cream-2) 0%, var(--cream) 55%);
}

.hero-shape {
  position: absolute;
  transform: rotate(45deg);
  border-radius: 28px;
  pointer-events: none;
}
.hero-shape-1 {
  top: -60px; right: -40px;
  width: 220px; height: 220px;
  background: var(--copper);
  opacity: .10;
  animation: float-a 11s ease-in-out infinite;
}
.hero-shape-2 {
  bottom: -80px; left: -30px;
  width: 180px; height: 180px;
  background: var(--teal);
  opacity: .08;
  border-radius: 24px;
  animation: float-b 13s ease-in-out infinite;
}
.hero-shape-3 {
  top: 38%; left: 46%;
  width: 70px; height: 70px;
  background: var(--green);
  opacity: .07;
  border-radius: 14px;
  animation: float-a 9s ease-in-out 1s infinite;
}

@keyframes float-a {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(49deg) translateY(-16px); }
}
@keyframes float-b {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(41deg) translateY(14px); }
}

.hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: clamp(48px, 7vw, 88px) 0;
}

.hero-copy { flex: 1 1 400px; min-width: 290px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper-dark);
}
.eyebrow-green { color: var(--green); }
.eyebrow-copper { color: #d9b48a; }

.hero h1 {
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 72px);
  letter-spacing: -.5px;
  margin: 16px 0 0;
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--copper-dark);
  margin: 10px 0 0;
  font-weight: 500;
}

.hero-text {
  max-width: 500px;
  font-size: 16.5px;
  color: var(--muted);
  margin: 22px 0 0;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin: 34px 0 0;
}
.hero-stats dt {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.1;
}
.hero-stats dd { margin: 0; font-size: 13px; color: var(--muted-2); }
.stat-sep { width: 1px; background: #e5dcc7; }

.hero-visual {
  flex: 1 1 380px;
  min-width: 290px;
  position: relative;
}
.hero-figure {
  margin: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(15, 76, 92, .5);
  background: var(--cream-3);
}
.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero giriş animasyonu */
.js .hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-in .8s cubic-bezier(.22, .8, .3, 1) forwards;
  animation-delay: calc(var(--d, 0) * 120ms);
}
@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Kayan ürün şeridi ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex: 0 0 auto;
}
.marquee-group span:not(.diamond) {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--teal-dark);
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Kaydırma tam bir grup genişliği kadar: 6 eş grup → kesintisiz döngü */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 6)); }
}

/* ---------- Bölüm iskeleti ---------- */
.section { padding: clamp(52px, 7vw, 84px) 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.section-head h2 {
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 48px);
  margin: 12px 0 0;
}
.section-head p {
  font-size: 16px;
  color: var(--muted);
  margin: 14px 0 0;
}

.section-tinted { background: var(--cream-2); }

/* ---------- Ürün kartları ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 22px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.22, .8, .3, 1), box-shadow .35s ease, border-color .35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: #ddd3ba;
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-3);
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.22, .8, .3, 1);
}
.product-card:hover .product-media img { transform: scale(1.05); }

.badge-new {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-body h3 {
  font-weight: 600;
  font-size: 25px;
}
.product-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted-2);
  flex: 1;
}
/* ---------- Neden Koliza ---------- */
.section-dark {
  background: var(--teal-dark);
  color: #eaf4f5;
}
.section-dark .section-head h2 { color: #fff; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px 26px;
}

.feature h3 {
  font-weight: 600;
  font-size: 23px;
  color: #fff;
  margin: 14px 0 0;
}
.feature p {
  margin: 8px 0 0;
  font-size: 14.5px;
  color: #b7d2d6;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  transform: rotate(45deg);
  transition: transform .35s ease;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  transform: rotate(-45deg);
  color: #fff;
}
.feature:hover .feature-icon { transform: rotate(45deg) scale(1.08); }
.feature-icon-green  { background: var(--green); }
.feature-icon-copper { background: var(--copper); }

/* ---------- Hakkımızda ---------- */
.about-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  align-items: flex-start;
}
.about-copy { flex: 1 1 460px; min-width: 290px; }
.about-copy h2 {
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 46px);
  margin: 12px 0 0;
}
.about-copy p {
  font-size: 16px;
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 640px;
}

.about-card {
  flex: 1 1 300px;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.about-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}
.about-card li .diamond { margin-top: 6px; }
.about-card .btn { width: 100%; }

/* ---------- SSS ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open {
  border-color: #d9b48a;
  box-shadow: 0 10px 30px -22px rgba(169, 116, 63, .5);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 18px 20px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: left;
  cursor: pointer;
}
.faq-chevron {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--copper-dark);
  transition: transform .35s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.22, .8, .3, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
  color: var(--muted);
}

/* ---------- İletişim ---------- */
.contact-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}
.contact-copy { flex: 1 1 340px; min-width: 290px; }
.contact-copy h2 {
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 46px);
  margin: 12px 0 0;
}
.contact-copy > p {
  font-size: 16px;
  color: var(--muted);
  margin: 14px 0 26px;
  max-width: 440px;
}

.contact-list {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-row strong {
  display: block;
  font-size: 14px;
  color: var(--teal-dark);
}
.contact-row span, .contact-row a { font-size: 15px; }
.contact-row div > span { color: var(--muted); line-height: 1.5; }
.contact-row a { font-weight: 600; }

.contact-ic {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-top: 2px;
}
.contact-ic svg { width: 19px; height: 19px; color: #fff; }
.contact-ic-copper { background: var(--copper); }
.contact-ic-teal   { background: var(--teal); }
.contact-ic-green  { background: var(--green); }

.contact-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.contact-ctas .btn-lg { padding: 14px 18px; font-size: 15px; }

.map-shell {
  flex: 1 1 380px;
  min-width: 290px;
  min-height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -30px rgba(15, 76, 92, .5);
  background: var(--cream-2);
}
.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.map-facade {
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  color: var(--teal-dark);
}
.map-facade svg {
  width: 44px;
  height: 44px;
  color: var(--copper);
  margin-bottom: 6px;
}
.map-facade strong { font-family: var(--serif); font-size: 21px; }
.map-facade span { font-size: 13.5px; color: var(--muted-2); }

/* ---------- Footer ---------- */
.footer-strip { background: var(--copper); }
.footer-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 40px;
  padding: 20px 0;
  text-align: center;
}
.footer-strip a {
  color: var(--teal-dark);
  font-weight: 600;
  font-size: clamp(16px, 2.2vw, 21px);
  font-family: var(--serif);
}
.footer-strip a:hover { color: #fff; }

.footer-main { background: var(--teal-dark); color: #a9c6cb; }
.footer-main-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 13.5px;
}

/* ---------- Mobil alt bar ---------- */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px -18px rgba(42, 40, 35, .35);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 4px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--teal-dark);
}
.mobile-bar a:nth-child(2) { color: var(--green-dark); }
.mobile-bar a:nth-child(3) { color: var(--copper-dark); }
.mobile-bar .ic { width: 20px; height: 20px; }

/* ---------- Scroll-reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .8, .3, 1), transform .7s cubic-bezier(.22, .8, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1150px) {
  .header-actions .header-call { display: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }

  .header-actions { display: none; }
  .nav-toggle { display: block; z-index: 110; }

  /* Off-canvas menü */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 105;
    height: 100dvh;
    width: min(320px, 84vw);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 90px 28px 28px;
    box-shadow: -20px 0 60px -30px rgba(15, 76, 92, .45);
    transform: translateX(105%);
    transition: transform .38s cubic-bezier(.22, .8, .3, 1);
  }
  .nav-open .main-nav { transform: translateX(0); }

  .main-nav > a {
    font-size: 18px;
    font-family: var(--serif);
    font-weight: 600;
    color: var(--teal-dark);
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid var(--cream-2);
  }
  .main-nav > a::after { display: none; }

  .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
  }
  .nav-cta .btn { width: 100%; }

  .mobile-bar { display: grid; }
  .mobile-bar a span { white-space: nowrap; }
  body { padding-bottom: 62px; }

  /* Kapalı off-canvas menü sayfayı yatay genişletmesin */
  html { overflow-x: hidden; }

  /* Mobilde CTA butonları eşit genişlikte */
  .hero-ctas,
  .contact-ctas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hero-ctas .btn,
  .contact-ctas .btn {
    width: 100%;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* "Neden Koliza" kartlarını ortala */
  .feature { text-align: center; }
  .feature .feature-icon { margin: 0 auto; }

  .footer-main-inner { justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .brand img { height: 40px; }
  .site-header.scrolled .brand img { height: 34px; }

  .hero-inner { gap: 30px; }
  .hero-ctas,
  .contact-ctas { grid-template-columns: 1fr; }
  .hero-ctas .btn-lg { padding: 13px 22px; font-size: 15px; }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-body { padding: 12px 13px 15px; }
  .product-body h3 { font-size: 20px; }
  .product-body p { font-size: 13px; }

  .contact-ctas .btn-lg { padding: 12px 16px; font-size: 14px; }
}

@media (max-width: 380px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Hareket azaltma tercihi ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero-shape,
  .marquee-track { animation: none !important; }

  .js .hero-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn, .product-card, .product-media img,
  .faq-a, .faq-chevron, .main-nav, .feature-icon { transition: none !important; }
}
