/* Shiva Experience product page — mock-up alignment (body.shiva-pdp) */

body.shiva-pdp {
  --ink: #111018;
  --muted: #6c6473;
  --soft: #f7f2ea;
  --paper: #ffffff;
  --line: rgba(17, 16, 24, 0.12);
  --gold: #f3cf71;
  --orange: #f07a2f;
  --pink: #d73c75;
  --green: #109977;
  --purple: #2c193d;
  --link: #0a6f56;
  --link-hover: #2c193d;
  --link-accent: #a8335c;
  --shadow: 0 22px 60px rgba(19, 13, 30, 0.14);
  --max: 1240px;
  --radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 122, 47, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 4%, rgba(215, 60, 117, 0.14), transparent 32rem),
    var(--soft);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* PDP-only utilities (no Tailwind on Shiva Experience product pages) */
body.shiva-pdp .hidden {
  display: none !important;
}
body.shiva-pdp .sx-pdp-abs-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.shiva-pdp .shiva-main--flush {
  max-width: none;
  margin: 0;
  padding: 0;
}

.sx-pdp-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.sx-pdp-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Faded pink strapline — matches homepage .sx-announce and storefront .shiva-announce */
.sx-pdp-announce {
  background: linear-gradient(90deg, #fde8df 0%, #f5e0eb 38%, #f9e8ff 72%, #fff3d6 100%);
  color: var(--ink);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(215, 60, 117, 0.1);
}
.sx-pdp-announce p {
  margin: 0 auto;
  max-width: var(--max);
}

.sx-pdp-header {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(247, 242, 234, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.sx-pdp-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.sx-pdp-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  flex-shrink: 0;
}

.sx-pdp-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  grid-column: 1;
}
.sx-pdp-logo img {
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
}

.sx-pdp-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 1.125rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(19, 13, 30, 0.06);
  flex-shrink: 0;
}

.sx-pdp-menu-btn[aria-expanded="true"] {
  background: rgba(243, 207, 113, 0.35);
  border-color: rgba(240, 122, 47, 0.35);
}

.sx-pdp-drawer {
  flex: 1 1 100%;
  width: 100%;
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 0.75rem;
}
.sx-pdp-drawer.is-open {
  display: flex;
}

.sx-pdp-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sx-pdp-nav__list a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.35rem 0;
}
.sx-pdp-nav__list a:hover {
  color: var(--orange);
}

.sx-pdp-search__form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 6px 20px rgba(19, 13, 30, 0.06);
  max-width: 420px;
  width: 100%;
}
.sx-pdp-search input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0.55rem 0.85rem;
  font-size: 0.9375rem;
  background: transparent;
  color: var(--ink);
}
.sx-pdp-search button {
  border: 0;
  background: var(--gold);
  color: #1a120b;
  padding: 0 1rem;
  cursor: pointer;
}

.sx-pdp-basket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(19, 13, 30, 0.06);
  white-space: nowrap;
  /* Grid cells default to stretch — avoid full-width basket pill */
  width: fit-content;
  max-width: 100%;
  justify-self: end;
}
.sx-pdp-basket:hover {
  border-color: rgba(240, 122, 47, 0.35);
}

@media (min-width: 900px) {
  .sx-pdp-menu-btn {
    display: none !important;
  }

  .sx-pdp-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto;
    flex-wrap: nowrap;
  }

  .sx-pdp-logo {
    grid-column: 1;
  }

  .sx-pdp-header__actions {
    grid-column: 4;
    margin-left: 0;
    justify-self: end;
  }

  .sx-pdp-drawer {
    display: contents;
    flex: unset;
    width: auto;
    padding-bottom: 0;
  }

  .sx-pdp-nav {
    grid-column: 2;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .sx-pdp-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
    justify-content: center;
  }

  .sx-pdp-search {
    grid-column: 3;
    justify-self: end;
    width: 100%;
    max-width: 420px;
  }

  .sx-pdp-basket {
    justify-self: end;
  }
}

@media (max-width: 899px) {
  .sx-pdp-header__inner {
    flex-wrap: nowrap;
  }

  .sx-pdp-logo img {
    max-width: 142px;
    height: auto;
  }
}

/* Trust / delivery bar */
.sx-pdp-trustbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
}
.sx-pdp-trustbar__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.sx-pdp-trustbar__card span,
.sx-pdp-trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
}
.sx-pdp-trustbar__item a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.sx-pdp-trustbar__item a:hover {
  text-decoration: underline;
}
.sx-pdp-trustbar__icon {
  flex-shrink: 0;
  color: var(--purple);
}

