/* Emre Panjur — Kurumsal tema (özgün) */
:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --ink-muted: #64748b;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e2e8f0;
  --line: #e2e8f0;

  --brand: #e31e24;
  --brand-dark: #c41920;
  --brand-soft: #fef2f2;
  --navy: #1e3a5f;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);

  --header-h: 76px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --section-pad: 5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  transition: box-shadow 0.25s var(--ease);
}

.header.is-scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo__img {
  height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 56px;
  max-width: 175px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
}

.nav a:not(.btn):hover {
  color: var(--ink);
  background: var(--surface-2);
}

.nav__link--active {
  color: var(--brand) !important;
  background: var(--brand-soft) !important;
}

.header__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.6875rem 1.375rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--lg { padding: 0.875rem 1.625rem; }

.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.btn--secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--surface-2);
}

/* ===== Hero ===== */
.hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(227, 30, 36, 0.06), transparent),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__copy { max-width: 540px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.hero__titles {
  position: relative;
  min-height: clamp(4.5rem, 12vw, 7rem);
  margin-bottom: 1.25rem;
}

.hero__title {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}

.hero__title em {
  font-style: normal;
  color: var(--navy);
}

.hero__title.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero__media {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s var(--ease), transform 6s ease-out;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__slide--default-1 {
  background-image: linear-gradient(135deg, #64748b, #334155);
}

.hero__slide--default-2 {
  background-image: linear-gradient(135deg, #475569, #1e293b);
}

.hero__slide--default-3 {
  background-image: linear-gradient(135deg, #1e3a5f, #0f172a);
}

.hero__media-frame {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.hero__dots {
  display: flex;
  gap: 0.5rem;
}

.hero__dot {
  width: 28px;
  height: 4px;
  border: none;
  border-radius: 4px;
  background: var(--surface-3);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease), width 0.2s var(--ease);
}

.hero__dot.is-active {
  background: var(--brand);
  width: 40px;
}

/* ===== Trust strip ===== */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 1.25rem 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-strip__item {
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--brand);
}

.trust-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.125rem;
}

.trust-strip__item span {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* ===== Sections ===== */
.section {
  padding: var(--section-pad) 0;
}

.section--surface {
  background: var(--surface-2);
}

.section--stats {
  padding: 3rem 0;
  background: var(--navy);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 2.75rem;
}

.section-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.section-intro p {
  color: var(--ink-muted);
  font-size: 1.0625rem;
}

.section-foot {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===== About ===== */
.about-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.about-block__media {
  position: relative;
}

.about-block__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #94a3b8, #475569);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.about-block__stat {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.125rem 1.375rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-block__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}

.about-block__stat span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.about-block__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.about-block__content p {
  margin-bottom: 1rem;
  color: var(--ink-muted);
}

.check-list {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.625rem;
}

.check-list li {
  padding-left: 1.625rem;
  position: relative;
  font-size: 0.9375rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  background: var(--brand-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e31e24' stroke-width='3'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Home products ===== */
.home-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.home-product-card__visual {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.home-product-card__visual--photo {
  background-color: #f1f5f9;
}

.home-product-card__visual--1 { background: linear-gradient(135deg, #64748b, #334155); }
.home-product-card__visual--2 { background: linear-gradient(135deg, #1e3a5f, #0f172a); }
.home-product-card__visual--3 { background: linear-gradient(135deg, #475569, #1e293b); }
.home-product-card__visual--4 { background: linear-gradient(135deg, #334155, #0f172a); }
.home-product-card__visual--5 { background: linear-gradient(135deg, #94a3b8, #64748b); }
.home-product-card__visual--6 { background: linear-gradient(135deg, #1e293b, #020617); }

.home-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3125rem 0.625rem;
  border-radius: 6px;
}

.home-product-card__body {
  padding: 1.375rem;
}

.home-product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.home-product-card__body h3 a:hover { color: var(--brand); }

.home-product-card__body p {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* ===== Stats ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.stat-card--accent {
  background: rgba(227, 30, 36, 0.15);
  border-color: rgba(227, 30, 36, 0.3);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-card span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== Gallery ===== */
.gallery {
  display: grid;
  gap: 1rem;
}

/* 1 büyük + küçükler (klasik 4’lü mozaik) */
.gallery--featured {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(200px, auto));
}

.gallery--featured .gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
}

/* Hepsi büyük veya çoğu büyük — 2 sütun, kare ve büyük kartlar */
.gallery--tiles {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.gallery--tiles .gallery__item {
  aspect-ratio: 1;
  min-height: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .gallery--tiles {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #64748b, #334155);
  display: flex;
  align-items: flex-end;
}

.gallery__item span {
  position: relative;
  z-index: 1;
  padding: 1rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
}

.gallery__item--photo {
  background-size: cover;
  background-position: center;
}

/* ===== Contact ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-wrap__info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.contact-wrap__info > p {
  color: var(--ink-muted);
  margin-bottom: 1.75rem;
}

.contact-list {
  display: grid;
  gap: 1.125rem;
}

.contact-list__item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin-bottom: 0.25rem;
}

.contact-list__item p,
.contact-list__item a {
  font-size: 0.9375rem;
  color: var(--ink);
}

.contact-list__item a:hover { color: var(--brand); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-embed__frame {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.map-embed__link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  color: var(--brand);
  border-top: 1px solid var(--line);
}

.map-placeholder {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-muted);
  padding: 1rem;
}

/* ===== Products page ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card--featured {
  border-color: rgba(227, 30, 36, 0.35);
  box-shadow: 0 0 0 1px rgba(227, 30, 36, 0.1);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.product-card__image--photo {
  background-color: #f1f5f9;
}

.product-card__image--1 { background: linear-gradient(135deg, #64748b, #334155); }
.product-card__image--2 { background: linear-gradient(135deg, #1e3a5f, #0f172a); }
.product-card__image--3 { background: linear-gradient(135deg, #475569, #1e293b); }
.product-card__image--4 { background: linear-gradient(135deg, #334155, #0f172a); }
.product-card__image--5 { background: linear-gradient(135deg, #94a3b8, #64748b); }
.product-card__image--6 { background: linear-gradient(135deg, #1e293b, #020617); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.3125rem 0.75rem;
  border-radius: 6px;
}

.product-card__body {
  padding: 1.375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.product-card__body > p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.product-card__features {
  list-style: none;
  flex: 1;
}

.product-card__features li {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}

.product-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

/* ===== Page banner ===== */
.page-banner {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0 2.75rem;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.breadcrumb a:hover { color: #fff; }

.section-header {
  margin-bottom: 2.5rem;
}

.section-header--left { text-align: left; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-header p { color: var(--ink-muted); }

.page-cta {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
  padding: 2rem 0;
}

.page-cta h2 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.625rem;
}

.page-cta p {
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
}

.page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  justify-content: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__phone {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.footer__phone:hover { color: var(--brand); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 1rem;
}

.footer__col a,
.footer__col span {
  display: block;
  font-size: 0.9375rem;
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.65);
}

.footer__col a:hover { color: var(--brand); }

.footer__bottom {
  padding: 1.125rem 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.75rem 1.125rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero__copy { max-width: none; }
  .hero__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .about-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-products { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.75rem; --header-h: 68px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__cta { margin: 0.5rem 0 0; width: 100%; }

  .gallery--featured {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery--featured .gallery__item--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

  .gallery--tiles {
    grid-template-columns: 1fr;
  }

  .gallery--tiles .gallery__item {
    aspect-ratio: 1;
    min-height: 260px;
  }
  .product-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .trust-strip__grid,
  .stats-row { grid-template-columns: 1fr; }
  .gallery--featured,
  .gallery--tiles { grid-template-columns: 1fr; }

  .gallery--featured .gallery__item--large { grid-column: 1; }
}

/* Ürün detay (SEO sayfası) */
.product-card__body h3 a {
  color: inherit;
  text-decoration: none;
}
.product-card__body h3 a:hover { color: var(--color-primary); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.product-detail__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background-color: #f1f5f9;
}
.product-detail__body h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.product-detail__lead {
  color: var(--color-gray-600);
  margin: 1.5rem 0;
  max-width: 52ch;
}
@media (max-width: 768px) {
  .product-detail { grid-template-columns: 1fr; }
}
