/* ============================================================
   ÜRÜNLER / KATEGORİ SAYFALARI CSS — urunler.css
   ============================================================ */

/* Sayfa hero küçük */
.category-page-hero {
  background: linear-gradient(135deg, #0f1a2b 0%, #003580 100%);
  padding: 52px 0 40px;
  color: #fff;
}
.category-page-hero .breadcrumb { color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.category-page-hero .breadcrumb a { color: rgba(255,255,255,0.85); }
.category-page-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 10px 0;
}
.category-page-hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 580px;
  margin: 0;
  line-height: 1.65;
}

/* Filtre / Kategori seçici */
.category-filter {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 68px;
  z-index: 50;
}
.category-filter-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Ürünler listesi bölümü */
.products-section { padding: 56px 0; }

/* Ürün detay sayfası */
.product-detail-section { padding: 56px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 768px) { .product-detail-grid { grid-template-columns: 1fr; } }

.product-img-gallery { position: sticky; top: 90px; }
.product-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--bg);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.product-thumb-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--brand); }

.product-info h1 {
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 800;
  margin: 0 0 6px 0;
}
.product-sku { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.product-tag {
  background: rgba(0,102,204,0.08);
  color: var(--brand);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
}
.product-desc { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.product-specs-table th,
.product-specs-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.product-specs-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--muted);
  width: 44%;
}
.product-specs-table td { color: var(--text); }

.product-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Urunler ana sayfa — kategori listesi */
.category-list-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 600px) { .category-list-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .category-list-grid { grid-template-columns: repeat(3, 1fr); } }

.category-list-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.category-list-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.category-list-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--bg);
}
.category-list-card-body { padding: 22px; }
.category-list-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.category-list-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 16px 0;
  line-height: 1.55;
}
.category-list-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category-list-card-count { font-size: 0.82rem; color: var(--muted); }
.category-list-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   ÜRÜNLER SAYFASI — YENİ TASARIM
   ============================================================ */

