/* ==========================================================================
   Eczane Depo — Ürün Detay sayfası (node 1:5416 "Premium Product Detail Page")
   Sadece bu sayfaya özgü stiller; ortak header/footer/component stilleri
   css/style.css içindedir. Tüm sınıflar "pd-" önekiyle başlar.

   Not: Figma'da bu sayfanın başlıkları Cormorant Garamond, gövde vurguları
   DM Sans ile çizilmiş; repo font seti (Noto Serif Display / Inter / Jost)
   ile eşlendi: Cormorant → var(--font-display), DM Sans → var(--font-body).
   ========================================================================== */

/* ---------- Ortak sayfa iskeleti ---------- */

.pd-section {
  display: flex;
  justify-content: center;
}

.pd-container {
  width: min(100%, 1070px);
  padding-inline: 37px;
}

.pd-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 2.74px;
  text-transform: uppercase;
  color: var(--color-gold-page);
}

.pd-h2 {
  padding-top: 11px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: #000;
}

.pd-h2 em {
  font-style: italic;
  color: rgba(0, 0, 0, 0.6);
}

.pd-h2--sm {
  font-size: 37px;
  line-height: 46px;
}

/* Figma'dan gelen boş yıldız / soluk ikonlar (siyah stroke, düşük opaklıkla) */
.pd-dim {
  opacity: 0.3;
}

/* ==========================================================================
   PRODUCT HERO (node 1:5509)
   ========================================================================== */

.pd-hero {
  background: var(--color-white);
  padding-bottom: 73px;
}

.pd-hero__grid {
  display: flex;
  justify-content: space-between;
  gap: 58px;
  width: min(100%, 1070px);
  padding-inline: 37px;
}

/* ---------- Galeri ---------- */

.pd-gallery {
  width: 516px;
  flex-shrink: 0;
}

.pd-gallery__main {
  position: relative;
  height: 645px;
  background: var(--color-cream-page);
  overflow: hidden;
}

.pd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-gallery__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 11px;
  font-family: var(--font-body);
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 1.64px;
  text-transform: uppercase;
  color: var(--color-gold-page);
  background: #000;
}

.pd-gallery__thumbs {
  display: flex;
  gap: 7px;
  padding-top: 11px;
}

.pd-gallery__thumb {
  flex: 1;
  min-width: 0;
  padding: 2px;
  border: 2px solid transparent;
}

.pd-gallery__thumb[aria-current="true"] {
  border-color: var(--color-gold-page);
}

.pd-gallery__thumb img {
  width: 100%;
  height: 94px;
  object-fit: cover;
}

/* ---------- Bilgi paneli ---------- */

.pd-info {
  width: 422px;
  flex-shrink: 0;
  padding-top: 15px;
  font-family: var(--font-body);
}

.pd-info__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.pd-info__brand {
  display: inline-block;
  padding: 3px 8px;
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 2.28px;
  text-transform: uppercase;
  color: var(--color-gold-page);
  border: 1px solid rgba(169, 138, 71, 0.3);
}

.pd-info__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 7px;
}

.pd-info__rating-text {
  padding-left: 4px;
  font-size: 10px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-info__actions {
  display: flex;
  gap: 7px;
}

.pd-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pd-icon-btn:hover {
  border-color: var(--color-gold-page);
}

.pd-icon-btn img {
  opacity: 0.7;
}

.pd-title {
  padding-top: 18px;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -0.96px;
  color: #000;
}

.pd-title span {
  color: rgba(0, 0, 0, 0.7);
}

.pd-tagline {
  max-width: 292px;
  padding-top: 11px;
  font-size: 13px;
  font-style: italic;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.5);
}

.pd-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
}

.pd-benefit-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.27px;
  color: rgba(0, 0, 0, 0.6);
}

.pd-benefit-list li::before {
  content: "";
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  background: var(--color-gold-page);
  border-radius: var(--radius-pill);
}

.pd-info__divider {
  height: 1px;
  margin-top: 26px;
  background: rgba(0, 0, 0, 0.08);
  border: 0;
}

/* ---------- Fiyat kutusu ---------- */

