/* DFA Deals — Perfume Dupe Product Page */
:root {
  --pd-red: #ed0016;
  --pd-red-dark: #c80012;
  --pd-red-soft: #fff3f5;
  --pd-red-border: #ffcdd2;
  --pd-black: #111111;
  --pd-border: #e8e8e8;
  --pd-muted: #666;
  --pd-radius: 10px;
}

body.dfa-perfume-dupe-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--pd-black);
  padding-bottom: 150px;
}

body.dfa-perfume-dupe-page #column-left,
body.dfa-perfume-dupe-page #column-right {
  display: none !important;
}

body.dfa-perfume-dupe-page #content {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}

/* Breadcrumb */
.pd-breadcrumb {
  font-size: 12px;
  margin: 14px 0 18px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-breadcrumb a {
  color: #666;
  text-decoration: none;
}

.pd-breadcrumb a:hover {
  color: var(--pd-red);
}

/* Main product layout */
.pd-product-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}

/* Purchase disclaimer banner */
.pd-purchase-notice {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) minmax(210px, 300px);
  gap: 12px 16px;
  align-items: center;
  margin: 0 0 18px;
  padding: 10px 14px;
  border: 1.5px solid var(--pd-red);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff9fa 0%, #fff 100%);
  box-shadow: 0 2px 10px rgba(237, 0, 22, 0.05);
}

.pd-purchase-notice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-purchase-notice-title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--pd-red);
  text-transform: uppercase;
}

.pd-purchase-notice-lead,
.pd-purchase-notice-sub {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #222;
}

.pd-purchase-notice-lead strong,
.pd-purchase-notice-sub strong {
  color: var(--pd-red);
  font-weight: 800;
}

.pd-purchase-notice-divider {
  height: 1px;
  background: rgba(237, 0, 22, 0.35);
  margin: 6px 0;
}

.pd-purchase-notice-visual {
  border-left: 1px solid rgba(237, 0, 22, 0.35);
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.pd-purchase-notice-visual-title {
  margin: 0;
  font-size: 9.5px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #222;
}

.pd-purchase-notice-brand {
  color: var(--pd-red);
}

.pd-purchase-notice-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-purchase-notice-arrow {
  position: absolute;
  top: -6px;
  left: 42%;
  transform: translateX(-10%);
  pointer-events: none;
}

.pd-purchase-notice-image {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 991px) {
  .pd-purchase-notice {
    grid-template-columns: 36px 1fr;
    gap: 10px 12px;
    padding: 10px 12px;
  }

  .pd-purchase-notice-visual {
    grid-column: 1 / -1;
    border-left: none;
    border-top: 1px solid rgba(237, 0, 22, 0.35);
    padding-left: 0;
    padding-top: 10px;
    text-align: center;
  }

  .pd-purchase-notice-image {
    max-height: 64px;
  }
}

@media (max-width: 575px) {
  .pd-purchase-notice {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pd-purchase-notice-icon {
    justify-content: center;
  }

  .pd-purchase-notice-title {
    font-size: 12px;
  }

  .pd-purchase-notice-lead,
  .pd-purchase-notice-sub,
  .pd-purchase-notice-visual-title {
    font-size: 11.5px;
  }

  .pd-purchase-notice-image {
    max-height: 72px;
  }
}

/* Gallery */
.pd-gallery-wrap {
  max-width: 520px;
  margin: 0 auto 20px;
}

.pd-gallery-card {
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  background: #fff;
  padding: 20px 44px 14px;
  aspect-ratio: 1;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pd-gallery-main-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 1;
  min-height: 0;
}

.pd-main-img {
  max-width: min(82%, 420px);
  max-height: min(82%, 420px);
  object-fit: contain;
  width: auto;
  height: auto;
}

.pd-gallery-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--pd-border);
  background: #fff;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  pointer-events: none;
}

.pd-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--pd-border);
  background: #fff;
  color: var(--pd-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pd-gallery-nav.prev { left: 10px; }
.pd-gallery-nav.next { right: 10px; }

.pd-thumbs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.pd-thumbs-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
  padding: 2px 0;
}