/* --- Hero --- */
.products-hero {
  background: linear-gradient(135deg, #07111f 0%, #0d2550 60%, #003580 100%);
  padding: 64px 0 52px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.products-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.products-hero .breadcrumb {
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.products-hero .breadcrumb a { color: rgba(255,255,255,0.8); }
.products-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.products-hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.1;
}
.products-hero-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.65;
  margin: 0;
}
.products-hero-stats {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.prod-stat {
  padding: 18px 26px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.prod-stat:last-child { border-right: none; }
.prod-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.prod-stat span {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .products-hero-content { flex-direction: column; align-items: flex-start; }
  .products-hero-stats { width: 100%; }
  .prod-stat { flex: 1; padding: 14px 10px; }
  .prod-stat strong { font-size: 1.25rem; }
}

/* --- Category Showcase --- */
.cat-showcase-section { padding: 60px 0 0; }
.cat-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-showcase-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .cat-showcase-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .cat-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .cat-showcase-grid,
  .cat-showcase-grid--4 { grid-template-columns: 1fr; }
}

.cat-showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  display: block;
  aspect-ratio: 3 / 4;
  box-shadow: 0 6px 32px rgba(0,0,0,0.18);
}
.cat-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.45s ease;
  filter: brightness(0.5) saturate(0.85);
}
.cat-showcase-card:hover img {
  transform: scale(1.07);
  filter: brightness(0.38) saturate(0.75);
}
.cat-showcase-body {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(7,15,40,0.95) 0%, rgba(7,15,40,0.3) 55%, transparent 100%);
  color: #fff;
}
.cat-showcase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
}
.cat-showcase-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(0,102,204,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.cat-showcase-badge--health { background: rgba(0,160,100,0.75); }
.cat-showcase-badge--freeze { background: rgba(13,110,171,0.75); }
.cat-showcase-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cs-tag {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 99px;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.cat-showcase-body h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
  margin: 16px 0 8px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.cat-showcase-body p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-showcase-meta {
  display: flex;
  gap: 14px;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.cat-showcase-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cat-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  align-self: flex-start;
  transition: background 0.2s, gap 0.2s;
}
.cat-showcase-card:hover .cat-showcase-link {
  background: var(--brand-dark);
  gap: 12px;
}

/* --- Featured Products Section --- */
.featured-prods-section { padding: 56px 0 64px; }
.fp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-kicker {
  display: inline-block;
  background: rgba(0,102,204,0.08);
  color: var(--brand);
  border-radius: 99px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.fp-header .section-kicker { margin-bottom: 8px; }
.fp-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}
.fp-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}
.fp-more-link:hover { gap: 10px; }

/* Product grid */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
/* Az ürün olan kategoriler için dar grid'ler */
.prod-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.prod-grid--2col.prod-grid--compact {
  max-width: 560px;
  margin-inline: auto;
}
/* Compact 2-col hiçbir zaman 1 sütuna düşmesin */
@media (max-width: 600px) {
  .prod-grid--2col.prod-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) { .prod-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .prod-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  {
  .prod-grid--2col,
  .prod-grid--3col { grid-template-columns: 1fr; }
}

.prod-card {
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.prod-card:hover {
  box-shadow: 0 8px 28px rgba(0,102,204,0.14);
  transform: translateY(-4px);
  border-color: rgba(0,102,204,0.3);
}
.prod-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg);
  overflow: hidden;
}
/* Geniş grid'lerde (2-3 sütun) görseli daha uzun tut */
.prod-grid--2col .prod-card-img,
.prod-grid--3col .prod-card-img {
  aspect-ratio: 4 / 3;
}
.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.35s ease;
}
.prod-card:hover .prod-card-img img { transform: scale(1.07); }
.prod-type-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--brand);
  color: #fff;
  border-radius: 5px;
  padding: 3px 7px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prod-type-badge--dual { background: #6c36d6; }
.prod-type-badge--ac   { background: #c75000; }
.prod-type-badge--outdoor { background: #1a8a4a; }
.prod-type-badge--health  { background: #0a7abf; }
.prod-type-badge--freeze  { background: #0d6eab; }

.prod-card-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.prod-card-model {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.prod-card-specs { display: flex; flex-direction: column; gap: 2px; }
.prod-card-specs span {
  font-size: 0.73rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.prod-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  margin-top: auto;
  padding-top: 8px;
}

/* Geniş/öne çıkan ürün kartları (kamp & aşı serisi) */
.prod-card--wide .prod-card-img {
  aspect-ratio: 16 / 9;
}
.prod-card--wide .prod-card-img img {
  object-fit: cover;
}
.prod-card--feature {
  border: 2px solid rgba(0,102,204,0.2);
  background: linear-gradient(135deg, rgba(0,102,204,0.04) 0%, rgba(0,196,224,0.04) 100%);
}
.prod-card-feature-inner {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.prod-card-feature-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.prod-card-feature-text p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 14px;
}
.prod-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-feature-list li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}
.prod-feature-list li .bi-check-circle-fill {
  color: var(--brand);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.prod-card--feature .cat-showcase-link {
  font-size: 0.82rem;
  padding: 8px 14px;
}

/* ===== CTA BAND (urunler sayfası) ===== */
.cta-band {
  background: linear-gradient(135deg, #0a1628 0%, #0d2247 50%, #0a1628 100%);
  background-size: 200% 200%;
  animation: cta-gradient 8s ease infinite;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 10% 50%, rgba(0,102,204,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 45% 60% at 90% 30%, rgba(0,196,224,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
@keyframes cta-gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-left { color: #fff; }
.cta-kicker {
  background: rgba(0,196,224,0.15);
  color: #00c4e0;
  border: 1px solid rgba(0,196,224,0.3);
}
.cta-left h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 16px 0 14px;
  letter-spacing: -0.02em;
}
.cta-left p {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin: 0 0 32px;
  max-width: 480px;
  line-height: 1.65;
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a1628;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.cta-band .btn-white:hover {
  background: #e8f4ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
}
.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #fff;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  backdrop-filter: blur(6px);
}
.cta-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.28);
  transform: translateX(-4px);
}
.cta-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,102,204,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.cta-card-icon--wa { background: rgba(37,211,102,0.35); }
.cta-card-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.cta-card strong { font-size: 0.95rem; font-weight: 600; }

@media (max-width: 860px) {
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-right { min-width: unset; }
}
@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; }
  .cta-band .btn-white,
  .btn-white-outline { justify-content: center; }
}

/* ============================================================
   ÜRÜN DETAY SAYFASI
   ============================================================ */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.product-detail-gallery {
  position: sticky;
  top: 96px;
}
.product-main-img {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.product-main-img img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-main-img:hover img {
  transform: scale(1.04);
}
.product-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-thumbs .thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-thumbs .thumb:hover,
.product-thumbs .thumb.active {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,102,204,0.15);
}

/* Info panel */
.product-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.badge-chip {
  display: inline-block;
  background: rgba(0,102,204,0.08);
  color: var(--brand);
  border: 1px solid rgba(0,102,204,0.18);
  border-radius: 99px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.product-detail-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.product-detail-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 28px;
}
.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

/* Specs table */
.product-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.product-specs-table tr {
  border-bottom: 1px solid var(--border);
}
.product-specs-table th {
  text-align: left;
  padding: 11px 14px;
  color: var(--muted);
  font-weight: 500;
  width: 42%;
  background: var(--bg);
}
.product-specs-table td {
  padding: 11px 14px;
  color: var(--heading);
  font-weight: 600;
}
.product-specs-table tr:first-child th,
.product-specs-table tr:first-child td {
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-specs-table tr:last-child {
  border-bottom: none;
}

/* Section title */
.section-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

/* CTA band ürün detay (basit versiyon) */
.cta-band h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.cta-band > .wrap > p {
  color: rgba(255,255,255,0.75);
  margin: 0 0 28px;
}

@media (max-width: 860px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-detail-gallery {
    position: static;
  }
}
@media (max-width: 480px) {
  .product-main-img { min-height: 240px; padding: 20px; }
  .product-thumbs .thumb { width: 64px; height: 64px; }
}