.pd-price {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--color-cream-page);
  border-radius: 10px;
}

.pd-price__row1 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.pd-price__badge {
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 600;
  line-height: 13px;
  color: var(--color-white);
  background: #359d5c; /* TOKEN-CANDIDATE: --color-discount-badge (#359d5c) */
  border-radius: 3px;
}

.pd-price__old {
  font-size: 13px;
  color: #808080;
  text-decoration: line-through;
}

.pd-price__row2 {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pd-price__now {
  font-size: 26px;
  font-weight: 700;
  color: #1b6a3d; /* TOKEN-CANDIDATE: --color-price-green (#1b6a3d) */
}

.pd-price__vat {
  font-size: 10px;
  color: #808080;
}

.pd-price__cta {
  position: absolute;
  top: 18px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 57px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  background: #000;
  border-radius: 4px;
}

.pd-price__cta:hover {
  background: var(--color-charcoal);
}

/* ---------- WhatsApp kutusu ---------- */

.pd-contact {
  margin-top: 26px;
  padding: 22px;
  background: var(--color-cream-page);
}

.pd-contact__label {
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 1.83px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
}

.pd-contact__title {
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: #000;
}

.pd-contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  height: 48px;
  margin-top: 15px;
  font-size: 12px;
  letter-spacing: 1.43px;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-whatsapp);
}

.pd-contact__btn:hover {
  background: var(--color-whatsapp-btn);
}

.pd-contact__note {
  max-width: 275px;
  margin-inline: auto;
  padding-top: 11px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}

/* ---------- Meta üçlüsü + SKU ---------- */

.pd-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 22px;
}

.pd-meta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 11px;
  text-align: center;
  background: var(--color-cream-page);
}

.pd-meta__item strong {
  font-size: 9px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.23px;
  color: #000;
}

.pd-meta__item span {
  font-size: 9px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-sku {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 22px;
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.23px;
  color: rgba(0, 0, 0, 0.25);
}

.pd-sku i {
  width: 1px;
  height: 11px;
  background: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   BREADCRUMB (node 1:5643)
   ========================================================================== */

.pd-breadcrumb {
  background: var(--color-white);
  padding-block: 15px;
}

.pd-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.25px;
  color: rgba(0, 0, 0, 0.35);
}

.pd-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-breadcrumb img {
  opacity: 0.35;
}

.pd-breadcrumb [aria-current="page"] {
  color: rgba(0, 0, 0, 0.55);
}

.pd-breadcrumb a:hover {
  color: var(--color-charcoal);
}

/* ==========================================================================
   BENEFITS BAR (node 1:5667)
   ========================================================================== */

.pd-benefits {
  background: var(--color-cream-page);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-block: 37px;
}

.pd-benefits ul {
  display: flex;
  width: min(100%, 1070px);
  padding-inline: 37px;
}

.pd-benefits li {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  padding-inline: 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.pd-benefits li:last-child {
  border-right: 0;
}

.pd-benefits p {
  max-width: 112px;
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 15px;
  letter-spacing: 0.73px;
  text-transform: uppercase;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   PRODUCT DESCRIPTION (node 1:5715)
   ========================================================================== */

.pd-desc {
  background: var(--color-white);
  padding-block: 88px;
}

.pd-desc__grid {
  display: flex;
  gap: 72px;
}

.pd-desc__aside {
  width: 370px;
  flex-shrink: 0;
}

.pd-desc__nav {
  margin-top: 29px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-desc__nav a {
  display: flex;
  align-items: center;
  height: 38px;
  padding-left: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.27px;
  color: rgba(0, 0, 0, 0.35);
  border-left: 2px solid transparent;
  margin-left: -1px;
}

.pd-desc__nav a:hover {
  color: rgba(0, 0, 0, 0.7);
}

.pd-desc__nav a[aria-current="true"] {
  color: #000;
  border-left-color: var(--color-gold-page);
}

.pd-desc__body {
  flex: 1;
  min-width: 0;
  padding-top: 29px;
  font-family: var(--font-body);
}

.pd-desc__title {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  line-height: 37px;
  color: #000;
}

.pd-desc__text {
  max-width: 468px;
  padding-top: 18px;
  font-size: 14px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.55);
}

.pd-desc__facts {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 29px;
}

.pd-desc__facts li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.65);
}

.pd-desc__facts li::before {
  content: "";
  width: 1px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(169, 138, 71, 0.3);
}

.pd-ornament {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 37px;
}

.pd-ornament::before,
.pd-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

.pd-ornament i {
  width: 4px;
  height: 4px;
  background: var(--color-gold-page);
  border-radius: var(--radius-pill);
}

/* Description tabs — only the active pane is visible */

.pd-desc__pane {
  display: none;
}

.pd-desc__pane.is-active {
  display: block;
  animation: pd-pane-in 0.3s ease;
}

@keyframes pd-pane-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.pd-desc__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  font-size: 13px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.65);
}