.pd-thumbs-track::-webkit-scrollbar { display: none; }

.pd-thumb-btn {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--pd-border);
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
}

.pd-thumb-btn.is-active {
  border-color: var(--pd-red);
  box-shadow: 0 0 0 1px var(--pd-red);
}

.pd-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pd-thumb-arrow {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--pd-border);
  border-radius: 50%;
  background: #fff;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Product info */
.pd-inspired-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--pd-red);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.pd-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 10px;
  color: var(--pd-black);
  letter-spacing: -0.01em;
}

.pd-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

.pd-stars { color: var(--pd-red); letter-spacing: 1px; }

.pd-rating-link {
  color: var(--pd-red);
  text-decoration: none;
  font-weight: 600;
}

.pd-rating-sep { color: #ccc; }

/* Disclaimer */
.pd-disclaimer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 12px;
  margin-bottom: 16px;
  background: var(--pd-red-soft);
  border: 1px solid var(--pd-red-border);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #333;
}

.pd-disclaimer i {
  color: var(--pd-red);
  margin-top: 2px;
  flex-shrink: 0;
}

/* Pricing card — mockup white box */
.pd-pricing-card {
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius);
  background: #fff;
  padding: 16px 16px 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pd-pricing-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.pd-price-col {}

.pd-compare-label {
  font-size: 13px;
  color: var(--pd-muted);
  margin-bottom: 2px;
  font-weight: 500;
}

.pd-compare-amount {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  margin-bottom: 6px;
  font-weight: 600;
}

.pd-our-amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--pd-red);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.pd-savings-box {
  flex-shrink: 0;
  background: var(--pd-red);
  color: #fff;
  border-radius: 8px;
  padding: 11px 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  min-width: 118px;
  max-width: 132px;
  box-shadow: 0 2px 10px rgba(237, 0, 22, 0.28);
  white-space: pre-line;
}

/* Feature icons */
.pd-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.pd-feature {
  text-align: center;
  padding: 11px 6px;
  border: 1px solid var(--pd-border);
  border-radius: 8px;
  background: #fafafa;
  font-size: 10px;
  font-weight: 700;
  color: #444;
  line-height: 1.25;
}

.pd-feature i {
  display: block;
  font-size: 18px;
  color: var(--pd-red);
  margin-bottom: 6px;
}

/* Size selector */
.pd-size-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pd-size-label span {
  font-weight: 400;
  color: var(--pd-muted);
}

.pd-size-pills {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pd-size-pill {
  min-width: 58px;
  height: 38px;
  padding: 0 14px;
  border: 1.5px solid var(--pd-border);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.pd-size-pill.is-active {
  border-color: var(--pd-red);
  background: var(--pd-red-soft);
  color: var(--pd-red);
  box-shadow: 0 0 0 1px rgba(237, 0, 22, 0.15);
}

/* Qty + buttons */
.pd-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pd-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.pd-qty-stepper button {
  width: 44px;
  height: 44px;
  border: none;
  background: #f7f7f7;
  font-size: 18px;
  cursor: pointer;
}

.pd-qty-stepper input {
  width: 52px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--pd-border);
  border-right: 1px solid var(--pd-border);
  text-align: center;
  font-weight: 700;
}

.pd-btn-cart {
  width: 100%;
  height: 52px;
  background: var(--pd-red) !important;
  border: none !important;
  color: #fff !important;
  font-size: 16px;
  font-weight: 800;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pd-btn-cart:hover { background: var(--pd-red-dark) !important; }

.pd-btn-buy {
  width: 100%;
  height: 52px;
  background: #fff !important;
  border: 2px solid var(--pd-black) !important;
  color: var(--pd-black) !important;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.pd-btn-buy:hover {
  background: #f5f5f5 !important;
}

/* Trust strip 2x2 */
.pd-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.pd-trust-item {
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--pd-border);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.pd-trust-item i {
  display: block;
  font-size: 18px;
  color: var(--pd-red);
  margin-bottom: 6px;
}

.pd-trust-item strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
}

.pd-trust-item span {
  font-size: 11px;
  color: #777;
}

/* Tabs */
.pd-tabs {
  border: 1px solid var(--pd-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pd-tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--pd-border);
  overflow-x: auto;
  scrollbar-width: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-tabs-nav::-webkit-scrollbar { display: none; }

.pd-tabs-nav li { margin: 0; }

.pd-tabs-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  border: none;
  background: transparent;
}

.pd-tabs-nav a.active {
  color: var(--pd-black);
}

.pd-tabs-nav a.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 3px;
  background: var(--pd-red);
  border-radius: 3px 3px 0 0;
  animation: pd-tab-underline 0.25s ease;
}

@keyframes pd-tab-underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.pd-tab-pane {
  display: none;
  padding: 20px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.pd-tab-pane.active { display: block; }

/* Description tab — premium card layout (description tab only) */
#pd-tab-description {
  padding: 24px 16px 28px;
}

.pd-desc-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-desc-section {
  margin: 0;
}

.pd-desc-headline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 4.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--pd-black);
  margin: 0 0 18px;
}

