/* Paylaşılan mağaza (kategori + ürün + sepet) stilleri */
:root {
  --shop-bg: #f7f4ee;
  --shop-surface: #ffffff;
  --shop-border: #e5dfd5;
  --shop-ink: #1c2a2f;
  --shop-muted: #6a6257;
  --shop-primary: #082a31;
  --shop-accent: #b71c1c;
  --shop-accent-dark: #8b0000;
  /* Ürün / tutar fiyat rengi — kırmızı, gölgeli okunaklı */
  --shop-price: #b81010;
  --shop-price-text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 2px 3px rgba(0, 0, 0, 0.12),
    0 3px 8px rgba(0, 0, 0, 0.08);
  --shop-success: #1f7a3d;
  --shop-card-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.shop-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) clamp(12px, 3vw, 24px) 64px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Masaüstü: üst şerit + rulo seçim satırı daha geniş (dar beyaz kutu sağa doğru uzasın) */
@media (min-width: 960px) {
  .shop-main {
    max-width: min(98vw, 1540px);
    padding-left: clamp(16px, 2.2vw, 28px);
    padding-right: clamp(16px, 2.2vw, 28px);
  }
}

.shop-section-title {
  text-align: center;
  margin: 8px auto 24px;
}
.shop-section-title h1 {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--shop-primary);
  padding: clamp(10px, 2vw, 16px) clamp(14px, 3vw, 24px);
  border-radius: 6px;
  display: inline-block;
}