.pd-desc__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pd-desc__benefits li::before {
  content: "";
  width: 1px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(169, 138, 71, 0.35);
}

.pd-desc__steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 18px;
  counter-reset: pdstep;
}

.pd-desc__steps li {
  display: flex;
  gap: 14px;
  counter-increment: pdstep;
  font-size: 12px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.55);
}

.pd-desc__steps li::before {
  content: "0" counter(pdstep);
  flex-shrink: 0;
  padding-top: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--color-gold-page);
}

.pd-desc__steps strong {
  flex-shrink: 0;
  min-width: 92px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

.pd-desc__routine {
  padding-top: 6px;
}

.pd-desc__routine-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pd-desc__routine-step {
  flex-shrink: 0;
  width: 72px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.pd-desc__routine-name {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}

.pd-desc__routine-price {
  flex-shrink: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

.pd-desc__routine-tag {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--color-gold-page);
  padding: 3px 9px;
  border: 1px solid rgba(169, 138, 71, 0.35);
  border-radius: var(--radius-pill);
}

.pd-desc__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
}

.pd-desc__avg {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  color: #000;
}

.pd-desc__count {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
}

.pd-desc__quote {
  margin-top: 20px;
  padding-left: 18px;
  border-left: 1px solid rgba(169, 138, 71, 0.35);
  font-size: 13px;
  line-height: 23px;
  color: rgba(0, 0, 0, 0.65);
}

.pd-desc__reviewer {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-desc__note {
  padding-top: 16px;
  font-size: 11px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-desc__ornament {
  padding-top: 34px;
}

/* ==========================================================================
   HOW TO USE (node 1:5762)
   ========================================================================== */

.pd-howto {
  background: var(--color-cream-page);
  padding-block: 88px;
}

.pd-howto__head {
  text-align: center;
}

.pd-howto__head .pd-h2 {
  padding-top: 11px;
}

.pd-howto__tabs {
  display: flex;
  justify-content: center;
  margin-top: 51px;
}

.pd-howto__tabbar {
  display: flex;
  padding: 1px;
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-howto__tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 29px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.51px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
}

.pd-howto__tab[aria-selected="true"] {
  color: var(--color-white);
  background: #000;
}

.pd-howto__tab img {
  opacity: 0.5;
}

.pd-howto__tab[aria-selected="true"] img {
  opacity: 1;
}

.pd-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.pd-steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

.pd-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-body);
}

.pd-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
  background: var(--color-white);
  border: 2px solid rgba(0, 0, 0, 0.1);
}

.pd-step--active .pd-step__num {
  color: var(--color-white);
  background: var(--color-gold-page);
  border-color: var(--color-gold-page);
}

.pd-step h3 {
  padding-bottom: 7px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
}

.pd-step p {
  max-width: 128px;
  font-size: 10px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.45);
}

.pd-step__chip {
  margin-top: 11px;
  padding: 4px 11px;
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: var(--color-gold-page);
  background: rgba(169, 138, 71, 0.1);
}

.pd-howto__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 44px;
  font-family: var(--font-body);
  font-size: 11px;
  font-style: italic;
  line-height: 16px;
  text-align: center;
  color: rgba(0, 0, 0, 0.35);
}