.pd-desc-headline-inspired {
  display: block;
  margin-top: 6px;
  color: var(--pd-red);
  font-style: italic;
}

.pd-desc-paragraph {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #444;
}

.pd-desc-paragraph:last-child {
  margin-bottom: 0;
}

.pd-desc-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pd-desc-highlight-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pd-desc-highlight-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--pd-red-soft);
  color: var(--pd-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-desc-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-desc-icon--lg {
  stroke-width: 1.35;
}

.pd-desc-highlight-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  margin-bottom: 4px;
}

.pd-desc-highlight-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--pd-black);
  line-height: 1.35;
}

.pd-desc-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.pd-desc-card {
  background: #fff;
  border: 1px solid var(--pd-border);
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pd-desc-card--wide {
  width: 100%;
}

.pd-desc-card--love {
  background: linear-gradient(180deg, #fff9fa 0%, #fff 100%);
}

.pd-desc-card-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--pd-black);
}

.pd-desc-accords {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-desc-accord-row {
  display: grid;
  grid-template-columns: minmax(72px, 96px) 1fr 42px;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.pd-desc-accord-name {
  font-weight: 600;
  color: #333;
}

.pd-desc-accord-bar-wrap {
  height: 10px;
  background: #f3f3f3;
  border-radius: 999px;
  overflow: hidden;
}

.pd-desc-accord-bar {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.pd-desc-accord-pct {
  font-weight: 700;
  color: #555;
  text-align: right;
  font-size: 12px;
}

#pd-tab-description .pd-pyramid {
  max-width: 100%;
  margin: 0;
}

#pd-tab-description .pd-pyramid-tier p {
  display: none;
}

.pd-desc-note-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
}

.pd-desc-note-list li::before {
  content: "• ";
  color: var(--pd-red);
}

.pd-desc-best-for {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 10px;
}

.pd-desc-best-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.pd-desc-best-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pd-red-soft);
  border: 1px solid var(--pd-red-border);
  color: var(--pd-red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-desc-love-inner {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
}

.pd-desc-love-bottle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-red);
}

.pd-desc-love-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.pd-desc-love-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #333;
}

.pd-desc-love-list .pd-desc-icon {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--pd-red);
}

@media (min-width: 768px) {
  #pd-tab-description {
    padding: 28px 24px 32px;
  }

  .pd-desc-highlights {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .pd-desc-profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  .pd-desc-best-for {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .pd-desc-love-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
  }

  .pd-desc-love-inner {
    grid-template-columns: 110px 1fr;
    gap: 24px;
  }
}

.pd-show-more {
  color: var(--pd-red);
  font-weight: 700;
  font-size: 14px;
  background: none;
  border: none;
  padding: 8px 0 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Ingredients */
.pd-ingredients-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 16px;
}

