/* ===============================
   PRODUCT TEMPLATE (PDP)
================================ */

.product-template-page {
  padding-top: 77px; /* navbar fixed spacing (matches products page behavior) */
  padding-bottom: 90px;
}

.pdp_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 22px 50px 0;
  display: grid;
  gap: 20px;
}

.pdp_breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.65);
}

.pdp_breadcrumb a {
  color: rgba(0, 0, 0, 0.75);
}

.pdp_breadcrumb .sep {
  opacity: 0.5;
}

.pdp_load_flex {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.5fr);
  gap: 10px;
  align-items: start;
}

.pdp_load_flex > * {
  min-width: 0;
}

.pdp_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
  gap: 0;
  align-items: start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.pdp_grid > .pdp_card--embedded {
  min-width: 0;
}

.pdp_card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.pdp_card.pdp_card--embedded {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  height: 100%;
}

.pdp > .pdp_card:not(.pdp_card--embedded) {
  margin-top: 10px;
}

.pdp_gallery {
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pdp_mainImage {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  cursor: zoom-in;
}

.pdp_mainImage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.pdp_thumbs {
  width: 90px;
  max-height: 560px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 4px 8px 4px 4px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-gutter: stable;
}

.pdp_thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  opacity: 0.92;
  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pdp_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pdp_thumb:hover {
  transform: none;
  opacity: 1;
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.pdp_thumb.is-active {
  border-color: rgba(0, 0, 0, 0.45);
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
}

/* Mobile Gallery */
@media (max-width: 768px) {
  .pdp_wrap {
    padding: 14px 12px 0;
    gap: 14px;
  }

  .pdp_gallery {
    padding: 12px;
    display: grid;
    gap: 10px;
  }

  .pdp_thumbs {
    width: 100%;
    max-height: none;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 4px;
    order: 2;
  }

  .pdp_mainImage {
    order: 1;
  }

  .pdp_thumb {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
  }
}

.pdp_variant {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.pdp_buy {
  padding: 20px;
  display: grid;
  gap: 12px;
}

.pdp_title {
  margin: 0;
  text-align: left;
  border: none;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.9);
}

.pdp_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pdp_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.75);
}

.pdp_priceRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
}

.pdp_price {
  font-size: 1.45rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.9);
  margin: 0;
}

.pdp_price.is-red {
  color: #ea0933;
}

.pdp_compare {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 700;
}

.pdp_compare s {
  color: rgba(0, 0, 0, 0.45);
}

.pdp_metaLine {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
  font-size: 0.95rem;
}

.pdp_opt {
  display: grid;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp_optGroup {
  display: grid;
  gap: 8px;
}

.pdp_optLabel {
  font-size: 0.92rem;
  color: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pdp_optPills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdp_pill {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(0, 0, 0, 0.82);
  padding: 10px 11px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.pdp_pill--edition {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  z-index: 5;
  overflow: hidden;
}

.pdp_pill img {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 4;
}

.pdp_pill:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.28);
}

.pdp_pill.is-active {
  border-color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.05);
}

.pdp_pill.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* TODO: */
.pdp_shipping {
  display: grid;
  gap: 15px;
  margin-bottom: 5px;
}

.pdp_shipping p {
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pdp_shipping svg {
  color: rgb(0, 173, 58);
  width: 20px;
}

.pdp_shipping a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(0, 0, 0, 0.68);
}

.pdp_shipping_lowColor-wrap {
  display: flex;
}

#pdp_shipping_lowColor {
  color: rgba(0, 0, 0, 0.68);
}

#pdp_shipping_note {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.85rem;
  font-weight: normal;
}

#pdp_shipping_notice {
  margin: -5px 0 0 26px;
  color: rgba(77, 50, 0, 0.68);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}

.pdp_qtyRow {
  display: grid;
  gap: 8px;
}

#pdpStock {
  transition: color 0.2s ease;
}

