:root {
  --brand-red: #c41e3a;
  --brand-red-dark: #9a1830;
  --brand-navy: #1a2332;
  --brand-slate: #4a5568;
  --surface: #f8fafc;
  --surface-card: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --theme-accent: var(--brand-red);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header — beyaz menü */
.site-header {
  background: #ffffff;
  color: var(--brand-navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.nav-main {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-main a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-navy);
  transition: color 0.2s;
}

.nav-main a:hover {
  color: var(--brand-red);
}

.site-header .btn-primary {
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

.header-cta-desktop {
  flex-shrink: 0;
}

/* Mobil menü tetikleyici */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobil menü paneli */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  color: var(--brand-navy);
}

.mobile-nav__close {
  border: none;
  background: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
}

.mobile-nav__panel a {
  padding: 0.85rem 0.5rem;
  font-weight: 600;
  color: var(--brand-navy);
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav__panel a:hover {
  color: var(--brand-red);
}

.mobile-nav__whatsapp {
  color: #128c7e !important;
}

.mobile-nav__cta {
  margin-top: 1rem;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

/* WhatsApp floating */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
}

@media (max-width: 900px) {
  .nav-main--desktop,
  .header-cta-desktop {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--brand-navy) 0%, #2d3e50 55%, var(--brand-red-dark) 100%);
  color: #fff;
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: 1.85rem;
  margin: 0 0 0.5rem;
  color: var(--brand-navy);
}

.section-title p {
  color: var(--text-muted);
  margin: 0;
}

/* Category cards — katalog afiş düzeni (2:3 görsel + alt metin) */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.category-card {
  background: var(--surface-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--theme-accent, var(--brand-red));
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.category-card__media-link {
  display: block;
  flex-shrink: 0;
}

.category-card__body h3 a {
  color: var(--brand-navy);
}

.category-card__body h3 a:hover {
  color: var(--theme-accent, var(--brand-red));
}

.category-card__media {
  aspect-ratio: 2 / 3;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.category-card__media picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.category-card__media img,
.category-card__media picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.category-card__media-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #94a3b8;
  background: #e2e8f0;
}

.product-detail-hero__media .product-image--fg7or,
.product-detail-hero__media picture img.product-image--fg7or {
  object-fit: contain;
  background: #fff;
}

.product-detail-hero__media picture,
.product-detail-hero__media picture img {
  display: block;
  max-width: 100%;
}

.category-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.category-card__theme {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--theme-accent, var(--brand-red));
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.category-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.category-card__headline {
  font-weight: 700;
  color: var(--theme-accent, var(--brand-red));
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
}

.category-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.category-card .product-quick-links {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.category-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

.category-card__media--aside {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 320px;
}

/* Theme tokens */
.theme-teal { --theme-accent: #0d9488; }
.theme-forest { --theme-accent: #166534; }
.theme-crimson { --theme-accent: #b91c1c; }
.theme-amber { --theme-accent: #d97706; }
.theme-brand { --theme-accent: var(--brand-red); }
.theme-slate { --theme-accent: #475569; }

/* Category detail */
.category-hero {
  padding: 3rem 0;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--theme-accent) 0%,
    color-mix(in srgb, var(--theme-accent) 70%, #000) 100%
  );
}

.category-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.category-hero .headline {
  font-size: 1.25rem;
  font-weight: 700;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.category-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  padding: 3rem 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .category-layout {
    grid-template-columns: 1fr;
  }
}

.product-line-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-line-item {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--theme-accent, var(--brand-red));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}

.product-line-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.product-line-item .code-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--theme-accent) 12%, white);
  color: var(--theme-accent);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.size-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.size-tag {
  font-size: 0.8rem;
  background: #f1f5f9;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--text-muted);
}

/* Line detail */
.line-detail {
  padding: 3rem 0 4rem;
}

.line-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .line-detail-grid {
    grid-template-columns: 1fr;
  }
}

.spec-panel {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.spec-panel h2 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--brand-navy);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.spec-list li:last-child {
  border-bottom: none;
}

/* Brands */
.brands-bar {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 2rem 0;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.brand-pill {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-slate);
  opacity: 0.85;
}

/* Quote form */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.flash {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.flash-success {
  background: #dcfce7;
  color: #166534;
}

.flash-error {
  background: #fee2e2;
  color: #991b1b;
}

/* Footer */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }
}

.site-footer a:hover {
  color: #fff;
}

/* Admin */
.admin-wrap {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table th {
  background: #f8fafc;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--brand-red);
}

.breadcrumb--light a {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb--light span {
  color: rgba(255, 255, 255, 0.75);
}

/* Ürün detay sayfası */
.product-detail-hero {
  color: #fff;
  padding: 2.5rem 0 3rem;
  background: linear-gradient(
    135deg,
    var(--theme-accent, var(--brand-red)) 0%,
    color-mix(in srgb, var(--theme-accent, var(--brand-red)) 55%, var(--brand-navy)) 100%
  );
}

.product-detail-hero h1 {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(1.35rem, 3.2vw, 2.1rem);
  line-height: 1.2;
}

.product-detail-lead {
  font-size: 1.05rem;
  opacity: 0.95;
  max-width: 52ch;
  margin: 0 0 1rem;
}

.product-detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr  minmax(260px, 380px);
  gap: 2rem;
  align-items: center;
}

.product-detail-hero__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.code-badge--lg {
  font-size: 1rem;
  padding: 0.35rem 0.85rem;
}

.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.detail-badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.product-detail-body {
  padding: 2.5rem 0 4rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.product-detail-main .detail-section {
  margin-bottom: 2.25rem;
}

.product-detail-main h2 {
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid color-mix(in srgb, var(--theme-accent, var(--brand-red)) 25%, transparent);
}

.prose p {
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.75;
}

.section-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: -0.5rem 0 1rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  padding: 0.75rem 1rem;
  background: var(--surface-card);
  border-radius: 8px;
  border-left: 4px solid var(--theme-accent, var(--brand-red));
  box-shadow: var(--shadow);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.spec-table th,
.spec-table td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.spec-table th {
  width: 38%;
  font-weight: 600;
  color: var(--brand-navy);
  background: #f8fafc;
}

.size-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
}

.size-list li {
  background: #fff;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}

.size-list strong {
  display: block;
  color: var(--theme-accent, var(--brand-red));
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--brand-navy);
}

.faq-item p {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.sidebar-card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}

.sidebar-card--sticky {
  position: sticky;
  top: 5.5rem;
}

.sidebar-card h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.sidebar-dl {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}

.sidebar-dl dt {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.65rem;
}

.sidebar-dl dt:first-child {
  margin-top: 0;
}

.sidebar-dl dd {
  margin: 0.15rem 0 0;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-list li {
  border-bottom: 1px solid #e2e8f0;
}

.related-list li:last-child {
  border-bottom: none;
}

.related-list a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}

.related-list a strong {
  display: block;
  color: var(--theme-accent, var(--brand-red));
}

.related-list a span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.product-quick-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-quick-links a {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--theme-accent, var(--brand-red)) 12%, white);
  color: var(--theme-accent, var(--brand-red));
}

.product-quick-links a:hover {
  background: var(--theme-accent, var(--brand-red));
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 900px) {
  .product-detail-hero__grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  .sidebar-card--sticky {
    position: static;
  }
}

/* Sayfa başlığı */
.page-hero {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #2d3e50 100%);
  color: #fff;
  padding: 3rem 0;
}

.page-hero--compact {
  padding: 2.5rem 0;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-hero__lead {
  margin: 0;
  opacity: 0.9;
  max-width: 50ch;
}

/* İletişim */
.contact-section {
  padding-top: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand-red);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.contact-card__value {
  margin: 0;
  font-size: 1.05rem;
  color: var(--brand-navy);
  font-weight: 600;
  line-height: 1.5;
}

.contact-card__value a {
  color: var(--brand-red);
}

.contact-card__value a:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
}

.contact-card__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-red);
}

.contact-card__sub {
  margin-top: 0.5rem !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
}

.contact-card__sub a {
  color: var(--brand-navy);
  font-weight: 600;
}

.contact-card__map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.85rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.contact-aside__whatsapp {
  display: block;
  text-align: center;
  color: #128c7e !important;
  border: 1px solid #bbf7d0;
  background: #f0fdf4 !important;
}

.contact-aside__whatsapp span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.contact-map-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.contact-map-header {
  margin-bottom: 1.25rem;
}

.contact-map-header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  color: var(--brand-navy);
}

