/* ═══════════════════════════════════════════════════════════════
   ÜRÜN DETAY SAYFASI
   ═══════════════════════════════════════════════════════════════ */

.product-detail-page { background: var(--cream); padding: 100px 0 80px; min-height: 60vh; }

/* BREADCRUMB */
.pd-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  color: var(--text-dark-muted);
}
.pd-breadcrumb a { color: var(--text-dark-muted); text-decoration: none; transition: color 0.2s; }
.pd-breadcrumb a:hover { color: var(--copper); }
.pd-sep { opacity: 0.5; }
.pd-current { color: var(--bg-primary); font-weight: 600; }

/* GRID */
.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* GALERİ */
.pd-gallery { position: sticky; top: 90px; align-self: start; }

.pd-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-warm-alt);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.pd-main-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.pd-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding-bottom: 4px;
}
.pd-thumb {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border: 2px solid transparent;
  background: white;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s;
}
.pd-thumb:hover { border-color: var(--copper-light); }
.pd-thumb.active { border-color: var(--copper); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pd-no-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-warm-alt), var(--cream-dark));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--copper);
  opacity: 0.5;
}
.pd-no-image svg { width: 120px; height: 120px; margin-bottom: 16px; }
.pd-no-image p { font-style: italic; }

/* INFO */
.pd-info { padding-top: 8px; }

.pd-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 6px 14px;
  border: 1px solid var(--border-warm);
  margin-bottom: 18px;
}

.pd-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--bg-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.pd-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--copper);
  margin-bottom: 16px;
  line-height: 1.5;
}

.pd-short-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark-muted);
  margin-bottom: 28px;
}

/* FİYAT KUTUSU */
.pd-price-box {
  background: var(--bg-warm-alt);
  border-left: 3px solid var(--copper);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.pd-price-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dark-muted);
}
.pd-price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-primary);
  line-height: 1.1;
  margin: 6px 0 4px;
}
.pd-price-value small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dark-muted);
  margin-left: 6px;
}
.pd-price-note {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  font-style: italic;
}

/* CTA */
.pd-cta-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }

.pd-btn-quote {
  flex: 1;
  min-width: 220px;
  background: linear-gradient(135deg, #25D366 0%, #1ebe57 100%);
  color: white;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 6px 18px rgba(37,211,102,0.25);
}
.pd-btn-quote[data-quote-target="form"] {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  box-shadow: 0 6px 18px rgba(196,122,42,0.3);
}
.pd-btn-quote:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,0.35); }
.pd-btn-quote[data-quote-target="form"]:hover { box-shadow: 0 10px 24px rgba(196,122,42,0.4); }
.pd-btn-quote svg { width: 22px; height: 22px; }

.pd-btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 22px;
  border: 1.5px solid var(--copper);
  color: var(--copper);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.pd-btn-call:hover { background: var(--copper); color: white; }
.pd-btn-call svg { width: 18px; height: 18px; }

/* UYARI / NOTICE BANNER */
.pd-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  border-left: 4px solid;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.pd-notice-icon { flex-shrink: 0; padding-top: 2px; }
.pd-notice-icon svg { width: 22px; height: 22px; }
.pd-notice-text, .pd-notice-marquee { flex: 1; }

.pd-notice-info {
  background: rgba(78, 158, 196, 0.08);
  border-color: #4e9ec4;
  color: #1b5a78;
}
.pd-notice-info .pd-notice-icon { color: #4e9ec4; }

.pd-notice-warning {
  background: rgba(217, 154, 78, 0.12);
  border-color: var(--copper-light);
  color: #8b5a18;
}
.pd-notice-warning .pd-notice-icon { color: var(--copper); }

.pd-notice-danger {
  background: rgba(184, 53, 53, 0.08);
  border-color: #b83535;
  color: #7a1f1f;
}
.pd-notice-danger .pd-notice-icon { color: #b83535; }

/* Marquee (kayan) */
.pd-notice-marquee {
  overflow: hidden;
  white-space: nowrap;
}
.pd-notice-marquee-inner {
  display: inline-block;
  animation: pdMarquee 22s linear infinite;
}
@keyframes pdMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* TAGS */
.pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.pd-tag {
  font-size: 0.72rem;
  padding: 5px 12px;
  background: rgba(196,122,42,0.08);
  border: 1px solid var(--border-warm);
  color: var(--copper);
  border-radius: 2px;
  letter-spacing: 0.03em;
}

/* SECTIONS */
.pd-section { padding: 60px 0; border-top: 1px solid var(--border-subtle); }
.pd-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--bg-primary);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* SPECS */
.pd-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.pd-spec-row {
  background: white;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.pd-spec-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  letter-spacing: 0.02em;
}
.pd-spec-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--bg-primary);
}
.pd-spec-value small {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark-muted);
  font-size: 0.78rem;
  margin-left: 4px;
}

/* LONG DESCRIPTION */
.pd-long-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
  max-width: 760px;
}
.pd-long-desc h2, .pd-long-desc h3 {
  font-family: var(--font-display);
  color: var(--bg-primary);
  margin: 28px 0 14px;
}
.pd-long-desc h2 { font-size: 1.4rem; }
.pd-long-desc h3 { font-size: 1.15rem; }
.pd-long-desc p { margin-bottom: 16px; }
.pd-long-desc ul, .pd-long-desc ol { margin: 14px 0 18px 24px; }
.pd-long-desc li { margin-bottom: 6px; }
.pd-long-desc strong { color: var(--bg-primary); }

/* QUOTE FORM SECTION */
.pd-quote-section {
  background: var(--bg-primary);
  margin: 80px -28px 0;
  padding: 80px 28px;
  border-top: none;
}
.pd-quote-section .pd-section-title { color: var(--cream); }
.pd-quote-section .kicker { color: var(--copper); }

.pd-quote-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  align-items: start;
}

.pd-quote-desc { color: var(--text-muted); line-height: 1.7; }

.pd-form { background: var(--bg-secondary); padding: 32px; }
.pd-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-form .form-group { margin-bottom: 14px; }
.pd-form .form-label {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 8px;
}
.pd-form .form-input {
  width: 100%;
  background: var(--bg-elevated);
  border: 1px solid rgba(196,122,42,0.18);
  color: var(--cream);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.3s;
}
.pd-form .form-input:focus { border-color: var(--copper); }
.pd-form .form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s;
}
.pd-form .form-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(196,122,42,0.4); }

/* MOBILE */
@media (max-width: 968px) {
  .pd-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .pd-gallery { position: static; }
  .pd-main-image { aspect-ratio: 4 / 3; }
  .pd-quote-wrap { grid-template-columns: 1fr; gap: 30px; }
  .pd-form .form-row { grid-template-columns: 1fr; }
  .product-detail-page { padding-top: 80px; }
  .pd-section { padding: 40px 0; }
  .pd-quote-section { margin-top: 50px; padding: 50px 24px; }
  .pd-specs-grid { grid-template-columns: 1fr; }
}