.pd-howto__note::before,
.pd-howto__note::after {
  content: "";
  width: 73px;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   COMPLETE ROUTINE (node 1:5838)
   ========================================================================== */

.pd-routine {
  background: var(--color-white);
  padding-block: 88px;
}

.pd-routine__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
}

.pd-routine__intro {
  max-width: 320px;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: italic;
  line-height: 19px;
  text-align: right;
  color: rgba(0, 0, 0, 0.4);
}

.pd-routine__row {
  display: flex;
  align-items: stretch;
  margin-top: 44px;
}

.pd-routine-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pd-routine-card--active {
  border-color: var(--color-gold-page);
  box-shadow: 0 10px 15px -3px rgba(169, 138, 71, 0.1), 0 4px 6px -4px rgba(169, 138, 71, 0.1);
}

.pd-routine-card__step {
  padding: 15px 15px 16px;
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 1.64px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pd-routine-card--active .pd-routine-card__step {
  color: var(--color-gold-page);
}

.pd-routine-card__current {
  display: block;
  padding-top: 4px;
  font-size: 7px;
  line-height: 11px;
  letter-spacing: 1.1px;
  color: rgba(169, 138, 71, 0.6);
}

.pd-routine-card__media {
  height: 224px;
  background: var(--color-cream-page);
  overflow: hidden;
}

.pd-routine-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-routine-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px;
}

.pd-routine-card__brand {
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: var(--color-gold-page);
}

.pd-routine-card__title {
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 19px;
  color: #000;
}

.pd-routine-card__price {
  padding-top: 11px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 22px;
  color: #000;
}

.pd-routine-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  margin-top: 7px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: var(--color-white);
  background: #000;
}

.pd-routine-card__cta:hover {
  background: var(--color-charcoal);
}

.pd-routine-card__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 27px;
  margin-top: auto;
  font-size: 8px;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: var(--color-gold-page);
  background: rgba(169, 138, 71, 0.1);
}

.pd-routine-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 29px;
  margin-top: auto;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.82px;
  text-transform: uppercase;
  color: var(--color-whatsapp);
  border: 1px solid var(--color-whatsapp);
}

.pd-routine-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  flex-shrink: 0;
}

.pd-routine-flow i {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pd-routine-flow i::before {
  content: "";
  width: 1px;
  height: 22px;
  background: rgba(0, 0, 0, 0.1);
}

.pd-routine-flow i::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid rgba(169, 138, 71, 0.4);
  border-bottom: 1px solid rgba(169, 138, 71, 0.4);
  transform: rotate(45deg);
  margin-top: -6px;
}

.pd-routine__footer {
  display: flex;
  justify-content: center;
  margin-top: 29px;
}

.pd-routine__all {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 45px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.01px;
  text-transform: uppercase;
  color: #000;
  border: 1px solid #000;
}

.pd-routine__all:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   EXPERT RECOMMENDATION (node 1:5961)
   ========================================================================== */

.pd-expert {
  background: #000;
  padding-block: 88px;
}

.pd-expert__grid {
  display: flex;
  gap: 58px;
}

.pd-expert__figure {
  position: relative;
  width: 391px;
  flex-shrink: 0;
}

.pd-expert__figure > img {
  width: 100%;
  height: 521px;
  object-fit: cover;
  opacity: 0.8;
  border: 1px solid rgba(169, 138, 71, 0.2);
}

.pd-expert__figure::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 58px;
  height: 58px;
  border-top: 1px solid rgba(169, 138, 71, 0.4);
  border-left: 1px solid rgba(169, 138, 71, 0.4);
}

.pd-expert__card {
  position: absolute;
  right: -42px;
  bottom: -62px;
  width: 161px;
  padding: 15px;
  font-family: var(--font-body);
  background: var(--color-gold-page);
}

.pd-expert__card p:first-child {
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.pd-expert__name {
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 22px;
  color: var(--color-white);
}

.pd-expert__role {
  padding-top: 2px;
  font-size: 9px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.pd-expert__content {
  flex: 1;
  min-width: 0;
  padding-top: 58px;
  font-family: var(--font-body);
}

.pd-expert__mark {
  padding-top: 15px;
  font-family: var(--font-display);
  font-size: 55px;
  line-height: 55px;
  color: rgba(169, 138, 71, 0.2);
}

.pd-expert__quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 38px;
  color: rgba(255, 255, 255, 0.85);
}

.pd-expert__points {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-top: 29px;
}

.pd-expert__points li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.27px;
  color: rgba(255, 255, 255, 0.45);
}