/* Breadcrumbs */
.sx-pdp-bc {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--muted);
}
.sx-pdp-bc a {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
}
.sx-pdp-bc a:hover {
  color: var(--pink);
}
.sx-pdp-bc .sx-pdp-bc__sep {
  margin: 0 0.35rem;
  opacity: 0.6;
}

/* Main product grid */
.sx-pdp-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
}
.sx-pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 1024px) {
  .sx-pdp-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
    gap: 34px;
  }
}

.sx-pdp-extras-span {
  grid-column: 1 / -1;
}

/* Basket form anchor (fields/buttons associated via form="" attribute) */
#sx-pdp-add-form.product-add-form {
  margin: 0;
  padding: 0;
  border: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Gallery card */
.sx-pdp-gallery-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.sx-pdp-gallery-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f7f2ea 100%);
}
.sx-pdp-main-picture {
  display: block;
}
.sx-pdp-main-img {
  object-fit: contain;
  object-position: center;
}
.sx-pdp-gallery-stage img,
.sx-pdp-gallery-stage video,
.sx-pdp-gallery-stage iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sx-pdp-gallery-stage img {
  object-fit: contain;
  object-position: center;
}
.sx-pdp-gallery-stage iframe,
.sx-pdp-gallery-stage video,
.sx-pdp-gallery-video {
  object-fit: cover;
}
.sx-pdp-gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.9375rem;
}

.sx-pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .sx-pdp-thumbs {
    grid-template-columns: repeat(7, 1fr);
  }
}
.sx-pdp-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: var(--soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sx-pdp-thumb:hover {
  border-color: rgba(215, 60, 117, 0.35);
}
.sx-pdp-thumb.is-active {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px rgba(44, 25, 61, 0.2);
}
.sx-pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sx-pdp-thumb-picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sx-pdp-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sx-pdp-thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sx-pdp-thumb-video-label {
  border-radius: 999px;
  background: rgba(17, 16, 24, 0.55);
  color: #fff;
  padding: 0.25rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
}

/* Technical bullets (under gallery) */
.sx-pdp-tech-card {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(19, 13, 30, 0.06);
}
.sx-pdp-tech-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.sx-pdp-tech-list li {
  margin-bottom: 0.35rem;
}
.sx-pdp-tech-list li:last-child {
  margin-bottom: 0;
}

/* Under-gallery: Add to Basket + trust + Stripe */
.sx-pdp-under-gallery {
  margin-top: 1.25rem;
}
.sx-pdp-btn-cart--under-image {
  width: 100%;
  margin-top: 0;
}
.sx-pdp-trust-foot--under-image {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

/* Right column: size → price/qty → checkout stack */
.sx-pdp-commerce-card {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sx-pdp-variant-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sx-pdp-variant-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.sx-pdp-variant-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sx-pdp-variant-pill {
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--paper);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.sx-pdp-variant-pill:hover {
  border-color: rgba(215, 60, 117, 0.35);
}
.sx-pdp-variant-pill.is-selected {
  border-color: var(--purple);
  background: rgba(243, 207, 113, 0.35);
  box-shadow: 0 0 0 1px rgba(44, 25, 61, 0.2);
}
.sx-pdp-variant-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}
.sx-pdp-variant-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}
.sx-pdp-checkout-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.sx-pdp-checkout-stack .sx-pdp-btn-cart {
  margin-top: 0;
}
.sx-pdp-trust-foot--summary {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.45;
}
.sx-pdp-checkout-stack .wallet-express-root--stack {
  width: 100%;
  margin: 0;
}
.sx-pdp-commerce-card #product-price-block {
  margin-bottom: 0.85rem;
}
.sx-pdp-commerce-card #product-price-block .sx-pdp-price-main-wrap {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
}
.sx-pdp-qty-row--summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem 1.25rem;
  margin-top: 0.25rem;
}
.sx-pdp-qty-row--summary .sx-pdp-stock-pill {
  align-self: center;
}

