/* Ürün detay sayfası – premium arka plan + carousel + özellikler */
.product-detail-page {
  padding-top: 8rem;
  padding-bottom: 6rem;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.product-detail-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.product-detail-bg .pdb-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #f9fafb, #fff, rgba(253, 224, 71, 0.06));
}
.product-detail-bg .pdb-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 2px 2px, rgba(3, 45, 100, 0.15) 1px, transparent 0),
    radial-gradient(circle at 2px 2px, rgba(213, 104, 3, 0.1) 1px, transparent 0);
  background-size: 40px 40px, 60px 60px;
  background-position: 0 0, 20px 20px;
}
.product-detail-bg .pdb-orb1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(to bottom right, rgba(253, 224, 71, 0.15), transparent);
  border-radius: 50%;
  filter: blur(60px);
}
.product-detail-bg .pdb-orb2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 700px;
  height: 700px;
  background: linear-gradient(to top right, rgba(3, 45, 100, 0.1), transparent);
  border-radius: 50%;
  filter: blur(60px);
}
.product-detail-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
}
.product-detail-breadcrumb a {
  color: #032d64;
  text-decoration: none;
}
.product-detail-breadcrumb a:hover {
  color: #d36806;
}
.product-detail-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
/* Carousel */
.product-carousel-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(3, 45, 100, 0.12);
  background: #fff;
}
.product-carousel-main {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #f8f9fa;
}
.product-carousel-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-carousel-main img:not(.active) {
  display: none;
}
.product-carousel-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  border-top: 1px solid #eee;
  background: #fff;
}
.product-carousel-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}
.product-carousel-thumbs img:hover,
.product-carousel-thumbs img.active-thumb {
  border-color: #d36806;
}
.product-detail-info h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.product-detail-info .pdi-divider {
  height: 6px;
  width: 6rem;
  background: linear-gradient(to right, #d36806, #e07a0a);
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.product-detail-info .pdi-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 1rem;
}
.product-detail-info .pdi-details-box {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #f3f4f6;
  margin: 1.5rem 0;
}
.product-detail-info .pdi-details-box .row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.product-detail-info .pdi-details-box .row-item:last-child {
  border-bottom: none;
}
.product-detail-info .pdi-details-box .label {
  color: #6b7280;
  font-weight: 500;
}
.product-detail-info .pdi-details-box .value {
  color: #111827;
  font-weight: 700;
  font-size: 1.125rem;
}
.product-detail-cta {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 0.75rem;
}
.product-detail-cta.primary {
  background: linear-gradient(to right, #d36806, #e07a0a);
  color: #fff !important;
  border: none;
  box-shadow: 0 10px 30px rgba(211, 104, 6, 0.3);
}
.product-detail-cta.primary:hover {
  color: #fff !important;
  transform: scale(1.02);
  box-shadow: 0 14px 40px rgba(211, 104, 6, 0.4);
}
.product-detail-cta.secondary {
  background: #fff;
  color: #d36806 !important;
  border: 2px solid #d36806;
}
.product-detail-cta.secondary:hover {
  background: rgba(211, 104, 6, 0.08);
  color: #d36806 !important;
  transform: scale(1.02);
}
/* Özellikler */
#ozellikler {
  scroll-margin-top: 6rem;
}
.product-features-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #032d64;
  margin-bottom: 1.5rem;
  text-align: center;
}
.product-features-list {
  display: grid;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.product-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid #f3f4f6;
  font-size: 1rem;
  color: #374151;
}
.product-features-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #d36806, #e07a0a);
  border-radius: 50%;
  flex-shrink: 0;
}