/* ---------- Kategori ızgara (ana sayfa yerine geçen "boş görsel" divler) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 991px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 520px) {
  .category-grid { grid-template-columns: 1fr; }
}
.category-card {
  display: flex;
  flex-direction: column;
  background: var(--shop-surface);
  border: 1px solid var(--shop-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shop-card-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  color: var(--shop-ink);
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.category-placeholder {
  aspect-ratio: 4 / 3;
  background:
    repeating-linear-gradient(
      45deg,
      #efe8dc 0px, #efe8dc 14px,
      #e7dfd0 14px, #e7dfd0 28px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a7e6b;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(0.65rem, 1.8vw, 0.8rem);
  position: relative;
}
.category-placeholder::after {
  content: "";
  position: absolute; inset: 12px;
  border: 2px dashed rgba(138, 126, 107, 0.45);
  border-radius: 8px;
}
.category-placeholder .category-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 2;
  transition: transform 0.35s ease;
}
.category-card:hover .category-placeholder .category-thumb-img {
  transform: scale(1.04);
}
.category-body {
  padding: 14px 14px 16px;
  text-align: center;
}
.category-body h2,
.category-card__title {
  margin: 0 0 4px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.35vw, 1.12rem);
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.25;
  color: var(--shop-primary);
}
.category-card__price {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(0.82rem, 2vw, 0.92rem);
  line-height: 1.35;
  color: var(--shop-muted);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
@media (min-width: 992px) {
  .category-card__price {
    font-size: clamp(0.86rem, 1.05vw, 0.95rem);
    white-space: nowrap;
  }
}
@media (max-width: 520px) {
  .category-card__price {
    white-space: normal;
    font-size: clamp(0.78rem, 2.6vw, 0.88rem);
  }
}
.category-body h2:only-child {
  margin-bottom: 12px;
}
.category-body .shop-btn {
  width: 100%;
}

/* ---------- Ortak butonlar ---------- */
.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, transform 0.1s ease;
  user-select: none;
}
.shop-btn--primary {
  background: var(--shop-accent);
  color: #fff;
  border-color: var(--shop-accent-dark);
}
.shop-btn--primary:hover { background: #c62828; }
.shop-btn--outline {
  background: #fff;
  color: var(--shop-primary);
  border-color: var(--shop-primary);
}
.shop-btn--outline:hover { background: var(--shop-primary); color: #fff; }
.shop-btn--success {
  background: var(--shop-success);
  color: #fff;
  border-color: #166030;
}
.shop-btn--success:hover { background: #236e3a; }
.shop-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ---------- Ürün ızgarası ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 430px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* Aynı sayfada birden fazla fiyat grubu — ürünler tek ızgarada */
main.shop-main .product-grids-joined {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}
main.shop-main .product-grids-joined > .product-grid {
  display: contents;
}
/* SEO bloğu ızgaranın dışında (JS insert); yine de tam satır güvenliği */
main.shop-main .product-grids-joined > .shop-category-seo {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 1024px) {
  main.shop-main .product-grids-joined {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 760px) {
  main.shop-main .product-grids-joined {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 430px) {
  main.shop-main .product-grids-joined {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.product-card {
  background: var(--shop-surface);
  border: 1px solid var(--shop-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shop-card-shadow);
}
.product-placeholder {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, #f3ece0 0%, #e7dfd0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a2957d;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}
.product-placeholder::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px dashed rgba(162, 149, 125, 0.55);
  border-radius: 6px;
  pointer-events: none;
}
.product-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.product-placeholder .product-ph-label {
  position: relative;
  z-index: 0;
}
.product-placeholder:has(img)::after { display: none; }
.product-body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.product-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--shop-ink);
  letter-spacing: 0.02em;
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.product-title .product-title-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--shop-ink);
  letter-spacing: 0.02em;
}
.product-title .product-code {
  font-weight: 900;
  font-size: 1.15rem;
  color: #082a31;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.product-price {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--shop-price);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-shadow: var(--shop-price-text-shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.2em;
}
.product-price .product-unit {
  font-size: 0.82rem;
  font-weight: 700;
  color: #9a1212;
  letter-spacing: 0.02em;
  text-shadow: var(--shop-price-text-shadow);
}

/* ---------- Ürün özellikleri listesi ---------- */
.product-specs {
  list-style: none;
  margin: 0;
  padding: 8px 10px;
  background: #faf7f2;
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
  text-align: left;
}
/* Rulo satırı (bej kutu, Rulo: … sağda m2) */
.product-specs.product-specs--rulo {
  padding: 10px 14px;
  background: #f0ebe3;
  border: 1px solid #e0d6c8;
  border-radius: 10px;
  font-size: 0.82rem;
}
.product-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--shop-ink);
}
.product-specs .spec-label {
  color: var(--shop-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.product-specs .spec-value {
  font-weight: 700;
  color: var(--shop-primary);
  text-align: right;
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.1em;
  flex-shrink: 0;
}
/* Rulo satırı vurgusu: bordo, rakam büyük m2 küçük */
.product-specs li.spec-rulo .spec-label,
.product-specs li.spec-rulo .spec-value {
  color: var(--shop-accent);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.product-specs li.spec-rulo .spec-value .spec-m2-num {
  font-size: clamp(1.1rem, 2.1vw, 1.3rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.product-specs li.spec-rulo .spec-value .spec-m2-unit {
  font-size: clamp(0.95rem, 1.85vw, 1.12rem);
  font-weight: 800;
  line-height: 1;
  margin-left: 0.1em;
  letter-spacing: 0.01em;
}
.product-specs li.spec-rulo .spec-value .spec-value-text {
  font-weight: 800;
  font-size: 0.95rem;
}
.product-specs li.spec-rulo {
  padding: 0;
}

/* ---------- Görsel yakınlaştırma (zoom + lightbox) ---------- */
.product-placeholder {
  cursor: zoom-in;
  border: 0;
  width: 100%;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
}
.product-placeholder img {
  transition: transform 0.35s ease;
  will-change: transform;
}
@media (hover: hover) {
  .product-placeholder:hover img {
    transform: scale(1.07);
  }
}
.product-placeholder:active img {
  transform: scale(1.1);
}
.product-placeholder:focus-visible {
  outline: 3px solid var(--shop-primary);
  outline-offset: 2px;
}
.product-zoom-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(8, 42, 49, 0.85);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  opacity: 0.92;
}
.product-placeholder:hover .product-zoom-hint {
  opacity: 1;
  transform: scale(1.06);
}

/* Lightbox modalı */
.shop-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2vw, 24px);
}
.shop-lightbox.show {
  display: flex;
}
.shop-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 16, 0.92);
  backdrop-filter: blur(2px);
  cursor: zoom-out;
}
.shop-lightbox-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: min(calc(96vw + 4px), 1360px);
  max-height: min(96vh, 1400px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
/* Oklar görsel alanının üzerinde; yan sütun yok — tüm genişlik görsele kalır */
.shop-lightbox-view {
  position: relative;
  width: 100%;
  max-width: min(98vw, 1380px);
}
.shop-lightbox-view .shop-lightbox-stage {
  width: 100%;
  min-width: 0;
}
.shop-lightbox-view:not(.shop-lightbox-view--no-nav) .shop-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
}
.shop-lightbox-prev {
  left: clamp(8px, 2vw, 16px);
}
.shop-lightbox-next {
  right: clamp(8px, 2vw, 16px);
}
.shop-lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--shop-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}
.shop-lightbox-nav:hover {
  background: var(--shop-accent);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}
.shop-lightbox-nav:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
@media (max-width: 480px) {
  .shop-lightbox {
    padding: 6px;
  }
  .shop-lightbox-body {
    max-width: 100vw;
    max-height: 98vh;
    gap: 8px;
  }
  .shop-lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .shop-lightbox-nav svg {
    width: 23px;
    height: 23px;
  }
}
.shop-lightbox-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(220px, 82vh, 960px);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  border-radius: 10px;
  background: #0a1518;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
@media (max-width: 480px) {
  .shop-lightbox-stage {
    width: 100%;
    height: min(82vh, 720px);
    border-radius: 8px;
  }
  .shop-lightbox-img {
    max-width: 100%;
    max-height: 100%;
  }
}
.shop-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.25s ease;
  image-rendering: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.shop-lightbox-img.zoomed {
  cursor: zoom-out;
  transform: scale(1.8);
  transform-origin: center center;
}
/* Resimli poster: kart çerçevesinin %25 üstüne çıkmayan büyüteç; ek tıkla şişirme yok */
.shop-lightbox-img.shop-lightbox-img--poster-cap {
  cursor: default;
}
.shop-lightbox-img.shop-lightbox-img--poster-cap.zoomed {
  transform: none;
  cursor: default;
}
.shop-lightbox-caption {
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 4px 10px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.shop-lightbox-topbar {
  position: relative;
  align-self: flex-end;
  z-index: 8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: min(98vw, 1380px);
  padding: 0 0 10px;
  flex-shrink: 0;
}
.shop-lightbox-ctrl {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: #b83845;
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(80, 18, 24, 0.35);
  transition: background 0.15s ease, transform 0.12s ease;
}
.shop-lightbox-ctrl:hover {
  background: #9c2a36;
  color: #fff;
}
.shop-lightbox-ctrl:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
.shop-lightbox-close.shop-lightbox-ctrl {
  min-width: 42px;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1;
}
@media (max-width: 600px) {
  .shop-lightbox-topbar {
    padding: 4px 4px 8px;
  }
}

/* ---------- Sepet sayfası ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 991px) {
  .cart-layout { grid-template-columns: 1fr; }
}

/* ---------- 3 sütunlu sepet düzeni: Sepetim | Adres | Ödeme ---------- */
.cart-layout--3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}
.cart-layout--3col .checkout-form-wrap {
  display: contents;
}
.cart-layout--3col > * {
  min-width: 0;
}
@media (min-width: 992px) {
  .cart-layout--3col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 22px;
  }
}
@media (min-width: 1200px) {
  .cart-layout--3col {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) minmax(0, 1.05fr);
    gap: 26px;
  }
}