.pd-expert__points li::before {
  content: "";
  width: 15px;
  height: 1px;
  flex-shrink: 0;
  background: var(--color-gold-page);
}

.pd-expert__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 37px;
}

.pd-expert__more {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 30px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.01px;
  text-transform: uppercase;
  color: var(--color-gold-page);
  border: 1px solid var(--color-gold-page);
}

.pd-expert__more:hover {
  background: rgba(169, 138, 71, 0.12);
}

.pd-expert__talk {
  padding-bottom: 3px;
  font-size: 10px;
  letter-spacing: 1.21px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pd-expert__talk:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   CUSTOMER REVIEWS (node 1:6006)
   ========================================================================== */

.pd-reviews {
  background: var(--color-cream-page);
  padding-block: 88px;
}

.pd-reviews__grid {
  display: flex;
  gap: 44px;
  margin-top: 51px;
  font-family: var(--font-body);
}

.pd-reviews__aside {
  width: 274px;
  flex-shrink: 0;
}

.pd-reviews__score {
  padding: 29px;
  text-align: center;
  background: var(--color-white);
}

.pd-reviews__avg {
  font-family: var(--font-display);
  font-size: 66px;
  line-height: 66px;
  color: #000;
}

.pd-reviews__score .stars {
  justify-content: center;
  gap: 4px;
  padding-top: 7px;
}

.pd-reviews__count {
  padding-top: 11px;
  font-size: 10px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.35);
}

.pd-reviews__bars {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 22px;
}

.pd-reviews__bar {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-reviews__bar > span:first-child {
  width: 11px;
}

.pd-bar-track {
  flex: 1;
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.pd-bar-track i {
  display: block;
  height: 100%;
  background: var(--color-gold-page);
}

.pd-reviews__bar > span:last-child {
  width: 22px;
  font-size: 9px;
  color: rgba(0, 0, 0, 0.3);
}

.pd-reviews__filters {
  display: flex;
  gap: 7px;
  padding-top: 22px;
}

.pd-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1;
  padding-block: 10px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.23px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pd-filter-btn[aria-pressed="true"] {
  color: var(--color-white);
  background: #000;
  border-color: #000;
}

.pd-filter-btn img {
  opacity: 0.4;
}

.pd-reviews__list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pd-review {
  padding: 22px;
  background: var(--color-white);
}

.pd-review__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.pd-review__head .stars {
  gap: 7px;
}

.pd-review__title {
  padding-top: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
}

.pd-review__meta {
  flex-shrink: 0;
  text-align: right;
}

.pd-review__date {
  font-size: 9px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.3);
}

.pd-review__verified {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding-top: 4px;
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 0.21px;
  color: #2e7d32; /* TOKEN-CANDIDATE: --color-verified (#2e7d32) */
}

.pd-review__body {
  display: flex;
  gap: 18px;
  padding-top: 11px;
}

.pd-review__photo {
  width: 88px;
  height: 88px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--color-cream-page);
}

.pd-review__text {
  flex: 1;
  min-width: 0;
}

.pd-review__text > p {
  font-size: 12px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
}

.pd-review__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: 15px;
}

.pd-review__author {
  font-size: 10px;
  line-height: 15px;
  color: rgba(0, 0, 0, 0.3);
}

.pd-review__helpful {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.25);
}

.pd-review__helpful img {
  opacity: 0.3;
}