#pdpStock.stock_out {
  color: #b00020;
  font-weight: 300;
}

#pdpStock.stock_low {
  color: #cc0025;
  font-weight: 300;
}

#pdpStock.in_stock {
  color: rgba(0, 0, 0, 0.72);
  font-weight: 300;
}

.pdp_qtyRow input[type="number"] {
  width: 54px;
  height: 32px;
  border: none;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.88);
  background: rgba(255, 255, 255, 0.78);
  outline: none;
}

.pdp_qtyRow input[type="number"]:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.pdp_qtyControl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdp_qtyBtn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(214, 214, 214, 0.274);
  color: rgba(0, 0, 0, 0.86);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.pdp_qtyBtn:hover {
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.09);
}

.pdp_qtyBtn:disabled,
.pdp_qtyBtn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pdp_qtyRow input[type="number"]::-webkit-outer-spin-button,
.pdp_qtyRow input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp_qtyRow input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.pdp_actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 5px;
}

.pdp_btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(0, 0, 0, 0.85);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.pdp_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.pdp_btn_primary {
  background: #000;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.8);
}

.pdp_stickybar_btn {
  display: flex;
  gap: 5px;
}

/* StickyBar overRide */
#pdpStickyBuy,
#pdpStickyAddToCart {
  width: 120px;
}
#pdpStickyBuy,
#pdpStickyAddToCart:hover {
  transform: translateY(0px);
}

#pdpStickyAddToCart {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 1);
}

#pdpStickyAddToCart:hover {
  background-color: rgba(238, 238, 238, 0.92);
}

.pdp_btn_primary:hover {
  background: rgba(0, 0, 0, 0.92);
  color: #fff;
}

.pdp_btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pdp_contentSection,
.pdp_reviews,
.pdp_related {
  padding: 22px;
}

.pdp_contentSection,
.pdp_reviews {
  display: grid;
  gap: 22px;
}