/* Taşmayı engelleyen güvenlik kuralları — her ekran boyutunda */
.cart-panel,
.checkout-panel,
.checkout-address-panel,
.checkout-payment-panel {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.form-grid { min-width: 0; }
.field { min-width: 0; max-width: 100%; }
.field input,
.field textarea,
.field select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.field textarea { resize: vertical; }
.payment-options,
.payment-option,
.payment-detail,
.iban-row,
.credit-card-grid {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.iban-row { overflow-wrap: anywhere; word-break: break-all; }
.iban-row span { min-width: 0; flex: 1 1 auto; overflow-wrap: anywhere; word-break: break-all; }

.cart-panel,
.checkout-panel {
  background: var(--shop-surface);
  border: 1px solid var(--shop-border);
  border-radius: 14px;
  padding: clamp(14px, 2.6vw, 22px);
  box-shadow: var(--shop-card-shadow);
}
.panel-title {
  margin: 0 0 14px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--shop-primary);
  border-bottom: 2px solid var(--shop-primary);
  padding-bottom: 8px;
}

.cart-empty {
  text-align: center;
  padding: 24px 12px;
  color: var(--shop-muted);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee6d8;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3ece0 0%, #e7dfd0 100%);
  border: 1px dashed rgba(162, 149, 125, 0.55);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.cart-item-thumb.has-img {
  background: #fff;
  border: 1px solid rgba(162, 149, 125, 0.45);
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.cart-item-info {
  min-width: 0;
}
.cart-item-name {
  font-weight: 700;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--shop-ink);
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-cat {
  font-size: 0.75rem;
  color: var(--shop-muted);
  margin-top: 2px;
}
.cart-item-price {
  font-weight: 800;
  font-size: 1rem;
  color: var(--shop-price);
  margin-top: 4px;
  line-height: 1.3;
  text-shadow: var(--shop-price-text-shadow);
}
.cart-item-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--shop-border);
  background: #faf7f2;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}
.cart-qty-btn:hover { background: #efe8dc; }
.cart-qty-num {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}
.cart-item-remove {
  background: transparent;
  border: 0;
  color: var(--shop-accent);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.82rem;
  padding: 4px 6px;
}
.cart-item-remove:hover { text-decoration: underline; }

.cart-totals {
  margin-top: 14px;
  border-top: 2px solid var(--shop-primary);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
.cart-totals .label { font-weight: 600; color: var(--shop-muted); letter-spacing: 0.03em; }
.cart-totals .total {
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--shop-price);
  line-height: 1.2;
  text-shadow: var(--shop-price-text-shadow);
}

/* ---------- Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--shop-ink);
  letter-spacing: 0.02em;
}
.field label .req { color: var(--shop-accent); font-weight: 800; }
.field input,
.field textarea,
.field select {
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 0.92rem;
  color: var(--shop-ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--shop-primary);
  box-shadow: 0 0 0 3px rgba(8, 42, 49, 0.12);
}
.field .error-text {
  color: var(--shop-accent);
  font-size: 0.75rem;
  font-weight: 600;
  min-height: 1em;
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: var(--shop-accent);
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.12);
}

/* ---------- Ödeme seçimi ---------- */
.payment-options {
  display: grid;
  gap: 10px;
  margin: 14px 0 6px;
}
.payment-option {
  border: 1px solid var(--shop-border);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  background: #faf7f2;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.payment-option.active {
  border-color: var(--shop-primary);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(8, 42, 49, 0.1);
}
.payment-option input { accent-color: var(--shop-primary); }
.payment-option .pay-title {
  font-weight: 700;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  letter-spacing: 0.03em;
}
.payment-option .pay-desc {
  font-size: 0.8rem;
  color: var(--shop-muted);
  margin-top: 4px;
}
.payment-detail {
  margin-top: 10px;
  padding: 12px 14px;
  background: #faf7f2;
  border: 1px dashed var(--shop-border);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--shop-ink);
}
.payment-detail strong { color: var(--shop-primary); }
.checkout-trust-badges {
  margin: 16px 0 14px;
  padding: 14px 16px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafb 0%, #f0f4f6 100%);
  border: 1px solid #e2e8ec;
  border-radius: 12px;
  box-sizing: border-box;
}
.checkout-trust-badges__lead {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  color: #082a31;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.checkout-trust-badges__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: min(300px, 92%);
  height: auto;
  object-fit: contain;
}
.return-warning {
  margin: 14px 0;
  padding: 12px 14px;
  background: #fff4f4;
  border: 1px solid #f3c2c2;
  border-left: 4px solid var(--shop-accent);
  color: #7a1a1a;
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.9rem;
}

.submit-bar {
  margin-top: 14px;
}
.submit-bar .shop-btn { width: 100%; font-size: 0.95rem; padding: 14px; }

.order-success {
  display: none;
  text-align: center;
  padding: 20px 10px;
  color: var(--shop-success);
  font-weight: 700;
}

/* ---------- Üst başlık altındaki sepet ikonu ---------- */
.cart-nav-link {
  position: relative;
}
.cart-nav-link .cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #fff;
  color: var(--shop-accent);
  font-size: 11px;
  font-weight: 800;
  padding: 0 5px;
  margin-inline-start: 6px;
  line-height: 1;
}

/* ---------- Kategori sayfası sırt başlığı ---------- */
.category-hero {
  text-align: center;
  position: relative;
  padding: clamp(16px, 3.4vw, 28px) 14px;
  background: #0b7a3a;
  border: 1px solid #075c2b;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 22px rgba(7, 92, 43, 0.35);
}
.category-hero h1 {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", "Noto Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  letter-spacing: -0.02em;
  text-transform: none;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-align: center;
  text-wrap: balance;
  max-width: 100%;
  margin-inline: auto;
  line-height: 1.3;
}
.category-hero p {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(0.95rem, 2.3vw, 1.05rem);
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

/* Promo hero (kargo + tutkal bizden) */
.category-hero--promo {
  background: #000000;
  border: 1px solid #000000;
  position: relative;
  overflow: hidden;
}
.category-hero--promo .promo-line,
.category-hero--promo .promo-sub {
  position: relative;
  z-index: 1;
}
.category-hero--promo .promo-line {
  margin: 0;
  color: #39ff6e;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.6vw, 1.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(0, 255, 100, 0.65),
    0 0 22px rgba(57, 255, 110, 0.5),
    0 0 36px rgba(0, 255, 80, 0.28);
  animation: promo-blink 1.4s ease-in-out infinite;
}
@keyframes promo-blink {
  0%, 100% {
    opacity: 1;
    text-shadow:
      0 0 12px rgba(0, 255, 130, 0.85),
      0 0 26px rgba(57, 255, 120, 0.55),
      0 0 40px rgba(0, 255, 100, 0.32);
    transform: scale(1);
  }
  50% {
    opacity: 0.58;
    text-shadow: 0 0 7px rgba(0, 255, 100, 0.45);
    transform: scale(0.985);
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-hero--promo .promo-line {
    animation: none;
  }
}
@media (max-width: 1023px) {
  .category-hero--promo .promo-line {
    font-size: clamp(0.78rem, 2.85vw, 1.02rem);
    letter-spacing: 0.03em;
  }
}
.category-hero--promo .promo-sub {
  margin: 0;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: none;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 9px;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 46%, #8b0000 100%);
  border: 1px solid #6b0000;
  box-shadow: 0 8px 20px rgba(183, 28, 28, 0.35);
  font-weight: 850;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: clamp(0.88rem, 2.4vw, 1.02rem);
  letter-spacing: 0.03em;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.back-link:hover {
  background: linear-gradient(135deg, #e53935 0%, #c62828 48%, #9a0f0f 100%);
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(183, 28, 28, 0.4);
}
.back-link:focus-visible {
  outline: 2px solid #5c0000;
  outline-offset: 3px;
  border-radius: 9px;
}

/* Sepet vb.: .shop-main doğrudan çocuğu geri linki (kategori hariç) */
.shop-main > .back-link:not(.shop-back-after-lang) {
  align-self: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  gap: 8px;
  padding: 9px 18px;
}
.shop-main > .back-link:not(.shop-back-after-lang)::before {
  content: "\2190";
  font-size: 1.85em;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 2px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35), 0 0 14px rgba(255, 255, 255, 0.4);
  -webkit-text-stroke: 0.45px rgba(255, 255, 255, 0.35);
  letter-spacing: 0;
  transform: translateY(-1px);
}
.shop-main > .back-link:not(.shop-back-after-lang):hover::before {
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32), 0 0 14px rgba(255, 255, 255, 0.5);
}

/* Kategori: bayrak şeridi ile yeşil hero arasında — ikisine de binmeden, daha küçük buton */
.shop-main > .back-link.shop-back-after-lang {
  align-self: center;
  margin-top: clamp(10px, 2.2vw, 16px);
  margin-bottom: clamp(12px, 2.6vw, 20px);
  margin-left: auto;
  margin-right: auto;
  padding: 5px 11px;
  gap: 5px;
  border-radius: 7px;
  font-size: clamp(0.68rem, 1.9vw, 0.82rem);
  letter-spacing: 0.02em;
  line-height: 1.3;
  box-shadow: 0 5px 14px rgba(183, 28, 28, 0.28);
  max-width: min(100% - 24px, 440px);
  box-sizing: border-box;
}
.shop-main > .back-link.shop-back-after-lang:hover {
  box-shadow: 0 7px 16px rgba(183, 28, 28, 0.33);
}
.shop-main > .back-link.shop-back-after-lang::before {
  content: "\2190";
  font-size: 1.22em;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-right: 1px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32), 0 0 10px rgba(255, 255, 255, 0.32);
  -webkit-text-stroke: 0.4px rgba(255, 255, 255, 0.3);
  letter-spacing: 0;
  transform: translateY(-0.5px);
}
.shop-main > .back-link.shop-back-after-lang:hover::before {
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.3), 0 0 11px rgba(255, 255, 255, 0.42);
}

/* Telefon / dar tablet: daha büyük geri butonu, üst boşluk az — yeşil hero’ya yakın */
@media (max-width: 991px) {
  main.shop-main:has(> a.back-link.shop-back-after-lang) {
    padding-top: clamp(8px, 2.2vw, 14px);
  }
  .shop-main > .back-link.shop-back-after-lang {
    margin-top: 2px;
    margin-bottom: 10px;
    padding: 12px 20px;
    gap: 8px;
    border-radius: 11px;
    font-size: clamp(0.9rem, 3.9vw, 1.06rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.35;
    box-shadow: 0 8px 20px rgba(183, 28, 28, 0.34);
    max-width: min(100% - 16px, 520px);
  }
  .shop-main > .back-link.shop-back-after-lang::before {
    font-size: 1.42em;
    margin-right: 2px;
  }
  .category-hero {
    margin-top: 0;
    margin-bottom: 16px;
    padding: clamp(12px, 3vw, 20px) 12px;
  }
  .category-hero h1:last-child {
    margin-bottom: 0;
  }
}

/* Masaüstü: geri / Tüm Kategoriler — ürün kartı birincil butonu ile aynı kırmızı, daha büyük */
@media (min-width: 992px) {
  .shop-main > .back-link.shop-back-after-lang {
    padding: 11px 22px;
    gap: 9px;
    border-radius: 6px;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(0.84rem, 1.05vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.25;
    background: var(--shop-accent);
    border: 1px solid var(--shop-accent-dark);
    box-shadow: 0 8px 22px rgba(183, 28, 28, 0.32);
    max-width: min(100% - 24px, 520px);
    margin-top: clamp(12px, 2vw, 18px);
    margin-bottom: clamp(14px, 2.5vw, 24px);
  }
  .shop-main > .back-link.shop-back-after-lang:hover {
    background: #c62828;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(183, 28, 28, 0.38);
  }
  .shop-main > .back-link.shop-back-after-lang::before {
    font-size: 1.35em;
  }
}

/* ---------- Katalog bandı: çağla tam genişlik + WhatsApp satırı (shop-main--catalog-band) ---------- */
main.shop-main.shop-main--catalog-band {
  padding-top: clamp(10px, 2.5vw, 18px) !important;
}
main.shop-main.shop-main--catalog-band > .category-hero:first-child:not(.category-hero--promo) {
  margin-top: clamp(4px, 1.2vw, 10px);
}
main.shop-main.shop-main--catalog-band > .category-hero + .back-link.shop-back-after-lang {
  margin-top: clamp(8px, 2.2vw, 14px);
  margin-bottom: clamp(12px, 2.5vw, 18px);
}
@media (max-width: 991px) {
  main.shop-main.shop-main--catalog-band > .category-hero + .back-link.shop-back-after-lang {
    margin-top: 8px;
    margin-bottom: 10px;
  }
}
@media (max-width: 640px) {
  main.shop-main.shop-main--catalog-band > .category-hero + .back-link.shop-back-after-lang {
    margin-top: 6px;
    margin-bottom: 8px;
  }
}
main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #b9cf96;
  border: none;
  border-bottom: 1px solid rgba(90, 120, 70, 0.35);
  box-shadow: 0 6px 16px rgba(70, 100, 55, 0.14);
  border-radius: 0;
  padding: clamp(8px, 1.9vw, 14px) max(12px, env(safe-area-inset-left))
    clamp(8px, 1.9vw, 14px) max(12px, env(safe-area-inset-right));
  margin-bottom: 0;
  box-sizing: border-box;
  overflow: hidden;
}
main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) h1 {
  width: 100%;
  max-width: 100%;
  margin: 0 0 5px;
  padding: 0 4px;
  box-sizing: border-box;
  color: #15351c !important;
  text-shadow: none !important;
  font-size: clamp(1rem, 2.6vw, 1.35rem) !important;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: none;
  overflow-wrap: anywhere;
  word-break: break-word;
}
main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) p.catalog-hero-promo,
main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) p.poster-index-promo {
  margin: 4px 0 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 clamp(6px, 2.2vw, 14px);
  color: #454545 !important;
  font-weight: 800;
  text-shadow: none !important;
  font-size: clamp(0.76rem, 2.45vw, 1.1rem);
  line-height: 1.28;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) p:not(.catalog-hero-promo):not(.poster-index-promo):not(.category-hero-gold-foil) {
  color: #15351c;
  font-weight: 700;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  line-height: 1.35;
  text-shadow: none;
  margin-top: 8px;
}
main.shop-main.shop-main--catalog-band > .category-hero.category-hero--promo .catalog-hero-promo {
  margin: 10px 0 0;
  padding: 0 clamp(6px, 2.2vw, 12px);
  color: #d0d0d0 !important;
  font-size: clamp(0.72rem, 2.2vw, 0.98rem);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-shadow: none !important;
}
@media (max-width: 640px) {
  main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) {
    padding: clamp(6px, 1.7vw, 11px) max(10px, env(safe-area-inset-left))
      clamp(6px, 1.7vw, 11px) max(10px, env(safe-area-inset-right));
  }
  main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) h1 {
    font-size: clamp(0.68rem, 2.15vw, 0.98rem) !important;
  }
  main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) p.catalog-hero-promo,
  main.shop-main.shop-main--catalog-band > .category-hero:not(.category-hero--promo) p.poster-index-promo {
    font-size: clamp(0.72rem, 2.25vw, 1.02rem);
    margin-top: 2px;
  }
}