/* VAT breakdown in commerce card (reuse buy-bar line helpers) */
.sx-pdp-buy-bar__vat-rate,
.sx-pdp-buy-bar__vat-label {
  font-size: 0.8125rem;
  color: var(--muted);
}
.sx-pdp-buy-bar__vat-breakdown {
  margin-top: 0.65rem !important;
  padding-top: 0.75rem !important;
  border-top: 1px solid var(--line) !important;
  font-size: 0.8125rem !important;
  color: var(--muted) !important;
  background: transparent !important;
  border-radius: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}
.sx-pdp-buy-bar__vat-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.3rem;
}
.sx-pdp-buy-bar__vat-line:first-child {
  margin-top: 0;
}
.sx-pdp-buy-bar__vat-line--total {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--line);
  font-weight: 800;
  color: var(--ink) !important;
}
.sx-pdp-btn-cart__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Express checkout uses shared .wallet-express-root--stack (site-pdp.css) */

.sx-pdp-extras--under-bar {
  margin-top: 0;
}
.sx-pdp-extras-lead {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.sx-pdp-extra-body {
  flex: 1;
  min-width: 0;
}
.sx-pdp-extra-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
.sx-pdp-extra.product-extra-option input[type="checkbox"] {
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.sx-pdp-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.35rem;
  font-size: 0.6875rem;
  color: var(--muted);
}

/* Summary card */
.sx-pdp-summary {
  background: var(--paper);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.85);
}
@media (min-width: 1024px) {
  .sx-pdp-summary {
    position: sticky;
    top: 104px;
  }
}

.sx-pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.sx-pdp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(240, 122, 47, 0.12), rgba(215, 60, 117, 0.1));
  color: var(--purple);
  border: 1px solid rgba(215, 60, 117, 0.2);
}
.sx-pdp-badge--stock {
  background: rgba(16, 153, 119, 0.12);
  color: #0d7a5f;
  border-color: rgba(16, 153, 119, 0.25);
}
.sx-pdp-badge--warn {
  background: rgba(215, 60, 117, 0.1);
  color: #b03060;
}

.sx-pdp-summary h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: var(--ink);
}

.sx-pdp-intro {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.sx-pdp-price-panel {
  background: linear-gradient(180deg, #fdfcfa, #ffffff);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}
.sx-pdp-price-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}
.sx-pdp-price-main-wrap {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.35rem;
  line-height: 1.15;
}
.sx-pdp-price-main {
  font: inherit;
  font-weight: 800;
  color: inherit;
}
.sx-pdp-price-prefix {
  font-weight: 800;
}
.sx-pdp-vat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.sx-pdp-price-panel .sx-pdp-vat-row {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.875rem;
  color: var(--muted);
}
.sx-pdp-vat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: inherit;
}
.sx-pdp-vat-switch {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #d1d5db;
  transition: background 0.2s ease;
}
.sx-pdp-vat-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(1.5rem - 4px);
  height: calc(1.5rem - 4px);
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}
.sx-pdp-vat-toggle[aria-pressed="true"] .sx-pdp-vat-switch {
  background: linear-gradient(135deg, var(--orange), var(--pink));
}
.sx-pdp-vat-toggle[aria-pressed="true"] .sx-pdp-vat-switch::after {
  transform: translateX(1.25rem);
}

.sx-pdp-qty-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1rem;
}
.sx-pdp-qty {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sx-pdp-qty label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
}
.sx-pdp-qty input {
  width: 5rem;
  padding: 0.55rem;
  text-align: center;
  font-weight: 700;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
}
.sx-pdp-stock-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  line-height: 1.2;
}
.sx-pdp-stock-pill--ok {
  background: rgba(16, 153, 119, 0.12);
  color: #0d7a5f;
  border-color: rgba(16, 153, 119, 0.25);
}
.sx-pdp-stock-pill--out {
  background: rgba(215, 60, 117, 0.1);
  color: #b03060;
  border-color: rgba(215, 60, 117, 0.2);
}
.sx-pdp-stock-pill--back {
  background: rgba(240, 122, 47, 0.12);
  color: #c45a1a;
  border-color: rgba(240, 122, 47, 0.25);
}

.sx-pdp-btn-cart {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 14px 36px rgba(215, 60, 117, 0.28);
}
.sx-pdp-btn-cart:hover:not(:disabled) {
  filter: brightness(1.05);
}
.sx-pdp-btn-cart:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.sx-pdp-notes {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sx-pdp-note-card {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(247, 242, 234, 0.55);
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted);
}

.sx-pdp-wishlist {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.sx-pdp-wishlist form {
  margin: 0;
}
.sx-pdp-wishlist button {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--ink);
}

