/* =========================================================
   Product Detail — Luxury PDP (Reyhan Accessory)
   Soft gold · cream · editorial spacing
   ========================================================= */

.page-product {
  --pdp-ink: #3d342c;
  --pdp-muted: #8a7b6c;
  --pdp-line: rgba(196, 165, 116, .28);
  --pdp-gold: #c4a574;
  --pdp-gold-d: #a8874f;
  --pdp-cream: #fdfbf7;
  --pdp-blush: #f7efe6;
  --pdp-panel: #fffdf9;
  --pdp-ease: cubic-bezier(.22, 1, .36, 1);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(196, 165, 116, .12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 200, 180, .15), transparent 50%),
    var(--pdp-cream);
}

.page-product .container,
.page-product main > .pdp {
  max-width: 1240px;
}

.pdp {
  padding: 8px var(--page-x, 18px) 120px;
  color: var(--pdp-ink);
}

.pdp-crumb {
  padding: 12px 0 20px;
  font-size: 12.5px;
  color: var(--pdp-muted);
}

.pdp-crumb a {
  color: var(--pdp-muted);
  text-decoration: none;
  transition: color .3s var(--pdp-ease);
}

.pdp-crumb a:hover { color: var(--pdp-gold-d); }

/* —— Hero 2-col —— */
.pdp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* Gallery — framed, contain (not crop), never 0-size */
.pdp-gallery {
  position: sticky;
  top: 88px;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.pdp-gallery__stage {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.pdp-gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(160deg, #fffefb 0%, #f3ebe0 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .8) inset,
    0 24px 60px rgba(90, 70, 50, .1);
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  cursor: default;
  touch-action: pan-y;
}

.pdp-gallery__track {
  position: absolute;
  inset: 0;
  display: flex;
  height: 100%;
  width: 100%;
  direction: ltr; /* RTL page breaks horizontal slider without this */
  transition: transform .55s var(--pdp-ease);
  will-change: transform;
}

.pdp-gallery__slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: transparent;
}

.pdp-gallery__img,
.pdp-gallery__slide img {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  user-select: none;
  -webkit-user-drag: none;
  transform: none !important;
  background: transparent;
}

/* Zoom lens disabled */
.pdp-gallery__zoom-lens {
  display: none !important;
}

.pdp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 253, 249, .92);
  color: var(--pdp-ink);
  box-shadow: 0 8px 24px rgba(90, 70, 50, .12);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .35s var(--pdp-ease), background .35s, box-shadow .35s;
}

.pdp-gallery__nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: #fff;
  box-shadow: 0 12px 28px rgba(90, 70, 50, .16);
}

.pdp-gallery__nav--prev { right: 14px; }
.pdp-gallery__nav--next { left: 14px; }

.pdp-gallery__progress {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 14px;
  height: 2px;
  background: rgba(196, 165, 116, .2);
  border-radius: 99px;
  overflow: hidden;
  z-index: 4;
}

.pdp-gallery__progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--pdp-gold), var(--pdp-gold-d));
}

.pdp-gallery__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .88);
  color: var(--pdp-muted);
  backdrop-filter: blur(8px);
}

.pdp-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px 6px;
  scrollbar-width: none;
}

.pdp-thumbs::-webkit-scrollbar { display: none; }

.pdp-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 1.5px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: var(--pdp-blush);
  cursor: pointer;
  transition: border-color .35s, transform .35s var(--pdp-ease), box-shadow .35s;
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(90, 70, 50, .1);
}

.pdp-thumb.is-active {
  border-color: var(--pdp-gold);
  box-shadow: 0 0 0 3px rgba(196, 165, 116, .2);
}

.pdp-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}

.pdp-dot {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 99px;
  padding: 0;
  background: rgba(196, 165, 116, .35);
  cursor: pointer;
  transition: width .35s var(--pdp-ease), background .35s;
}

.pdp-dot.is-active {
  width: 22px;
  background: var(--pdp-gold-d);
}

.pdp-acc {
  display: none;
}

.pdp-gallery__viewport.is-zoomable {
  cursor: zoom-in;
}
.pdp-gallery__viewport.is-zoomable:hover .pdp-gallery__slide.is-active .pdp-gallery__img {
  transform: scale(1.08) !important;
  transition: transform .45s var(--pdp-ease);
}