.pdp_contentHeader {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.pdp_contentEyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.pdp_contentHeader h2 {
  margin: 0;
  border: none;
  text-align: left;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
}

.pdp_contentHeader p {
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.7;
}

.pdp_contentGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.pdp_contentBlock {
  background: rgba(248, 248, 248, 0.74);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.pdp_contentBlock--media {
  grid-column: 1 / -1;
}

.pdp_contentBlockHead {
  display: grid;
  gap: 6px;
}

.pdp_contentBlock h3 {
  margin: 0;
  text-align: left;
  border: none;
  font-size: 1.02rem;
}

.pdp_contentBlock p,
.pdp_richText {
  margin: 0;
  color: rgba(0, 0, 0, 0.74);
  line-height: 1.75;
  font-size: 0.98rem;
}

.pdp_contentBlock p + p {
  margin-top: 10px;
}

.pdp_specRows {
  display: grid;
  gap: 12px;
}

.pdp_specRow {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pdp_specRow:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.pdp_specRow span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
}

.pdp_specRow p {
  color: rgba(0, 0, 0, 0.88);
  font-weight: 600;
}

.pdp_descMedia {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

.pdp_descMediaGallery {
  display: block;
}

.pdp_descMediaItem {
  margin: 0;
  display: none;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.pdp_descMediaItem:first-child {
  display: block;
  max-height: clamp(240px, 46vw, 360px);
  position: relative;
}

.pdp_descMediaItem:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.96) 100%
  );
  pointer-events: none;
}

.pdp_descMediaItem img {
  width: 100%;
  height: auto;
  display: block;
}

.pdp_descMediaActions {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 1;
}

.pdp_descLoadMore {
  border: none;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.pdp_descLoadMore:hover {
  color: #fff;
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.pdp_descMedia.is-expanded {
  overflow: visible;
  background: transparent;
}

.pdp_descMedia.is-expanded .pdp_descMediaGallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pdp_descMedia.is-expanded .pdp_descMediaItem {
  display: block;
  max-height: none;
}

.pdp_descMedia.is-expanded .pdp_descMediaItem:first-child::after {
  content: none;
}

.pdp_descMedia.is-expanded .pdp_descMediaActions {
  display: none;
}

.pdp_reviewsSlider {
  display: grid;
  gap: 18px;
}

.pdp_reviewsTrack {
  --pdp-review-columns: 3;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(
    (100% - (var(--pdp-review-columns) - 1) * 16px) / var(--pdp-review-columns)
  );
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  padding: 4px 2px 6px;
}

.pdp_reviewsTrack::-webkit-scrollbar {
  display: none;
}

.pdp_reviewCard {
  min-width: 0;
  scroll-snap-align: start;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  gap: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.04);
}

.pdp_reviewStars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  color: #b1841c;
}

.pdp_reviewStars strong {
  margin-left: 6px;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pdp_reviewBody {
  margin: 0;
  color: rgba(0, 0, 0, 0.74);
  line-height: 1.75;
  font-size: 0.98rem;
}

.pdp_reviewMeta {
  display: grid;
  gap: 4px;
}

.pdp_reviewMeta strong {
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.88);
}

.pdp_reviewMeta span {
  color: rgba(0, 0, 0, 0.54);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pdp_reviewsDots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pdp_reviewsDot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  padding: 0;
  transition:
    width 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.pdp_reviewsDot:hover {
  transform: scale(1.08);
}

.pdp_reviewsDot.is-active {
  width: 28px;
  background: rgba(0, 0, 0, 0.82);
}

.pdp_related h2 {
  margin: 0 0 10px;
  border: none;
}

.pdp_relatedActions {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.pdp_relatedActions .pdp_btn {
  min-width: 160px;
}

.pdp_relatedActions .pdp_btn:disabled,
.pdp_relatedActions .pdp_btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.pdp_relatedGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

/* Related product tile (matches products_page.php cards) */
.product-tile {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.product-tile__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.06);
}

.product-tile__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-tile:hover .product-tile__media img {
  transform: scale(1.06);
}

.product-tile__placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.55),
      rgba(255, 255, 255, 0.1)
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02));
}

.product-tile__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-tile__body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 8px;
}

.product-tile__title {
  margin: 0;
  text-align: left;
  border: none;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.product-tile__price_wrap {
  display: flex;
  gap: 10px;
}

.product-tile__price {
  margin: 0;
  text-align: left;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.86);
}

.product-tile__desc {
  margin: 0;
  text-align: left;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Layout responsive */
@media (max-width: 1100px) {
  .pdp_load_flex {
    grid-template-columns: 1fr;
  }

  .pdp_grid {
    grid-template-columns: 1fr;
  }

  .pdp_contentGrid {
    grid-template-columns: 1fr;
  }

  .pdp_relatedGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .pdp {
    gap: 14px;
  }

  .pdp > .pdp_card:not(.pdp_card--embedded) {
    margin-inline: 4px;
  }

  .pdp_relatedGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pdp_variant {
    padding: 14px;
    gap: 12px;
  }

  .pdp_contentSection,
  .pdp_reviews,
  .pdp_related,
  .pdp_reviewCard {
    padding: 14px;
  }

  .pdp_actions {
    grid-template-columns: 1fr;
  }

  .pdp_btn {
    width: 100%;
  }

  .pdp_descMedia.is-expanded .pdp_descMediaGallery {
    grid-template-columns: 1fr;
  }

  .pdp_reviewsTrack {
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .product-tile__price_wrap {
    display: grid;
    gap: 0;
  }
}

/* Sticky bottom bar (mobile) */
.pdp_stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.1);
  display: none;
}

.pdp_stickybarInner {
  width: min(1250px, 100%);
  margin: 0 auto;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.pdp_stickyPrice {
  margin: 0;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.9);
}

.pdp_stickyVariant {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
  .pdp_stickybar {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-tile,
  .product-tile__media img {
    transition: none;
  }
}