/* ---------- Toast / mini bilgi ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 90px;
  transform: translate(-50%, 20px);
  background: #0f2e35;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10080;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* ==========================================================
   Mobil (≤720px) — Sepet & Ödeme formu yazılarını hafifçe büyüt
   Masaüstü ve tablette değişiklik yok.
   ========================================================== */
@media (max-width: 720px) {
  .cart-panel,
  .checkout-panel {
    padding: 16px 14px;
  }
  .panel-title {
    font-size: 1.08rem;
    letter-spacing: 0.08em;
  }
  .checkout-panel h3.panel-title {
    font-size: 1.02rem !important;
  }
  .field label {
    font-size: 0.92rem;
    font-weight: 700;
  }
  .field input,
  .field textarea,
  .field select {
    font-size: 1rem;
    padding: 12px 14px;
    border-radius: 9px;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    font-size: 0.92rem;
  }
  .field textarea {
    min-height: 92px;
  }
  .field .error-text {
    font-size: 0.82rem;
  }
  .payment-option {
    padding: 14px 14px;
    border-radius: 11px;
  }
  .payment-option .pay-title {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }
  .payment-option .pay-desc {
    font-size: 0.9rem;
    margin-top: 5px;
    line-height: 1.5;
  }
  .payment-detail {
    font-size: 0.95rem;
    padding: 14px 14px;
    line-height: 1.6;
  }
  .payment-detail strong {
    font-size: 0.98rem;
  }
  .iban-row {
    font-size: 0.95rem;
    padding: 10px 12px;
    gap: 10px;
  }
  .iban-row button {
    font-size: 0.82rem;
    padding: 8px 12px;
  }
  .cart-totals .label {
    font-size: 0.95rem;
  }
  .cart-totals .total {
    font-size: 1.35rem;
  }
}