/* Buy column */
.pdp-buy {
  padding-top: 8px;
  animation: pdpFadeUp .7s var(--pdp-ease) both;
}

@keyframes pdpFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.pdp-buy__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 14px;
}

.pdp-eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pdp-gold-d);
  text-decoration: none;
  font-weight: 600;
}

.pdp-brand {
  font-size: 12px;
  color: var(--pdp-muted);
  padding-right: 12px;
  border-right: 1px solid var(--pdp-line);
}

.pdp-title {
  font-family: var(--font-display, 'Markazi Text', Georgia, serif);
  font-size: clamp(1.85rem, 2.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin: 0 0 18px;
  color: var(--pdp-ink);
}

.pdp-rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 18px;
  font-size: 13.5px;
}

.pdp-stars span {
  color: rgba(196, 165, 116, .35);
  font-size: 15px;
  letter-spacing: 1px;
}

.pdp-stars span.is-on { color: #c4a574; }

.pdp-rating-score {
  font-weight: 700;
  color: var(--pdp-ink);
}

.pdp-rating-count {
  color: var(--pdp-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pdp-stock {
  margin-right: auto;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(90, 140, 100, .1);
  color: #3d6b4a;
}

.pdp-stock.is-out {
  background: rgba(160, 80, 70, .1);
  color: #8a3d35;
}

.pdp-lede {
  font-size: 15px;
  line-height: 1.85;
  color: var(--pdp-muted);
  margin: 0 0 22px;
  max-width: 42ch;
}

.pdp-price-block {
  padding: 20px 0 22px;
  border-top: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
  margin-bottom: 22px;
}

.pdp-price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px 16px;
}

.pdp-price-now {
  font-family: var(--font-price, inherit);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--pdp-ink);
  letter-spacing: -.02em;
}

.pdp-price-was {
  font-size: 1rem;
  color: var(--pdp-muted);
  text-decoration: line-through;
  opacity: .75;
}

.pdp-discount {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c4a574, #a8874f);
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(168, 135, 79, .28);
}

.pdp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.pdp-chip {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--pdp-blush);
  color: var(--pdp-ink);
  border: 1px solid var(--pdp-line);
}

.pdp-chip b {
  font-weight: 600;
  margin-left: 6px;
  color: var(--pdp-muted);
}

.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.pdp-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pdp-muted);
}

.pdp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--pdp-line);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
}

.pdp-qty button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 20px;
  color: var(--pdp-ink);
  cursor: pointer;
  transition: background .3s;
}

.pdp-qty button:hover { background: var(--pdp-blush); }

.pdp-qty span {
  min-width: 36px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

.pdp-cta {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 10px;
  margin-bottom: 28px;
}

.pdp-btn {
  height: 54px;
  border: none;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .35s var(--pdp-ease), box-shadow .35s, filter .35s;
  font-family: inherit;
}

.pdp-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pdp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #c9aa7a 0%, #a8874f 55%, #96763f 100%);
  box-shadow: 0 14px 32px rgba(168, 135, 79, .32);
}

.pdp-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 40px rgba(168, 135, 79, .4);
}

.pdp-btn--dark {
  color: #fff;
  background: #3d342c;
  box-shadow: 0 12px 28px rgba(61, 52, 44, .22);
}

.pdp-btn--dark:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #2a241f;
}

.pdp-icon-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--pdp-line);
  background: #fff;
  color: var(--pdp-ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .35s var(--pdp-ease), border-color .35s, color .35s, background .35s;
}

.pdp-icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--pdp-gold);
  color: var(--pdp-gold-d);
}

.pdp-icon-btn.is-active {
  color: #c45c6a;
  border-color: rgba(196, 92, 106, .35);
  background: rgba(196, 92, 106, .06);
}

.pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.pdp-trust__item {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  background: var(--pdp-panel);
  border: 1px solid var(--pdp-line);
  transition: transform .35s var(--pdp-ease), box-shadow .35s;
}

.pdp-trust__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(90, 70, 50, .08);
}

.pdp-trust__ico {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.pdp-trust__item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}

.pdp-trust__item small {
  font-size: 11.5px;
  color: var(--pdp-muted);
  line-height: 1.5;
}