.sx-pdp-trust-foot {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Extras */
.sx-pdp-extras {
  margin-top: 2rem;
}
.sx-pdp-extras--standalone {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
}
.sx-pdp-extra--demo {
  cursor: default;
}
.sx-pdp-extra-text {
  flex: 1;
  min-width: 0;
}
.sx-pdp-extra--demo .sx-pdp-extra-add {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sx-pdp-extras h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
}
.sx-pdp-extras-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
}
.sx-pdp-extra {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: start;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 28px rgba(19, 13, 30, 0.06);
  position: relative;
}
.sx-pdp-extra label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  flex: 1;
}
.sx-pdp-extra img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.sx-pdp-extra-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
}
.sx-pdp-extra-price {
  font-weight: 800;
  font-size: 0.875rem;
}
.sx-pdp-extra-add {
  flex-shrink: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 0;
  background: var(--gold);
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  color: #1a120b;
}

/* Owner insight — speech bubble from Paul (E-E-A-T) */
.sx-pdp-owner-insight {
  margin-top: 2.5rem;
}
.sx-pdp-owner-insight__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(1.15rem, 3vw, 1.65rem);
  box-shadow: var(--shadow);
}
.sx-pdp-owner-insight__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 720px) {
  .sx-pdp-owner-insight__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.35rem;
  }
}
.sx-pdp-owner-insight__speaker {
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  max-width: 9.5rem;
}
.sx-pdp-owner-insight__portrait-wrap {
  width: 6.75rem;
  height: 6.75rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--pink));
  box-shadow: 0 10px 22px rgba(44, 25, 61, 0.18);
}
.sx-pdp-owner-insight__portrait-wrap--fallback {
  display: grid;
  place-items: center;
}
.sx-pdp-owner-insight__portrait {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  background: var(--soft);
}
.sx-pdp-owner-insight__initial {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
}
.sx-pdp-owner-insight__speaker-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sx-pdp-owner-insight__speaker-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.sx-pdp-owner-insight__speaker-meta {
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 600;
}
.sx-pdp-owner-insight__bubble-wrap {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
@media (min-width: 720px) {
  .sx-pdp-owner-insight__bubble-wrap {
    padding-top: 0.35rem;
    padding-left: 0.25rem;
  }
}
.sx-pdp-owner-insight__bubble {
  position: relative;
  background: #fff;
  border: 2px solid rgba(44, 25, 61, 0.14);
  border-radius: 22px 26px 26px 22px;
  padding: 1.1rem 1.2rem 1rem;
  box-shadow: 0 10px 28px rgba(19, 13, 30, 0.08);
}
/* Speech tail — points at Paul */
.sx-pdp-owner-insight__bubble::before,
.sx-pdp-owner-insight__bubble::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
@media (max-width: 719px) {
  .sx-pdp-owner-insight__bubble {
    border-radius: 22px;
  }
  .sx-pdp-owner-insight__bubble::before {
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 14px 14px 14px;
    border-color: transparent transparent rgba(44, 25, 61, 0.14) transparent;
  }
  .sx-pdp-owner-insight__bubble::after {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 11px 11px 11px;
    border-color: transparent transparent #fff transparent;
  }
}
@media (min-width: 720px) {
  .sx-pdp-owner-insight__bubble {
    border-radius: 8px 24px 24px 24px;
  }
  .sx-pdp-owner-insight__bubble::before {
    left: -16px;
    top: 1.65rem;
    border-width: 11px 16px 11px 0;
    border-color: transparent rgba(44, 25, 61, 0.14) transparent transparent;
  }
  .sx-pdp-owner-insight__bubble::after {
    left: -12px;
    top: calc(1.65rem + 2px);
    border-width: 9px 13px 9px 0;
    border-color: transparent #fff transparent transparent;
  }
}
.sx-pdp-owner-insight__bubble-head {
  margin-bottom: 0.75rem;
}
.sx-pdp-owner-insight__bubble-kicker {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.6rem;
}
.sx-pdp-owner-insight__bubble-kicker-main {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: -0.02em;
}
.sx-pdp-owner-insight__bubble-kicker-meta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}
.sx-pdp-owner-insight__bubble-title {
  margin: 0.45rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.sx-pdp-owner-insight__quote {
  margin: 0;
  padding: 0;
  border: none;
}
.sx-pdp-owner-insight__copy {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
}
.sx-pdp-owner-insight__copy p {
  margin: 0 0 0.65rem;
}
.sx-pdp-owner-insight__copy p:last-child {
  margin-bottom: 0;
}
.sx-pdp-owner-insight__trust {
  margin: 0.85rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(17, 16, 24, 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}
.sx-pdp-owner-insight__footer {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  text-align: center;
}
@media (min-width: 720px) {
  .sx-pdp-owner-insight__footer {
    text-align: left;
  }
}
.sx-pdp-owner-insight__about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--link);
  text-decoration: none;
}
.sx-pdp-owner-insight__about-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sx-pdp-owner-insight__about-arrow {
  transition: transform 0.15s ease;
}
.sx-pdp-owner-insight__about-link:hover .sx-pdp-owner-insight__about-arrow {
  transform: translateX(3px);
}

