/* ============================================================
   VENZA — ÜRÜN DETAY SAYFASI EK STİLLERİ
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--gold);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: rgba(201,168,76,.4); }

/* Product Detail Hero */
.product-hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a1910 100%);
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Image Gallery */
.product-gallery {
  position: relative;
}

.gallery-main {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  position: relative;
}

.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery-main img:hover { transform: scale(1.03); }

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.gallery-thumbnails::-webkit-scrollbar { height: 6px; }
.gallery-thumbnails::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 4px; }

.thumb-item {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  transition: all .3s ease;
  flex-shrink: 0;
}
.thumb-item:hover, .thumb-item.active {
  opacity: 1;
  border-color: var(--gold);
}
.thumb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--emerald) 100%);
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--primary-dark);
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Product Info */
.product-detail-cat {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-detail-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.product-detail-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Specs Table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: .88rem;
}
.spec-table tr {
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 12px 8px;
  color: var(--text-secondary);
  vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--gold-light);
  width: 40%;
  padding-right: 16px;
}

/* CTA Buttons */
.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.detail-actions .btn {
  flex: 1;
  min-width: 180px;
  justify-content: center;
  padding: 15px 20px;
}

/* Features Section */
.detail-features {
  background: var(--primary);
  padding: 80px 0;
}

.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.detail-feature-item {
  background: rgba(13,31,23,.6);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.detail-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.detail-feature-item .icon { font-size: 2rem; margin-bottom: 12px; }
.detail-feature-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.detail-feature-item p {
  font-size: .83rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Related Products */
.related-products {
  background: var(--primary-dark);
  padding: 80px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Mini Card (Related) */
.mini-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,.4);
  box-shadow: var(--shadow-gold);
}
.mini-card-img {
  height: 180px;
  overflow: hidden;
}
.mini-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.mini-card:hover .mini-card-img img { transform: scale(1.07); }
.mini-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--emerald) 100%);
}
.mini-card-body {
  padding: 18px;
}
.mini-card-cat {
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mini-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

/* Sticky CTA Bar (mobile) */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 500;
  background: var(--primary-dark);
  border-top: 1px solid var(--card-border);
  padding: 12px 16px;
  gap: 10px;
}

@media(max-width:768px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-main { height: 280px; }
  .detail-features-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2,1fr); }
  .detail-actions { flex-direction: column; }
  .detail-actions .btn { min-width: unset; }
  .sticky-cta { display: flex; }
  /* Sayfanın altında sticky-cta için boşluk bırak */
  .related-products { padding-bottom: 120px; }
}
@media(max-width:480px) {
  .related-grid { grid-template-columns: 1fr; }
}