.pdp-seller {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(196, 165, 116, .12), rgba(253, 251, 247, .9));
  border: 1px solid var(--pdp-line);
}

.pdp-seller__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c4a574, #a8874f);
  flex-shrink: 0;
}

.pdp-seller strong {
  display: block;
  font-size: 14px;
}

.pdp-seller small {
  font-size: 12px;
  color: var(--pdp-muted);
}

/* Tabs */
.pdp-panels {
  margin: 0 auto 64px;
  max-width: 900px;
}

.pdp-tabs {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  gap: 4px;
  padding: 8px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .9);
  border: 1px solid var(--pdp-line);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(90, 70, 50, .06);
  overflow-x: auto;
  scrollbar-width: none;
}

.pdp-tabs::-webkit-scrollbar { display: none; }

.pdp-tab {
  flex: 1 0 auto;
  min-width: 88px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--pdp-muted);
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .35s, color .35s, box-shadow .35s;
  white-space: nowrap;
  padding: 0 18px;
}

.pdp-tab.is-active {
  background: #3d342c;
  color: #fff;
  box-shadow: 0 8px 20px rgba(61, 52, 44, .2);
}

.pdp-panel {
  animation: pdpFadeUp .45s var(--pdp-ease) both;
}

.pdp-panel[hidden] { display: none !important; }

.pdp-panel__title {
  font-family: var(--font-display, 'Markazi Text', Georgia, serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 600;
  margin: 0 0 18px;
}

.pdp-prose {
  font-size: 15.5px;
  line-height: 2;
  color: var(--pdp-ink);
  margin: 0 0 16px;
}

.pdp-prose--muted { color: var(--pdp-muted); }

.pdp-brand-line {
  font-size: 13.5px;
  color: var(--pdp-muted);
  padding-top: 8px;
  border-top: 1px solid var(--pdp-line);
}

.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pdp-spec-table tr {
  border-bottom: 1px solid var(--pdp-line);
}

.pdp-spec-table th,
.pdp-spec-table td {
  padding: 14px 8px;
  text-align: right;
  vertical-align: top;
}

.pdp-spec-table th {
  width: 36%;
  color: var(--pdp-muted);
  font-weight: 600;
}

.pdp-reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.pdp-reviews-score strong {
  font-size: 2rem;
  font-family: var(--font-display, Georgia, serif);
  display: block;
  line-height: 1;
}

.pdp-reviews-score span {
  font-size: 13px;
  color: var(--pdp-muted);
}

.pdp-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pdp-review {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: var(--pdp-panel);
  border: 1px solid var(--pdp-line);
  transition: transform .35s var(--pdp-ease), box-shadow .35s;
}

.pdp-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(90, 70, 50, .08);
}

.pdp-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #d4b896, #a8874f);
}

.pdp-review__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 6px;
}

.pdp-review__verified {
  font-size: 11px;
  font-weight: 600;
  color: #3d6b4a;
  background: rgba(90, 140, 100, .12);
  padding: 3px 9px;
  border-radius: 999px;
}

.pdp-review__stars {
  color: #c4a574;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pdp-review__text {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--pdp-ink);
}

.pdp-review__like {
  border: none;
  background: transparent;
  color: var(--pdp-muted);
  font-size: 12.5px;
  cursor: default;
  padding: 0;
  font-family: inherit;
}

.pdp-qa {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pdp-qa__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--pdp-blush);
  border: 1px solid transparent;
}

.pdp-qa__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.pdp-qa__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--pdp-muted);
}

/* Rails */
.pdp-rail {
  margin: 0 0 56px;
  padding-top: 8px;
}

.pdp-rail__head {
  margin-bottom: 22px;
}

.pdp-rail__head h2 {
  font-family: var(--font-display, 'Markazi Text', Georgia, serif);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 600;
  margin: 0 0 6px;
}

.pdp-rail__head p {
  margin: 0;
  color: var(--pdp-muted);
  font-size: 14px;
}

.pdp-rail__grid {
  gap: 18px !important;
}

.page-product .product-card {
  border-radius: 22px;
  overflow: hidden;
  transition: transform .4s var(--pdp-ease), box-shadow .4s;
}