/* Owner insight — compact sidebar badge (unused on PDP; full article block is below description) */
.sx-pdp-owner-insight--sidebar {
  display: none;
  margin: 0;
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(247, 242, 234, 0.85) 0%, rgba(255, 255, 255, 0.6) 100%);
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge-portrait {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(26, 18, 11, 0.12);
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge-body {
  min-width: 0;
  flex: 1;
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.2;
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge-quote {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink);
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge-link {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--link);
  text-decoration: none;
}
.sx-pdp-owner-insight--sidebar .sx-pdp-owner-insight__badge-link:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Description section */
.sx-pdp-desc-section {
  margin-top: 2.5rem;
}
.sx-pdp-desc-card {
  background: var(--paper);
  border-radius: 32px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.sx-pdp-desc-card h2 {
  margin: 0 0 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.sx-pdp-desc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sx-pdp-desc-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
  }
  .sx-pdp-desc-grid--specs-only {
    grid-template-columns: minmax(0, 1fr);
    max-width: 640px;
  }
}
.sx-pdp-desc-copy {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}
.sx-pdp-desc-copy p {
  margin: 0 0 0.85rem;
}
.sx-pdp-desc-copy p:last-child {
  margin-bottom: 0;
}
.sx-pdp-specs {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
  background: rgba(247, 242, 234, 0.45);
}
.sx-pdp-spec-row {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.sx-pdp-spec-row:last-child {
  border-bottom: 0;
}
.sx-pdp-spec-k {
  font-weight: 800;
  color: var(--ink);
  display: block;
  margin-bottom: 0.15rem;
}
.sx-pdp-spec-v {
  color: var(--muted);
}

/* Related grid */
.sx-pdp-related {
  margin-top: 2.5rem;
}
.sx-pdp-related h2 {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 800;
}
.sx-pdp-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .sx-pdp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sx-pdp-related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sx-pdp-rel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(19, 13, 30, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sx-pdp-rel-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sx-pdp-rel-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(165deg, #fff, var(--soft));
  position: relative;
}
.sx-pdp-rel-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  box-sizing: border-box;
}
.sx-pdp-rel-body {
  padding: 0.85rem 1rem 1.1rem;
  text-align: center;
}
.sx-pdp-rel-title {
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.sx-pdp-rel-price {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
}

/* Footer */
.sx-pdp-footer {
  background: #19141f;
  color: #f5efe6;
  margin-top: auto;
}
.sx-pdp-footer a {
  color: #fff8ef;
  text-decoration: none;
}
.sx-pdp-footer a:hover {
  text-decoration: underline;
}
.sx-pdp-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .sx-pdp-footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
.sx-pdp-footer__h {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #e8dfd4;
  margin: 0 0 1rem;
}
.sx-pdp-footer__intro {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #f5efe6;
  max-width: 28rem;
}
.sx-pdp-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
}
.sx-pdp-footer__list li {
  margin-bottom: 0.5rem;
}
.sx-pdp-footer__bottom {
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  color: #d9cfc3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product page contact line (replaces low-contrast inline pink link) */
.sx-pdp-contact-line {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding: 0 1.25rem;
  color: var(--ink);
}
.sx-pdp-contact-line a {
  color: var(--link-hover);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sx-pdp-contact-line a:hover {
  color: var(--link);
}

html[data-theme="dark"] body.shiva-pdp {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(240, 122, 47, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 4%, rgba(215, 60, 117, 0.14), transparent 32rem),
    var(--soft);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* PDP main flow: mobile Paul before description; desktop description then Paul */
.sx-pdp-main-flow {
  display: flex;
  flex-direction: column;
}
.sx-pdp-main-flow__grid {
  order: 1;
}
.sx-pdp-main-flow__desc {
  order: 3;
}
.sx-pdp-main-flow__owner {
  order: 2;
}
.sx-pdp-owner-article-wrap {
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .sx-pdp-main-flow__desc {
    order: 2;
  }
  .sx-pdp-main-flow__owner {
    order: 3;
  }
}

/* Trust bar: compact marquee on small screens */
.sx-pdp-trustbar__card--mobile {
  display: none;
}
@media (max-width: 1023px) {
  .sx-pdp-trustbar {
    padding: 0.65rem 0.85rem 0;
  }
  .sx-pdp-trustbar__card--desktop {
    display: none;
  }
  .sx-pdp-trustbar__card--mobile {
    display: block;
    padding: 0.5rem 0.65rem;
  }
  .sx-pdp-trustbar__marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }
  .sx-pdp-trustbar__marquee-track {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    width: max-content;
    animation: sx-pdp-trust-marquee 32s linear infinite;
  }
  .sx-pdp-trustbar__card--mobile .sx-pdp-trustbar__item {
    font-size: 0.875rem;
    font-weight: 600;
    gap: 0.35rem;
    white-space: nowrap;
  }
  .sx-pdp-trustbar__card--mobile .sx-pdp-trustbar__icon {
    width: 14px;
    height: 14px;
  }
}
@keyframes sx-pdp-trust-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sx-pdp-trustbar__marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 0.5rem 1rem;
  }
  .sx-pdp-trustbar__marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Mobile PDP stack: tighter spacing; hide sidebar Paul (full block follows commerce) */
@media (max-width: 1023px) {
  .sx-pdp-wrap {
    padding: 0.85rem 0.85rem 2rem;
  }
  .sx-pdp-bc {
    padding: 0.5rem 0.85rem 0;
    font-size: 0.75rem;
  }
  .sx-pdp-grid {
    gap: 14px;
  }
  .sx-pdp-gallery-card {
    padding: 12px;
    border-radius: 24px;
  }
  .sx-pdp-summary {
    padding: 1.15rem 1rem;
    border-radius: 24px;
  }
  .sx-pdp-badges {
    margin-bottom: 0.65rem;
    gap: 0.35rem;
  }
  .sx-pdp-intro {
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
  }
  .sx-pdp-commerce-card {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    gap: 0.75rem;
  }
  .sx-pdp-variant-pill {
    padding: 0.45rem 0.85rem;
    min-height: 44px;
  }
  .sx-pdp-variant-hint {
    font-size: 0.6875rem;
  }
  .sx-pdp-owner-article-wrap {
    margin-top: 1rem;
  }
  .sx-pdp-desc-section {
    margin-top: 1.25rem;
  }
  .sx-pdp-desc-card {
    border-radius: 24px;
    padding: 1.1rem;
  }
  .sx-pdp-owner-insight--article .sx-pdp-owner-insight__card {
    border-radius: 24px;
  }
}

/* Sticky mobile add-to-basket bar */
.sx-pdp-sticky-cta {
  display: none;
}
@media (max-width: 1023px) {
  .sx-pdp-sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 240;
    padding: 0.6rem 0.85rem calc(0.6rem + env(safe-area-inset-bottom, 0px));
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px rgba(19, 13, 30, 0.14);
    transform: translateY(110%);
    transition: transform 0.22s ease;
    pointer-events: none;
    visibility: hidden;
  }
  .sx-pdp-sticky-cta.is-visible {
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
  }
  .sx-pdp-sticky-cta__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
  }
  .sx-pdp-sticky-cta__price {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
    min-width: 0;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sx-pdp-sticky-cta .sx-pdp-sticky-cta__btn.sx-pdp-btn-cart {
    width: auto;
    max-width: 11.5rem;
    margin-top: 0;
    padding: 0.6rem 1rem;
    min-height: 44px;
    font-size: 0.875rem;
    justify-self: end;
  }
  .sx-pdp-sticky-cta .sx-pdp-btn-cart__inner {
    gap: 0.4rem;
  }
  .sx-pdp-sticky-cta .sx-pdp-btn-cart__inner span:last-child {
    white-space: nowrap;
  }
  body.sx-pdp-has-sticky-cta {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }
}