.pd-ingredients-note {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: var(--pd-red-soft);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.pd-ingredients-note i {
  color: var(--pd-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Accords */
.pd-accords-title {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 14px;
}

.pd-accord-row {
  display: grid;
  grid-template-columns: 110px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.pd-accord-bar-wrap {
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
}

.pd-accord-bar {
  height: 100%;
  border-radius: 5px;
  transition: width 0.4s ease;
}

.pd-accord-pct {
  font-weight: 700;
  color: #555;
  text-align: right;
}

/* Pyramid — tiers share aligned clip-path slopes for a single triangle silhouette */
.pd-pyramid-title {
  font-size: 15px;
  font-weight: 800;
  margin: 24px 0 14px;
}

.pd-pyramid {
  --pd-pyramid-slope: 38%;
  max-width: 360px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pd-pyramid-tier {
  width: 100%;
  margin: 0;
  padding: 14px 18%;
  text-align: center;
  box-sizing: border-box;
  position: relative;
}

.pd-pyramid-tier + .pd-pyramid-tier {
  margin-top: -1px;
}

.pd-pyramid-tier--top {
  background: #fce4ec;
  clip-path: polygon(
    var(--pd-pyramid-slope) 0,
    calc(100% - var(--pd-pyramid-slope)) 0,
    calc(100% - var(--pd-pyramid-slope) * 0.67) 100%,
    calc(var(--pd-pyramid-slope) * 0.67) 100%
  );
  padding-top: 18px;
}

.pd-pyramid-tier--mid {
  background: #f8bbd0;
  clip-path: polygon(
    calc(var(--pd-pyramid-slope) * 0.67) 0,
    calc(100% - var(--pd-pyramid-slope) * 0.67) 0,
    calc(100% - var(--pd-pyramid-slope) * 0.34) 100%,
    calc(var(--pd-pyramid-slope) * 0.34) 100%
  );
}

.pd-pyramid-tier--base {
  background: #f48fb1;
  clip-path: polygon(
    calc(var(--pd-pyramid-slope) * 0.34) 0,
    calc(100% - var(--pd-pyramid-slope) * 0.34) 0,
    100% 100%,
    0 100%
  );
  padding-bottom: 18px;
}

.pd-pyramid-tier h5 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  color: #333;
}

.pd-pyramid-tier p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

/* Spec list */
.pd-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pd-spec-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--pd-border);
  font-size: 14px;
}

.pd-spec-item:last-child { border-bottom: none; }

.pd-spec-item i {
  color: var(--pd-red);
  font-size: 15px;
  text-align: center;
}

.pd-spec-label {
  color: #555;
  font-weight: 600;
}

.pd-spec-value {
  font-weight: 700;
  text-align: right;
}

.pd-spec-value.is-highlight {
  color: var(--pd-red);
}

/* Q&A */
.pd-qa-item {
  border-bottom: 1px solid var(--pd-border);
  padding: 14px 0;
}

.pd-qa-q {
  font-weight: 700;
  margin-bottom: 6px;
}

.pd-qa-a {
  color: #555;
  font-size: 13px;
}

.pd-qa-form {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--pd-border);
}

.pd-qa-form textarea {
  width: 100%;
  border: 1px solid var(--pd-border);
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  min-height: 80px;
}

.pd-qa-form button {
  background: var(--pd-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

/* Sticky cart */
.pd-sticky-cart {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: #fff;
  border-top: 1px solid var(--pd-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
}

.pd-sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.pd-sticky-btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 18px;
  background: var(--pd-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .pd-sticky-cart { display: block; }
  body.dfa-perfume-dupe-page .dfa-footer { padding-bottom: 72px; }
}

@media (min-width: 769px) {
  .pd-product-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: start;
  }

  .pd-title { font-size: 28px; }
  .pd-our-amount { font-size: 36px; }
  .pd-trust-grid { grid-template-columns: repeat(4, 1fr); }
  .pd-tabs-nav a { font-size: 13px; padding: 16px 18px; }
}