.page-product .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(90, 70, 50, .12);
}

/* Sticky mobile ATC */
.pdp-sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .94);
  border: 1px solid var(--pdp-line);
  box-shadow: 0 16px 48px rgba(61, 52, 44, .18);
  backdrop-filter: blur(14px);
  animation: pdpFadeUp .4s var(--pdp-ease) both;
}

.pdp-sticky__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pdp-sticky__price strong {
  font-size: 14.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-sticky__price span {
  font-size: 11px;
  font-weight: 700;
  color: var(--pdp-gold-d);
}

.pdp-sticky__btn {
  margin-right: auto;
  height: 46px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  font-family: inherit;
  cursor: pointer;
  background: linear-gradient(135deg, #c9aa7a, #a8874f);
  box-shadow: 0 10px 24px rgba(168, 135, 79, .35);
  white-space: nowrap;
  transition: transform .3s var(--pdp-ease);
}

.pdp-sticky__btn:active { transform: scale(.97); }
.pdp-sticky__btn:disabled { opacity: .5; }

/* —— Tablet —— */
@media (max-width: 1024px) {
  .pdp-hero {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .pdp-gallery { position: static; }

  .pdp-trust { grid-template-columns: 1fr; }

  .pdp-cta {
    grid-template-columns: 1fr 1fr;
  }

  .pdp-cta .pdp-icon-btn {
    width: 100%;
    border-radius: 999px;
  }
}

/* —— Mobile —— */
@media (max-width: 768px) {
  .pdp {
    padding: 0 0 110px;
  }

  .pdp-crumb {
    padding: 10px var(--page-x, 16px) 12px;
  }

  .pdp-hero {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 36px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-gallery {
    max-width: none;
    position: static;
    padding: 12px var(--page-x, 16px) 0;
  }

  .pdp-gallery__viewport {
    width: min(100%, 300px);
    max-width: 300px;
    height: min(42vh, 300px);
    max-height: 300px;
    aspect-ratio: 1 / 1;
    margin-inline: auto;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(90, 70, 50, .08);
  }

  .pdp-gallery__badge { display: none; }

  .pdp-gallery__nav {
    width: 40px;
    height: 40px;
  }

  .pdp-thumbs {
    padding: 12px var(--page-x, 16px) 0;
  }

  .pdp-thumb {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .pdp-dots {
    display: flex;
    padding: 10px 0 4px;
  }

  .pdp-buy {
    padding: 22px var(--page-x, 16px) 8px;
  }

  .pdp-title {
    font-size: 1.65rem;
  }

  .pdp-rating-row .pdp-stock {
    margin-right: 0;
    width: 100%;
    text-align: center;
  }

  .pdp-cta {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "primary primary"
      "buynow buynow"
      "wish share";
  }

  .pdp-btn--primary { grid-area: primary; height: 52px; }
  .pdp-btn--dark { grid-area: buynow; }
  .pdp-cta [data-wishlist] { grid-area: wish; width: 100%; border-radius: 999px; }
  .pdp-cta #pdpShareBtn { grid-area: share; width: 100%; border-radius: 999px; }

  .pdp-trust {
    grid-template-columns: 1fr;
  }

  .pdp-panels {
    padding: 0 var(--page-x, 16px);
    margin-bottom: 40px;
  }

  .pdp-tabs--desktop {
    display: none;
  }

  .pdp-acc {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--pdp-line);
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: var(--pdp-ink);
    cursor: pointer;
  }
  .pdp-acc::after {
    content: '+';
    font-weight: 400;
    color: var(--pdp-muted);
  }
  .pdp-acc.is-open::after { content: '−'; }

  .pdp-panel__title { font-size: 1.25rem; }

  .pdp-rail {
    padding: 0 var(--page-x, 16px);
    margin-bottom: 40px;
  }

  .pdp-sticky[hidden] { display: none !important; }
  .pdp-sticky:not([hidden]) {
    display: flex;
  }

}

@media (prefers-reduced-motion: reduce) {
  .pdp-gallery__track,
  .pdp-gallery__img,
  .pdp-btn,
  .pdp-review,
  .page-product .product-card {
    transition: none !important;
  }
  .pdp-buy { animation: none; }
}