/* ---------- Resimli poster: duvar hesaplama ---------- */
.product-poster-wrap {
  position: relative;
  width: 100%;
}
.product-card--poster .product-poster-pick {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}
.product-card--poster .product-placeholder--poster {
  cursor: pointer;
}
.product-card--poster .product-placeholder--poster:has(img) .product-ph-label {
  z-index: 0;
  opacity: 0.92;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.product-poster-duvar-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 8px;
  text-align: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--shop-primary);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
.product-poster-lb {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(8, 42, 49, 0.88);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.product-poster-lb .product-zoom-hint {
  position: static;
  width: 28px;
  height: 28px;
  right: auto;
  bottom: auto;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
}
.product-body--poster {
  padding-bottom: 12px;
}
.product-poster-hint {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--shop-price);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: var(--shop-price-text-shadow);
}
.poster-calc-panel {
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--shop-border);
  border-radius: 16px;
  box-shadow: var(--shop-card-shadow);
  overflow: hidden;
}
.poster-calc-panel[hidden] {
  display: none;
}
.poster-calc-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}
@media (min-width: 801px) {
  .poster-calc-inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  }
}
@media (max-width: 800px) {
  .poster-calc-inner {
    grid-template-columns: 1fr;
  }
}
.poster-calc-preview {
  position: relative;
  min-height: 320px;
  background: #faf7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 36px);
  border-right: 1px solid var(--shop-border);
}
@media (max-width: 800px) {
  .poster-calc-preview {
    border-right: 0;
    border-bottom: 1px solid var(--shop-border);
  }
}
.poster-calc-pick-hint {
  margin: 0;
  font-size: 0.9rem;
  color: var(--shop-muted);
  text-align: center;
}
.poster-calc-img {
  max-width: min(100%, 640px);
  max-height: min(64vh, 580px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(8, 42, 49, 0.12), 0 10px 32px rgba(0, 0, 0, 0.14);
}
.poster-calc-dim-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: #b91c1c;
  letter-spacing: 0.02em;
}
.poster-calc-side {
  padding: clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.poster-calc-title {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
  color: #082a31;
  font-weight: 800;
}
.poster-calc-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.poster-calc-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--shop-ink);
}
.poster-calc-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}
.poster-calc-line {
  margin: 0;
  font-size: 0.9rem;
  color: var(--shop-ink);
}
.poster-calc-line strong {
  color: var(--shop-primary);
  font-size: 1.05rem;
}
#posterCalcTotal {
  color: var(--shop-price);
  font-weight: 800;
  font-size: 1.12rem;
  text-shadow: var(--shop-price-text-shadow);
}
.poster-calc-rate {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--shop-price);
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-shadow: var(--shop-price-text-shadow);
}
.poster-calc-add {
  margin-top: 4px;
  width: 100%;
}

