:root {
  --pdx-pink: #f4006f;
  --pdx-purple: #6d37f5;
  --pdx-ink: #211628;
  --pdx-muted: #736979;
  --pdx-line: rgba(37, 20, 45, 0.09);
  --pdx-soft: #f6f3f8;
  --pdx-green: #09a958;
  --pdx-shadow: 0 18px 50px rgba(45, 24, 58, 0.12);
}

.pdx-page,
.pdx-page * {
  box-sizing: border-box;
}

.pdx-page {
  min-height: 100dvh;
  color: var(--pdx-ink);
  background:
    radial-gradient(circle at 88% 2%, rgba(225, 255, 116, 0.32), transparent 20rem),
    #f5f2f7;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pdx-page button,
.pdx-page textarea {
  font: inherit;
}

.pdx-page button {
  -webkit-tap-highlight-color: transparent;
}

.pdx-nav {
  position: fixed;
  z-index: 80;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, calc((100vw - 1180px) / 2 + 16px));
  left: max(12px, calc((100vw - 1180px) / 2 + 16px));
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.pdx-glass-button,
.pdx-icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--pdx-ink);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 24px rgba(27, 16, 34, 0.13);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.pdx-glass-button {
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(22, 15, 26, 0.56);
  pointer-events: auto;
}

.pdx-glass-button svg,
.pdx-icon-button svg {
  width: 19px;
  height: 19px;
}

.pdx-layout {
  width: min(1180px, 100%);
  min-height: 100dvh;
  margin: 0 auto;
}

.pdx-media {
  position: relative;
  overflow: hidden;
  background: #ece8ef;
}

.pdx-gallery {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.pdx-gallery::-webkit-scrollbar {
  display: none;
}

.pdx-image-shell {
  position: relative;
  overflow: hidden;
  background: #ece8ef;
}

.pdx-gallery .pdx-image-shell {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  scroll-snap-align: center;
}

.pdx-image-shell img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.pdx-image-shell.is-loaded img,
.pdx-image-shell img[complete] {
  opacity: 1;
}

.pdx-image-skeleton {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pdx-skeleton {
  overflow: hidden;
  color: transparent !important;
  background: #e8e3eb;
}

.pdx-skeleton::after {
  position: absolute;
  inset: 0;
  content: "";
  translate: -100% 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.7) 48%, transparent 76%);
  animation: pdx-shimmer 1.15s infinite;
}

@keyframes pdx-shimmer {
  to { translate: 100% 0; }
}