.pd-reviews__all {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.01px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pd-reviews__all:hover {
  color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   RELATED PRODUCTS (node 1:6212)
   ========================================================================== */

.pd-related {
  background: var(--color-white);
  padding-block: 88px;
}

.pd-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
}

.pd-related__nav {
  display: flex;
  gap: 7px;
}

.pd-related__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.pd-related__arrow:hover {
  border-color: var(--color-gold-page);
}

.pd-related .carousel__track {
  gap: 15px;
  margin-top: 37px;
  padding-bottom: 7px;
}

.pd-rel-card {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 238px;
  scroll-snap-align: start;
  font-family: var(--font-body);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pd-rel-card__media {
  position: relative;
  height: 295px;
  background: var(--color-cream-page);
  overflow: hidden;
}

.pd-rel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-rel-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 7px;
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 0.99px;
  text-transform: uppercase;
  color: var(--color-white);
  background: #000;
}

.pd-rel-card__badge--gold {
  background: var(--color-gold-page);
}

.pd-rel-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 15px;
}

.pd-rel-card__brand {
  font-size: 8px;
  line-height: 12px;
  letter-spacing: 1.23px;
  text-transform: uppercase;
  color: var(--color-gold-page);
}

.pd-rel-card__title {
  padding-top: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: #000;
}

.pd-rel-card__rating {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 7px;
  font-size: 9px;
  line-height: 14px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-rel-card__price {
  padding-top: 15px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 27px;
  color: #000;
}

.pd-rel-card__cart {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 32px;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  color: var(--color-white);
  background: #000;
}

.pd-rel-card__cart:hover {
  background: var(--color-charcoal);
}

.pd-rel-card__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 34px;
  margin-top: auto;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.91px;
  text-transform: uppercase;
  color: var(--color-whatsapp);
  border: 1px solid var(--color-whatsapp);
}

.pd-rel-card__cta-wrap {
  margin-top: auto;
}

/* ==========================================================================
   NEWSLETTER (node 1:6360) — Home bültenindekinden farklı varyant
   ========================================================================== */

.pd-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 88px 37px;
  text-align: center;
  background: var(--color-cream-page);
  font-family: var(--font-body);
}

.pd-newsletter__ornament {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pd-newsletter__ornament::before,
.pd-newsletter__ornament::after {
  content: "";
  width: 44px;
  height: 1px;
  background: rgba(169, 138, 71, 0.3);
}

.pd-newsletter__ornament i {
  width: 5px;
  height: 5px;
  background: rgba(169, 138, 71, 0.4);
  transform: rotate(45deg);
}

.pd-newsletter .pd-eyebrow {
  padding-top: 29px;
}

.pd-newsletter__title {
  padding-top: 15px;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: #000;
}

.pd-newsletter__title em {
  font-style: italic;
  color: rgba(0, 0, 0, 0.55);
}

.pd-newsletter__sub {
  max-width: 409px;
  padding-top: 15px;
  font-size: 13px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.4);
}

.pd-newsletter__form {
  display: flex;
  width: min(100%, 409px);
  height: 49px;
  margin-top: 37px;
}

.pd-newsletter__input {
  flex: 1;
  min-width: 0;
  padding-inline: 19px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 0;
  border-radius: 0;
}

.pd-newsletter__input::placeholder {
  color: rgba(0, 0, 0, 0.25);
}

.pd-newsletter__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 126px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.51px;
  text-transform: uppercase;
  color: var(--color-white);
  background: #000;
}

.pd-newsletter__btn:hover {
  background: var(--color-charcoal);
}

.pd-newsletter__note {
  padding-top: 18px;
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.23px;
  color: rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   Responsive güvenlik katmanı
   Figma'da yalnızca 1440px frame var; bu kurallar dar ekranda kırılmayı
   önleyen minimal düzenlemedir (mobil tasarımın birebir karşılığı değildir).
   ========================================================================== */

@media (max-width: 1024px) {
  .pd-hero__grid {
    flex-direction: column;
    gap: var(--space-6);
  }

  .pd-gallery,
  .pd-info {
    width: 100%;
    max-width: 516px;
    margin-inline: auto;
  }

  .pd-benefits ul {
    flex-wrap: wrap;
  }

  .pd-benefits li {
    flex: 1 1 30%;
    padding-block: var(--space-3);
    border-right: 0;
  }

  .pd-desc__grid,
  .pd-expert__grid,
  .pd-reviews__grid {
    flex-direction: column;
    gap: var(--space-6);
  }

  .pd-desc__aside,
  .pd-reviews__aside {
    width: 100%;
  }

  .pd-steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-6);
  }

  .pd-steps::before {
    display: none;
  }

  .pd-routine__row {
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
  }

  .pd-routine-card {
    flex: 0 0 220px;
  }

  .pd-routine-flow {
    display: none;
  }

  .pd-expert__figure {
    margin-inline: auto;
    margin-bottom: 70px;
  }
}