@media (max-width: 767px) {
  .poster-calc-panel {
    margin-top: 14px;
  }
  .poster-calc-preview {
    min-height: 220px;
    padding: clamp(12px, 3vw, 18px);
  }
  .poster-calc-side {
    padding: 10px 12px;
    gap: 6px;
  }
  .poster-calc-title {
    margin: 0;
    font-size: 1.02rem;
  }
  .poster-calc-rate {
    font-size: 0.82rem;
    line-height: 1.25;
  }
  .poster-calc-fields {
    gap: 6px;
  }
  .poster-calc-label {
    gap: 2px;
  }
  .poster-calc-dim-label {
    font-size: 0.95rem;
  }
  .poster-calc-input {
    padding: 8px 10px;
    font-size: 16px;
  }
  .poster-calc-line {
    font-size: 0.84rem;
    line-height: 1.25;
  }
  .poster-calc-add {
    margin-top: 2px;
  }
}

/* ---------- Ürün detay paneli (duvar kağıdı; poster / boyanabilir hariç) ---------- */
.product-placeholder--sheet {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  background: linear-gradient(135deg, #f3ece0 0%, #e7dfd0 100%);
}
.product-sheet-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
  display: block;
  width: 100%;
  height: 100%;
}
.product-sheet-hit img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.35s ease;
}
@media (hover: hover) {
  .product-sheet-hit:hover img {
    transform: scale(1.05);
  }
}
.product-sheet-hit:focus-visible {
  outline: 3px solid var(--shop-primary);
  outline-offset: 2px;
}
.product-placeholder--sheet .product-ph-label {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}
.product-zoom-corner {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 4;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 42, 49, 0.88);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}
/* Sheet kartları: tek büyüteç sağ altta (küçük); --br burada base'den sonra gelmeli ki left ezilmesin */
.product-zoom-corner.product-zoom-corner--br {
  left: auto;
  right: 10px;
  width: 32px;
  height: 32px;
}
.product-zoom-corner.product-zoom-corner--br .product-zoom-hint {
  width: 32px;
  height: 32px;
}
.product-zoom-corner:hover {
  background: var(--shop-accent);
  transform: scale(1.06);
}
.product-zoom-corner:focus-visible {
  outline: 3px solid var(--shop-primary);
  outline-offset: 2px;
}
.product-zoom-corner .product-zoom-hint {
  position: static;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.product-detail-sheet {
  position: fixed;
  inset: 0;
  z-index: 10090;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
.product-detail-sheet.show {
  display: flex;
}
.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 14, 0.55);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.product-detail-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  max-height: 100vh;
  max-height: 100dvh;
  margin: 0 auto;
  background: var(--shop-surface);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  overflow: auto;
  display: flex;
  flex-direction: column;
}
.product-detail-topbar {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 8px;
  flex-shrink: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 247, 242, 0.98) 0%,
    rgba(250, 247, 242, 0.9) 72%,
    rgba(250, 247, 242, 0) 100%
  );
}
.product-detail-ctrl {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: #b83845;
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(80, 18, 24, 0.3);
  transition: background 0.15s ease, transform 0.12s ease;
}
.product-detail-ctrl:hover {
  background: #9c2a36;
  color: #fff;
}
.product-detail-ctrl:focus-visible {
  outline: 3px solid var(--shop-primary);
  outline-offset: 2px;
}
.product-detail-close.product-detail-ctrl {
  min-width: 42px;
  padding: 0 12px;
  font-size: 1.05rem;
  line-height: 1;
}