.contact-map-header p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.contact-map-header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
  background: #e2e8f0;
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  border: 0;
}

/* Ürün detay — ürün fotoğrafı */
.product-detail-hero__media--product {
  background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-detail-photo {
  max-height: 380px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.doc-links {
  display: grid;
  gap: 0.75rem;
}

.doc-link {
  display: block;
  padding: 1rem 1.15rem;
  background: var(--surface-card);
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.15s;
}

.doc-link:hover {
  border-color: var(--theme-accent, var(--brand-red));
  transform: translateY(-2px);
}

.doc-link__title {
  display: block;
  font-weight: 700;
  color: var(--brand-navy);
}

.doc-link__meta {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-aside__card {
  background: var(--surface-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-aside__card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--brand-navy);
}

.contact-aside__card p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-aside__card--muted {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.contact-btn-outline {
  border-color: var(--brand-navy);
  color: var(--brand-navy);
  width: 100%;
}

.contact-btn-outline:hover {
  background: var(--brand-navy);
  color: #fff;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Çerez onay bildirimi — sağ alt köşe (WhatsApp üstünde) */
.cookie-consent {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  left: auto;
  top: auto;
  z-index: 10000;
  width: min(420px, calc(100vw - 2.5rem));
  padding: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent__box {
  position: relative;
  width: 100%;
  padding: 1.75rem 1.5rem 1.5rem;
  background: #2d3748;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

@media (max-width: 480px) {
  .cookie-consent {
    right: 0.75rem;
    bottom: 5rem;
    width: calc(100vw - 1.5rem);
  }
}

.cookie-consent__close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  color: #a0aec0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.cookie-consent__close:hover {
  color: #fff;
}

.cookie-consent__text {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: left;
}

.cookie-consent__text a {
  color: var(--brand-red);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-consent__text a:hover {
  color: #e53e5a;
}

.cookie-consent__accept {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 2px;
  background: var(--brand-red);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-consent__accept:hover {
  background: var(--brand-red-dark);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: #fff;
}

/* Yasal sayfalar */
.legal-page .page-hero--compact {
  padding: 2.5rem 0 1.5rem;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #2d3748 100%);
  color: #fff;
}

.legal-page .page-hero--compact h1 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.legal-page .page-hero__lead {
  margin: 0.5rem 0 0;
  opacity: 0.9;
  max-width: 52ch;
}

.legal-prose {
  max-width: 720px;
}

.legal-prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--brand-navy);
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p,
.legal-prose ul {
  margin: 0 0 1rem;
  color: var(--text);
}

.legal-prose ul {
  padding-left: 1.25rem;
}

.legal-prose a {
  color: var(--brand-red);
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.legal-table th,
.legal-table td {
  border: 1px solid #e2e8f0;
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #f1f5f9;
  color: var(--brand-navy);
}

.legal-updated {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.legal-nav a {
  color: var(--brand-red);
  font-weight: 600;
}