@media (max-width: 768px) {
  .pd-container,
  .pd-hero__grid,
  .pd-benefits ul {
    padding-inline: var(--space-4);
  }

  .pd-gallery__main {
    height: auto;
    aspect-ratio: 516 / 645;
  }

  .pd-title {
    font-size: 30px;
    line-height: 36px;
  }

  .pd-h2,
  .pd-h2--sm,
  .pd-newsletter__title {
    font-size: 30px;
    line-height: 38px;
  }

  .pd-price__cta {
    position: static;
    width: 100%;
    margin-top: var(--space-3);
  }

  .pd-info {
    padding-top: var(--space-4);
  }

  .pd-meta {
    grid-template-columns: 1fr;
  }

  .pd-routine__head,
  .pd-related__head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }

  .pd-routine__intro {
    text-align: left;
  }

  .pd-steps {
    grid-template-columns: 1fr;
  }

  .pd-expert__figure {
    width: 100%;
    max-width: 391px;
  }

  .pd-expert__card {
    right: 0;
    bottom: -62px;
  }

  .pd-review__body {
    flex-direction: column;
  }

  .pd-review__head {
    flex-direction: column;
  }

  .pd-review__meta {
    text-align: left;
  }

  .pd-review__verified {
    justify-content: flex-start;
  }

  .pd-howto__tabbar {
    width: 100%;
    flex-wrap: wrap;
  }

  .pd-howto__tab {
    flex: 1 1 140px;
    justify-content: center;
    padding-inline: var(--space-3);
  }

  .pd-expert__actions {
    flex-wrap: wrap;
  }

  .pd-newsletter__form {
    flex-direction: column;
    height: auto;
  }

  .pd-newsletter__input {
    height: 49px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }

  .pd-newsletter__btn {
    width: 100%;
    height: 49px;
  }
}

/* ==========================================================================
   WooCommerce integration (added by child theme)
   ========================================================================== */

/* CTA buttons rendered as <a> links (WC add-to-cart) — match the <button> look */
.pd-price__cta,
.pd-routine-card__cta,
.pd-rel-card__cart,
.pd-routine__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  text-decoration: none;
}

/* Product images: keep aspect, fill the frame */
.pd-gallery__img,
.pd-gallery__thumb img {
  object-fit: cover;
}

/* Mailchimp for WP newsletter form -> match the design .pd-newsletter__form */
.pd-newsletter .mc4wp-form-fields {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.pd-newsletter .mc4wp-form input[type="email"] {
  height: 55px;
  flex: 1 1 280px;
  max-width: 460px;
  padding: 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 0;
  border-radius: 0;
  font: inherit;
  font-size: 13px;
  color: var(--color-charcoal);
  background: var(--color-white);
}

.pd-newsletter .mc4wp-form input[type="email"]:focus {
  outline: 2px solid var(--color-gold-page);
  outline-offset: -2px;
}

.pd-newsletter .mc4wp-form button,
.pd-newsletter .mc4wp-form input[type="submit"] {
  height: 55px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: var(--color-charcoal);
  color: var(--color-white);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.pd-newsletter .mc4wp-form button:hover,
.pd-newsletter .mc4wp-form input[type="submit"]:hover {
  background: var(--color-gold-page);
}

.pd-newsletter .mc4wp-form .mc4wp-alert {
  margin-top: 12px;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 768px) {
  .pd-newsletter .mc4wp-form input[type="email"] {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
  }
}

/* Reviews: hidden cards until "T�m De�erlendirmeleri G�r" reveals them */
.pd-review--hidden {
  display: none;
}

/* "Faydal� buldum" toggled state */
.pd-review__helpful.is-helpful {
  color: var(--color-gold-page);
  border-color: var(--color-gold-page);
}