.product-detail-washable {
  color: var(--shop-accent);
  font-weight: 800;
}
.product-detail-wash-inline,
.product-urun-link {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(0.72rem, 2.8vw, 0.84rem);
  font-weight: 600;
  color: var(--shop-accent, #8b6914);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-urun-link:hover {
  opacity: 0.85;
}
.product-wash-inline {
  color: var(--shop-ink);
  font-weight: 600;
}
.product-detail-wash-inline {
  margin-left: 0.45em;
  font-size: clamp(0.74rem, 2.05vw, 0.84rem);
}
.product-wash-inline {
  margin-left: 0.35em;
  font-size: clamp(0.7rem, 2.85vw, 0.82rem);
}
.product-detail-specs .pd-spec-em {
  font-weight: 800;
  line-height: 1.35;
}
.product-detail-specs .pd-spec-em.pd-spec-dims-text {
  font-weight: 800;
  font-size: clamp(1.05rem, 2.82vw, 1.24rem);
  letter-spacing: -0.01em;
  line-height: 1.38;
}
@media (max-width: 440px) {
  .product-detail-specs .pd-spec-em.pd-spec-dims-text {
    font-size: clamp(0.94rem, 3.35vw, 1.08rem);
  }
}
.product-detail-specs .pd-spec-em.pd-spec-m2-only {
  color: var(--shop-accent);
  font-weight: 900;
  font-size: clamp(1.14rem, 3vw, 1.32rem);
  line-height: 1.3;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 420px);
  gap: clamp(20px, 4vw, 36px);
  padding: 8px clamp(16px, 3vw, 32px) clamp(24px, 4vw, 40px);
  align-items: start;
}
/* Masaüstü: satır yüksekliği sol görsel ile aynı; sağ sütun dikeyde yayılır */
@media (min-width: 992px) {
  .product-detail-grid {
    align-items: stretch;
  }
  .product-detail-media {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .product-detail-main-wrap {
    align-self: center;
    width: 100%;
  }
  .product-detail-info {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    min-width: 0;
  }
  .product-detail-add {
    margin-top: auto;
  }
}
@media (max-width: 991px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
  .product-detail-media {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .product-detail-add {
    margin-top: 0;
  }
}
.product-detail-main-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f0ebe3;
  border: 1px solid var(--shop-border);
  aspect-ratio: 1 / 1;
  max-height: min(72vh, 640px);
}
.product-detail-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #faf7f2;
}
.product-detail-zoom-fab {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 42, 49, 0.9);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.product-detail-zoom-fab:hover {
  background: var(--shop-accent);
}
.product-detail-title {
  margin: 0 0 10px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--shop-ink);
  line-height: 1.25;
}
.product-detail-price {
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.25em;
}
.product-detail-price > strong:first-of-type {
  color: var(--shop-price);
  font-weight: 800;
  text-shadow: var(--shop-price-text-shadow);
}
.product-detail-unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--shop-muted);
  margin-left: 6px;
}
.product-detail-lead {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--shop-muted);
  line-height: 1.55;
}
.product-detail-lead .pd-lead-ul {
  margin: 0;
  padding: 0 0 0 1.15em;
  list-style-type: disc;
  color: var(--shop-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
[dir="rtl"] .product-detail-lead .pd-lead-ul,
.product-detail-sheet [dir="rtl"].pd-lead-ul {
  padding: 0 1.15em 0 0;
}
.product-detail-lead .pd-lead-ul li + li {
  margin-top: 0.42em;
}
.product-detail-lead .pd-lead-ul strong {
  color: var(--shop-ink);
  font-weight: 700;
}
.product-detail-specs-cap {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shop-primary);
  margin-bottom: 0;
  flex: 0 1 auto;
  min-width: 0;
}
.product-detail-specs-cap-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  column-gap: 10px;
  row-gap: 6px;
  margin-bottom: 8px;
}
/* Tablo üstündeki rozette m2 — başlığın bitişinden hemen sonra, uzak kenara yapışmaz */
.product-detail-sheet .pd-spec-cap-m2.pd-spec-em.pd-spec-m2-only {
  color: var(--shop-accent);
  font-weight: 900;
  font-size: clamp(1.08rem, 2.85vw, 1.26rem);
  line-height: 1.2;
}
.pd-spec-cap-m2.pd-spec-m2-only {
  flex: 0 0 auto;
  margin-left: 0;
}
.pd-spec-cap-m2.pd-spec-m2-only:not([hidden]) {
  letter-spacing: 0.02em;
}
.product-detail-specs-wrap {
  margin-bottom: 14px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-detail-specs {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.82rem;
  margin-bottom: 0;
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  overflow: hidden;
}
.product-detail-specs td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--shop-border);
  vertical-align: middle;
}
.product-detail-specs .pd-spec-td-dims {
  width: auto;
  min-width: 0;
  max-width: 62%;
}
.product-detail-specs .pd-spec-td-qty {
  width: 38%;
  min-width: 0;
  max-width: 260px;
  text-align: right;
  vertical-align: middle;
  padding-left: 6px;
  padding-right: 8px;
}
.product-detail-specs .pd-spec-placeholder.pd-spec-td-dims {
  max-width: 62%;
}
.product-detail-specs .pd-spec-placeholder {
  padding: 0;
  border-bottom: 0;
  vertical-align: middle;
}
.pd-spec-row--qty-only .pd-spec-placeholder {
  border-right: 0;
}
.product-detail-specs tr:last-child td {
  border-bottom: 0;
}
.product-detail-qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.product-detail-qty-row--in-spec {
  margin-bottom: 0;
  gap: 6px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
}
.product-detail-qty-row--in-spec .product-detail-qty {
  flex-shrink: 0;
}
.product-detail-qty-row--in-spec .product-detail-qty-label {
  flex-shrink: 0;
}
@media (max-width: 420px) {
  .product-detail-specs td {
    padding: 10px 8px;
  }
  .product-detail-qty-row--in-spec .product-detail-qty-label {
    font-size: 0.75rem;
  }
  .product-detail-specs .pd-spec-td-qty {
    width: auto;
    min-width: min(160px, 46vw);
  }
}
@media (max-width: 380px) {
  #productDetailSheet .product-detail-qty-btn {
    width: 34px;
    height: 34px;
    font-size: 1.05rem;
  }
  #productDetailSheet .product-detail-qty-input {
    width: 42px;
    height: 34px;
    font-size: 0.92rem;
  }
}
.product-detail-qty-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--shop-ink);
}
.product-detail-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--shop-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.product-detail-qty-btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: #f3ece0;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--shop-primary);
  font-weight: 700;
}
.product-detail-qty-btn:hover {
  background: #e7dfd0;
}
.product-detail-qty-input {
  width: 48px;
  height: 40px;
  border: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
}
.product-detail-add {
  width: 100%;
  margin-bottom: 0;
  padding: 14px 18px;
  font-size: 0.9rem;
}


/* Ürün kartı: görselin altı (başlık, özellik kutusu, fiyat, buton) — Bahnschrift */
.product-body,
.product-body .product-title,
.product-body .product-title .product-title-name,
.product-body .product-title .product-code,
.product-body .product-price,
.product-body .product-specs,
.product-body .shop-btn {
  font-family:
    Bahnschrift,
    "Bahnschrift",
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    sans-serif;
}

/* Ürün detay paneli: içerik sütunu — Bahnschrift */
.product-detail-info,
.product-detail-info .product-detail-title,
.product-detail-info .product-detail-price,
.product-detail-info .product-detail-lead,
.product-detail-info .product-detail-specs-cap,
.product-detail-info .product-detail-specs-cap-row,
.product-detail-info .product-detail-specs-wrap,
.product-detail-info .product-detail-specs,
.product-detail-info .product-detail-qty-row,
.product-detail-info .product-detail-qty-label,
.product-detail-info .product-detail-qty-btn,
.product-detail-info .product-detail-qty-input,
.product-detail-info .product-detail-add {
  font-family:
    Bahnschrift,
    "Bahnschrift",
    "Segoe UI Variable",
    "Segoe UI",
    system-ui,
    sans-serif;
}

/* ---------- Kategori sayfaları: iç katalog (m2/poster seçimi + ürün grid’i) — ana sayfa #kataloglar değil ---------- */
main.shop-main .subcatalog-frame {
  padding: clamp(14px, 2.6vw, 26px);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}