.pdx-media-badges {
  position: absolute;
  z-index: 7;
  top: 68px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pdx-media-badge,
.pdx-gallery-count {
  padding: 6px 9px;
  color: white;
  border-radius: 10px;
  background: rgba(28, 17, 33, 0.72);
  box-shadow: 0 5px 14px rgba(24, 15, 29, 0.16);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 900;
}

.pdx-media-badge--discount { background: var(--pdx-pink); }
.pdx-media-badge--stock { background: #ef7b12; }
.pdx-media-badge--soldout { background: #7c6f82; }

.pdx-gallery-nav {
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.pdx-gallery-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transition: width 180ms ease, background 180ms ease;
}

.pdx-gallery-dot.is-active {
  width: 22px;
  background: white;
}

.pdx-gallery-count {
  position: absolute;
  z-index: 7;
  right: 14px;
  bottom: 13px;
}

.pdx-content {
  position: relative;
  z-index: 10;
  padding: 16px 16px calc(112px + env(safe-area-inset-bottom));
  background: white;
}

.pdx-store-pill {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 6px 9px 6px 6px;
  color: var(--pdx-ink);
  text-align: left;
  border: 1px solid var(--pdx-line);
  border-radius: 15px;
  background: #faf8fb;
  cursor: pointer;
}

.pdx-store-pill__logo {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
}

.pdx-store-pill > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.pdx-store-pill small,
.pdx-store-pill strong {
  display: block;
}

.pdx-store-pill small {
  color: var(--pdx-muted);
  font-size: 9px;
  font-weight: 700;
}

.pdx-store-pill strong {
  overflow: hidden;
  margin-top: 1px;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pdx-store-pill > svg {
  width: 17px;
  color: var(--pdx-purple);
}

.pdx-product-header h1 {
  margin: 0;
  font-family: "League Spartan", Inter, sans-serif;
  font-size: clamp(28px, 7vw, 40px);
  line-height: .98;
  letter-spacing: -.035em;
}

.pdx-product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
}

.pdx-rating-link,
.pdx-new-badge,
.pdx-meta-pill,
.pdx-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  color: var(--pdx-muted);
  border: 0;
  border-radius: 9px;
  background: var(--pdx-soft);
  font-size: 10px;
  font-weight: 800;
}

.pdx-rating-link { cursor: pointer; }
.pdx-rating-link > span { display: flex; color: #f5a400; }
.pdx-rating-link strong { color: var(--pdx-ink); }
.pdx-rating-link small { font-size: inherit; }
.pdx-new-badge { color: #6a28e7; background: #f0eafe; }
.pdx-meta-pill svg,
.pdx-new-badge svg,
.pdx-status svg { width: 13px; height: 13px; }
.pdx-meta-pill--love { color: #e00060; background: #fff0f6; }

.pdx-price {
  margin: 16px 0 12px;
}

.pdx-price__deal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  font-size: 10px;
}

.pdx-price__deal del { color: #9b919f; }
.pdx-price__deal span {
  padding: 3px 6px;
  color: #087d42;
  border-radius: 7px;
  background: #e8f9ef;
  font-weight: 900;
}

.pdx-price__main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: var(--pdx-ink);
}

.pdx-price__main small {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 900;
}

.pdx-price__main strong {
  font-family: "League Spartan", Inter, sans-serif;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}

.pdx-price > p {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0 0;
  color: var(--pdx-muted);
  font-size: 10px;
}

.pdx-price > p svg { width: 13px; }

.pdx-variants {
  margin: 12px 0;
  padding: 12px;
  border: 1px solid var(--pdx-line);
  border-radius: 15px;
  background: #fbfafc;
}

.pdx-variants > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pdx-variants h2 { margin: 0; font-size: 12px; }
.pdx-variants > div > span { color: var(--pdx-muted); font-size: 9px; }
.pdx-variant-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 9px; }

.pdx-variant {
  min-height: 34px;
  padding: 6px 11px;
  color: var(--pdx-ink);
  border: 1px solid var(--pdx-line);
  border-radius: 10px;
  background: white;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.pdx-variant.is-active {
  color: white;
  border-color: var(--pdx-purple);
  background: var(--pdx-purple);
  box-shadow: 0 6px 16px rgba(109,55,245,.23);
}

.pdx-status-row { margin: 10px 0; }
.pdx-status { min-height: 30px; }
.pdx-status--success { color: #087d42; background: #eaf9f0; }
.pdx-status--warning { color: #a75000; background: #fff1df; }
.pdx-status--danger { color: #bb204c; background: #ffedf3; }

.pdx-disclosures {
  border-top: 1px solid var(--pdx-line);
}

.pdx-disclosure {
  border-bottom: 1px solid var(--pdx-line);
}

.pdx-disclosure summary {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  list-style: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.pdx-disclosure summary::-webkit-details-marker { display: none; }
.pdx-disclosure summary span { display: flex; align-items: center; gap: 8px; }
.pdx-disclosure summary svg { width: 16px; height: 16px; color: var(--pdx-purple); }
.pdx-disclosure summary > svg { color: var(--pdx-muted); transition: rotate 180ms ease; }
.pdx-disclosure[open] summary > svg { rotate: 180deg; }
.pdx-disclosure__body { padding: 0 0 14px; color: var(--pdx-muted); font-size: 12px; line-height: 1.55; }
.pdx-disclosure__body p { margin: 0; white-space: pre-line; }

.pdx-facts { display: grid; gap: 8px; }
.pdx-facts > p { display: flex; gap: 9px; align-items: flex-start; }
.pdx-facts > p > svg { flex: 0 0 16px; width: 16px; color: var(--pdx-purple); }
.pdx-facts small,
.pdx-facts strong { display: block; }
.pdx-facts small { font-size: 9px; }
.pdx-facts strong { margin-top: 1px; color: var(--pdx-ink); font-size: 11px; }

.pdx-seller {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid var(--pdx-line);
  border-radius: 17px;
  background: #faf8fb;
}

.pdx-seller__logo { width: 48px; height: 48px; border-radius: 15px; }
.pdx-seller__copy { min-width: 0; }
.pdx-seller__copy small { color: var(--pdx-muted); font-size: 9px; }
.pdx-seller__copy h2 { overflow: hidden; margin: 1px 0; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.pdx-seller__copy p { margin: 0; color: var(--pdx-muted); font-size: 9px; }
.pdx-seller__actions { display: flex; gap: 5px; }
.pdx-seller__actions .pdx-icon-button { width: 35px; height: 35px; border-radius: 11px; box-shadow: none; }
.pdx-icon-button--whatsapp { color: white; border-color: #0ab860; background: #0ab860; }

.pdx-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 13px;
  border: 0;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.pdx-button svg { width: 16px; height: 16px; }
.pdx-button--primary { color: white; background: linear-gradient(135deg, var(--pdx-pink), #ff3562); box-shadow: 0 9px 22px rgba(244,0,111,.22); }
.pdx-button--soft { color: var(--pdx-purple); background: #eee8ff; }
.pdx-button--ghost { color: var(--pdx-muted); background: transparent; }

.pdx-reviews {
  margin-top: 14px;
  border: 1px solid var(--pdx-line);
  border-radius: 17px;
  background: white;
}

.pdx-reviews > summary {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  list-style: none;
  cursor: pointer;
}

.pdx-reviews > summary::-webkit-details-marker { display: none; }
.pdx-reviews > summary small,
.pdx-reviews > summary strong { display: block; }
.pdx-reviews > summary small { color: var(--pdx-purple); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.pdx-reviews > summary strong { margin-top: 2px; font-size: 13px; }
.pdx-reviews__summary-rating { display: flex; align-items: center; gap: 5px; color: #f3a400; }
.pdx-reviews__summary-rating b { color: var(--pdx-ink); font-size: 11px; }
.pdx-reviews__summary-rating svg { width: 13px; }
.pdx-reviews__summary-rating > svg:last-child { margin-left: 3px; color: var(--pdx-muted); transition: rotate 180ms ease; }
.pdx-reviews[open] .pdx-reviews__summary-rating > svg:last-child { rotate: 180deg; }
.pdx-reviews__body { padding: 0 12px 12px; border-top: 1px solid var(--pdx-line); }

.pdx-rating-card { display: grid; grid-template-columns: 92px 1fr; gap: 14px; margin: 12px 0; padding: 12px; border-radius: 14px; background: var(--pdx-soft); }
.pdx-rating-card > div:first-child { text-align: center; }
.pdx-rating-card > div:first-child strong { display: block; font-size: 34px; line-height: 1; }
.pdx-rating-card > div:first-child span { display: flex; justify-content: center; margin: 4px 0; color: #f3a400; }
.pdx-rating-card > div:first-child small { color: var(--pdx-muted); font-size: 8px; }
.pdx-rating-bars { display: grid; gap: 3px; }
.pdx-rating-bars p { display: grid; grid-template-columns: 10px 1fr 28px; align-items: center; gap: 5px; margin: 0; font-size: 8px; }
.pdx-rating-bars p > span { overflow: hidden; height: 4px; border-radius: 9px; background: #ded8e2; }
.pdx-rating-bars p i { display: block; width: var(--pdx-rating-width); height: 100%; border-radius: inherit; background: #f3a400; }
.pdx-rating-bars em { color: var(--pdx-muted); font-style: normal; text-align: right; }

.pdx-review-form { margin: 12px 0; padding: 14px; border-radius: 15px; background: linear-gradient(145deg, #f2edff, #fff1f7); }
.pdx-kicker { margin: 0 0 3px; color: var(--pdx-purple); font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.pdx-review-form h3 { margin: 0 0 8px; font-size: 16px; }
.pdx-star-input { display: flex; gap: 4px; }
.pdx-star-button { display: grid; width: 36px; height: 36px; padding: 0; place-items: center; color: #c8becd; border: 0; border-radius: 10px; background: white; cursor: pointer; }
.pdx-star-button svg { width: 21px; }
.pdx-star-button.is-active { color: #f3a400; background: #fff7dc; }
.pdx-star-button.is-active svg { fill: currentColor; }
.pdx-rating-reaction { margin: 7px 0; color: var(--pdx-muted); font-size: 9px; font-weight: 700; }
.pdx-sentiments { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.pdx-sentiments button { padding: 6px 8px; color: var(--pdx-muted); border: 1px solid var(--pdx-line); border-radius: 9px; background: white; font-size: 9px; cursor: pointer; }
.pdx-sentiments button.is-active { color: white; border-color: var(--pdx-purple); background: var(--pdx-purple); }
.pdx-review-form label { display: block; margin: 0 0 5px; font-size: 10px; font-weight: 800; }
.pdx-review-form textarea { width: 100%; min-height: 80px; padding: 10px; resize: vertical; color: var(--pdx-ink); border: 1px solid var(--pdx-line); border-radius: 11px; outline: 0; background: white; font-size: 11px; }
.pdx-review-form textarea:focus { border-color: var(--pdx-purple); box-shadow: 0 0 0 3px rgba(109,55,245,.1); }
.pdx-review-form .pdx-button { width: 100%; margin-top: 8px; }

.pdx-review-list { display: grid; gap: 8px; }
.pdx-review { padding: 12px; border: 1px solid var(--pdx-line); border-radius: 14px; }
.pdx-review__header { display: flex; align-items: center; gap: 8px; }
.pdx-review__avatar { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; overflow: hidden; border-radius: 10px; background: var(--pdx-soft); }
.pdx-review__avatar img { opacity: 1; object-fit: cover; }
.pdx-review__person { min-width: 0; flex: 1; }
.pdx-review__person strong,
.pdx-review__person small { display: block; }
.pdx-review__person strong { font-size: 11px; }
.pdx-review__person small { margin-top: 1px; color: var(--pdx-muted); font-size: 8px; }
.pdx-review__header .pdx-icon-button { width: 30px; height: 30px; border-radius: 9px; box-shadow: none; }
.pdx-icon-button--danger { color: #d42b5a; }
.pdx-review__rating { display: flex; margin-top: 7px; color: #f3a400; }
.pdx-review__tag { display: inline-block; margin-top: 6px; padding: 4px 6px; color: var(--pdx-purple); border-radius: 7px; background: #f0eaff; font-size: 8px; font-weight: 800; }
.pdx-review > p { margin: 7px 0 0; color: var(--pdx-muted); font-size: 11px; line-height: 1.5; }
.pdx-review__reply { margin-top: 8px; padding: 9px; border-radius: 10px; background: var(--pdx-soft); }
.pdx-review__reply strong { display: flex; align-items: center; gap: 4px; font-size: 9px; }
.pdx-review__reply svg { width: 12px; }
.pdx-review__reply p { margin: 4px 0 0; color: var(--pdx-muted); font-size: 10px; }
.pdx-empty-reviews { padding: 20px 8px; color: var(--pdx-muted); text-align: center; }
.pdx-empty-reviews svg { width: 28px; color: var(--pdx-purple); }
.pdx-empty-reviews strong { display: block; margin-top: 4px; color: var(--pdx-ink); font-size: 11px; }
.pdx-empty-reviews p { margin: 3px 0 0; font-size: 9px; }

.pdx-buybar {
  position: fixed;
  z-index: 70;
  right: max(8px, calc((100vw - 700px) / 2));
  bottom: max(8px, env(safe-area-inset-bottom));
  left: max(8px, calc((100vw - 700px) / 2));
  display: grid;
  grid-template-columns: 42px minmax(72px, 1fr) minmax(112px, 1.35fr) 42px;
  min-height: 60px;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 19px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 40px rgba(30, 17, 38, .2);
  backdrop-filter: blur(20px);
}

.pdx-buybar__icon {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--pdx-ink);
  border: 0;
  border-radius: 13px;
  background: var(--pdx-soft);
  cursor: pointer;
}

.pdx-buybar__icon svg { width: 18px; }
.pdx-buybar__icon.is-active { color: white; background: var(--pdx-pink); }
.pdx-buybar__icon.is-active svg { fill: currentColor; }
.pdx-buybar__icon--whatsapp { color: white; background: #0ab860; }
.pdx-buybar__price { min-width: 0; padding-left: 2px; }
.pdx-buybar__price small,
.pdx-buybar__price strong,
.pdx-buybar__price em { display: block; }
.pdx-buybar__price small { color: var(--pdx-muted); font-size: 8px; }
.pdx-buybar__price strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.pdx-buybar__price em { min-height: 10px; color: var(--pdx-purple); font-size: 7px; font-style: normal; font-weight: 800; }
.pdx-buybar__primary { display: flex; min-width: 0; height: 46px; align-items: center; justify-content: center; gap: 7px; padding: 7px 10px; color: white; border: 0; border-radius: 14px; background: linear-gradient(135deg, var(--pdx-pink), #ff345f); box-shadow: 0 8px 20px rgba(244,0,111,.25); font-size: 11px; font-weight: 900; cursor: pointer; }
.pdx-buybar__primary svg { width: 17px; }
.pdx-buybar__primary:disabled { color: #9f95a3; background: #e6e1e8; box-shadow: none; cursor: not-allowed; }

.pdx-state,
.pdx-page--loading {
  min-height: 100dvh;
  padding: 20px;
  background: #f5f2f7;
}

.pdx-state { display: grid; align-content: center; justify-items: center; text-align: center; }
.pdx-state__icon { display: grid; width: 64px; height: 64px; place-items: center; margin-bottom: 12px; color: var(--pdx-purple); border-radius: 22px; background: #ece5ff; }
.pdx-state h1 { max-width: 380px; margin: 3px 0; font-size: 24px; }
.pdx-state > p:not(.pdx-kicker) { max-width: 380px; margin: 4px 0 16px; color: var(--pdx-muted); font-size: 12px; }
.pdx-loading-media { position: relative; height: 46dvh; border-radius: 0 0 24px 24px; }
.pdx-loading-sheet { position: relative; z-index: 2; display: grid; gap: 10px; margin: -18px -4px 0; padding: 22px 16px; border-radius: 24px 24px 0 0; background: white; }
.pdx-loading-sheet > span { position: relative; display: block; border-radius: 9px; }
.pdx-loading-pill { width: 44%; height: 40px; }
.pdx-loading-title { width: 86%; height: 27px; }
.pdx-loading-title--short { width: 60%; }
.pdx-loading-price { width: 38%; height: 40px; }
.pdx-loading-button { width: 100%; height: 54px; }

.pdx-modal-open { overflow: hidden; }
.pdx-reward,
.pdx-booking { position: fixed; z-index: 10000; inset: 0; display: grid; place-items: end center; }
.pdx-reward__backdrop,
.pdx-booking__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: rgba(23,14,28,.62); backdrop-filter: blur(5px); }
.pdx-reward__card,
.pdx-booking__sheet { position: relative; z-index: 2; width: min(520px, 100%); max-height: 92dvh; overflow-y: auto; padding: 22px 18px max(20px, env(safe-area-inset-bottom)); border-radius: 26px 26px 0 0; background: white; box-shadow: 0 -20px 60px rgba(20,10,26,.24); }
.pdx-reward__card { text-align: center; }
.pdx-reward__icon { display: grid; width: 62px; height: 62px; place-items: center; margin: 0 auto 10px; color: #b66a00; border-radius: 21px; background: #fff0b6; }
.pdx-reward__card h2 { margin: 4px 0 8px; }
.pdx-reward__card > p:not(.pdx-kicker) { color: var(--pdx-muted); font-size: 12px; line-height: 1.5; }
.pdx-reward__coupon { display: grid; gap: 5px; margin: 14px 0; padding: 14px; border: 2px dashed #e3a521; border-radius: 15px; background: #fff9e7; }
.pdx-reward__coupon strong { font-size: 18px; }
.pdx-reward__coupon code { color: var(--pdx-purple); font-size: 15px; font-weight: 900; }
.pdx-reward__card .pdx-button { width: 100%; margin-top: 7px; }
.pdx-confetti { position: fixed; z-index: 3; top: -20px; left: var(--pdx-confetti-x); width: 7px; height: 13px; border-radius: 2px; background: var(--pdx-confetti-color); animation: pdx-confetti-fall 2.4s var(--pdx-confetti-delay) ease-in forwards; }
@keyframes pdx-confetti-fall { to { translate: 0 110dvh; rotate: 680deg; } }

.pdx-booking__handle { display: block; width: 42px; height: 4px; margin: -8px auto 14px; border-radius: 9px; background: #d7d0da; }
.pdx-booking__sheet > header { display: flex; justify-content: space-between; gap: 10px; }
.pdx-booking__sheet > header h2 { margin: 3px 0; font-size: 21px; }
.pdx-booking__sheet > header > div > span { display: flex; align-items: center; gap: 5px; color: var(--pdx-muted); font-size: 10px; }
.pdx-booking__sheet > header > div > span svg { width: 13px; }
.pdx-booking__group { margin-top: 18px; }
.pdx-booking__group h3 { display: flex; align-items: center; gap: 7px; margin: 0 0 9px; font-size: 12px; }
.pdx-booking__group h3 span { display: grid; width: 22px; height: 22px; place-items: center; color: white; border-radius: 8px; background: var(--pdx-purple); font-size: 10px; }
.pdx-booking__dates { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.pdx-booking__dates button { display: grid; flex: 0 0 60px; min-height: 76px; place-items: center; padding: 7px 4px; color: var(--pdx-muted); border: 1px solid var(--pdx-line); border-radius: 13px; background: white; cursor: pointer; }
.pdx-booking__dates small { font-size: 8px; }
.pdx-booking__dates strong { color: var(--pdx-ink); font-size: 20px; }
.pdx-booking__dates em { font-size: 8px; font-style: normal; }
.pdx-booking__dates button.is-active { color: white; border-color: var(--pdx-purple); background: var(--pdx-purple); }
.pdx-booking__dates button.is-active strong { color: white; }
.pdx-booking__times { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.pdx-booking__times button { min-height: 38px; color: var(--pdx-ink); border: 1px solid var(--pdx-line); border-radius: 10px; background: white; font-size: 10px; font-weight: 800; cursor: pointer; }
.pdx-booking__times button.is-active { color: white; border-color: var(--pdx-purple); background: var(--pdx-purple); }
.pdx-booking__confirm { width: 100%; margin-top: 18px; }
.pdx-copy-fallback { position: fixed; left: -9999px; }

@media (max-width: 699px) {
  .pdx-media { height: min(76vw, 300px); }
  .pdx-content { margin-top: -18px; border-radius: 23px 23px 0 0; }
  .pdx-seller { grid-template-columns: 44px minmax(0, 1fr); }
  .pdx-seller__logo { width: 44px; height: 44px; }
  .pdx-seller__actions { grid-column: 1 / -1; }
  .pdx-seller__actions .pdx-button { min-width: 0; flex: 1; }
}

@media (max-width: 370px) {
  .pdx-content { padding-inline: 12px; }
  .pdx-buybar { grid-template-columns: 38px minmax(58px, .8fr) minmax(102px, 1.35fr) 38px; gap: 4px; }
  .pdx-buybar__icon { width: 38px; height: 40px; }
  .pdx-buybar__primary { padding-inline: 6px; font-size: 10px; }
  .pdx-product-header h1 { font-size: 27px; }
}

@media (min-width: 700px) {
  .pdx-page { padding: 22px; }
  .pdx-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr); min-height: calc(100dvh - 44px); overflow: hidden; border-radius: 28px; background: white; box-shadow: var(--pdx-shadow); }
  .pdx-media { position: sticky; top: 22px; height: calc(100dvh - 44px); min-height: 600px; }
  .pdx-content { min-height: 100%; padding: 76px 30px 120px; }
  .pdx-nav { top: 38px; }
  .pdx-buybar { right: max(24px, calc((100vw - 1180px) / 2 + 26px)); left: auto; width: min(500px, calc(50vw - 52px)); }
  .pdx-loading-media { height: calc(100dvh - 44px); }
}

@media (min-width: 1100px) {
  .pdx-content { padding-inline: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .pdx-page *,
  .pdx-page *::before,
  .pdx-page *::after,
  .pdx-reward *,
  .pdx-booking * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