main.shop-main .subcatalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 380px));
  gap: clamp(14px, 2.4vw, 22px);
  justify-content: center;
}
@media (max-width: 760px) {
  main.shop-main .subcatalog-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: clamp(12px, 2.2vw, 18px);
  }
}
/* Masaüstü: 5/10/16 m2 gibi tam 3 kart tek satır; 2 kartlı hub’lar (ör. mermer) ortada — mobilde dokunma */
@media (min-width: 761px) {
  main.shop-main .subcatalog-grid:has(.subcatalog-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }
  main.shop-main .subcatalog-grid:has(.subcatalog-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: min(1120px, 100%);
    margin-inline: auto;
    justify-content: center;
  }
  main.shop-main .subcatalog-grid:has(.subcatalog-card:only-child) {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(520px, 100%);
    margin-inline: auto;
  }
}
main.shop-main .subcatalog-grid--poster {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 360px));
  gap: clamp(14px, 2.4vw, 22px);
  justify-content: center;
}
@media (min-width: 960px) {
  main.shop-main .subcatalog-grid--poster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }
}
@media (max-width: 520px) {
  main.shop-main .subcatalog-grid--poster {
    gap: clamp(12px, 2.2vw, 18px);
  }
}
main.shop-main .subcatalog-card {
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
main.shop-main .subcatalog-visual,
main.shop-main .subcatalog-visual--image {
  aspect-ratio: 4 / 3.22;
}
main.shop-main .subcatalog-card:hover .subcatalog-visual--image .subcatalog-visual-img {
  transform: scale(1.04);
}
main.shop-main .product-grid {
  gap: 20px;
}
@media (min-width: 1025px) {
  main.shop-main .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
@media (max-width: 430px) {
  main.shop-main .product-grid {
    gap: 12px;
  }
}
main.shop-main .product-card {
  border-radius: 14px;
}
main.shop-main .product-placeholder::after {
  inset: 8px;
  border-radius: 7px;
}

/* Kategori SEO — shop-main / ürün grid ile aynı satır genişliği (Hakkımızda kart stili) */
main.shop-main .shop-category-seo {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(18px, 2.5vw, 28px);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  box-sizing: border-box;
}
main.shop-main .shop-category-seo__card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8ec;
  border-radius: 14px;
  padding: clamp(1.2rem, 2.8vw, 1.75rem) clamp(1.1rem, 3vw, 1.85rem);
  box-shadow: 0 2px 8px rgba(8, 42, 49, 0.06);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
main.shop-main .shop-category-seo__card:hover {
  box-shadow: 0 10px 28px rgba(8, 42, 49, 0.1);
  border-color: #cfd8dc;
}
main.shop-main .shop-category-seo__card--tip {
  background: linear-gradient(145deg, #0e3a44 0%, #082a31 55%, #061e24 100%);
  border-color: #061a1f;
  box-shadow: 0 6px 22px rgba(8, 42, 49, 0.18);
}
main.shop-main .shop-category-seo__card--tip:hover {
  border-color: #0a252c;
  box-shadow: 0 10px 28px rgba(8, 42, 49, 0.22);
}
main.shop-main .shop-category-seo__card--poster {
  border-color: #c5d9f0;
  background: #f8fbff;
}
main.shop-main .shop-category-seo__heading {
  display: block;
  margin: 0 0 1rem;
  padding: 0 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #082a31;
  border-left: 4px solid #082a31;
}
main.shop-main .shop-category-seo__card--tip .shop-category-seo__heading {
  color: #f0f4f5;
  border-left-color: #7eb8c4;
}
main.shop-main .shop-category-seo__body p {
  margin: 0 0 0.85rem;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(0.98rem, 2.1vw, 1.08rem);
  line-height: 1.72;
  color: #2d3748;
  max-width: none;
}
main.shop-main .shop-category-seo__card--tip .shop-category-seo__body p {
  color: #e8eef0;
}
main.shop-main .shop-category-seo__body p:last-child {
  margin-bottom: 0;
}
main.shop-main .shop-category-seo__body h3 {
  margin: 1.35rem 0 0.55rem;
  padding: 0 0 0 0.75rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  font-weight: 700;
  color: #082a31;
  border-left: 3px solid #b71c1c;
  line-height: 1.35;
}
main.shop-main .shop-category-seo__body h3:first-of-type {
  margin-top: 0.25rem;
}
main.shop-main .shop-category-seo__body a {
  color: #1565c0;
  font-weight: 600;
}
main.shop-main .shop-category-seo__card--tip .shop-category-seo__body a {
  color: #a8d4e8;
}
main.shop-main .shop-category-seo__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
main.shop-main .shop-category-seo__nav a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #e8f4f8;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
main.shop-main .shop-category-seo__nav a:hover {
  background: rgba(255, 255, 255, 0.2);
}
main.shop-main .shop-category-seo__card:not(.shop-category-seo__card--tip) .shop-category-seo__nav a {
  background: #f0f4f6;
  color: #1565c0;
}
main.shop-main .shop-category-seo__card:not(.shop-category-seo__card--tip) .shop-category-seo__nav a:hover {
  background: #e2e8ec;
}
main.shop-main .shop-category-seo__faq-title {
  margin: 1.35rem 0 0.65rem;
  padding: 0 0 0 0.75rem;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(0.98rem, 2.2vw, 1.1rem);
  font-weight: 700;
  color: #082a31;
  border-left: 3px solid #b71c1c;
}
main.shop-main .shop-category-seo__faq details {
  border: 1px solid #e2e8ec;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  background: #fafbfc;
}
main.shop-main .shop-category-seo__faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #082a31;
  list-style: none;
  font-size: 0.95rem;
}
main.shop-main .shop-category-seo__faq summary::-webkit-details-marker {
  display: none;
}
main.shop-main .shop-category-seo__faq details[open] summary {
  margin-bottom: 0.45rem;
}
main.shop-main .shop-category-seo__faq details p {
  margin: 0;
  font-family: "DM Sans", "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: clamp(0.98rem, 2.1vw, 1.08rem);
  line-height: 1.72;
  color: #2d3748;
  max-width: none;
}
@media (max-width: 640px) {
  main.shop-main .shop-category-seo {
    margin-bottom: 1.25rem;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  main.shop-main .shop-category-seo__card {
    padding: 1rem 0.95rem;
    border-radius: 12px;
    min-width: 0;
  }
  main.shop-main .shop-category-seo__nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }
  main.shop-main .shop-category-seo__nav a {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
  main.shop-main .shop-category-seo__faq details {
    padding: 0.75rem 0.85rem;
  }
  main.shop-main .shop-category-seo__faq summary {
    font-size: clamp(0.92rem, 2.4vw, 1rem);
    line-height: 1.4;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  main.shop-main .shop-category-seo__card {
    padding: 1.35rem 1.5rem;
  }
}
main.shop-main .shop-category-seo--minimal .shop-category-seo__card {
  padding: 1rem 1.15rem;
}
main.shop-main .shop-category-seo--minimal .shop-category-seo__body p {
  font-size: 0.92rem;
  line-height: 1.6;
}
