.pbs-pro-root,
.pbs-pro-root * {
  box-sizing: border-box;
}

.pbs-pro-app {
  --pbs-accent: #1d4ed8;
  --pbs-accent-dark: #1e40af;
  --pbs-surface: #ffffff;
  --pbs-surface-alt: #f8fafc;
  --pbs-text: #0f172a;
  --pbs-muted: #64748b;
  --pbs-border: #e2e8f0;
  --pbs-danger: #dc2626;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pbs-text);
}

.pbs-pro-theme-classic {
  --pbs-accent: #1d4ed8;
  --pbs-accent-dark: #1e40af;
  --pbs-surface-alt: #eff6ff;
}

.pbs-pro-theme-sunset {
  --pbs-accent: #ea580c;
  --pbs-accent-dark: #c2410c;
  --pbs-surface-alt: #fff7ed;
}

.pbs-pro-theme-emerald {
  --pbs-accent: #059669;
  --pbs-accent-dark: #047857;
  --pbs-surface-alt: #ecfdf5;
}

.pbs-pro-theme-midnight {
  --pbs-accent: #8b5cf6;
  --pbs-accent-dark: #6d28d9;
  --pbs-surface: #0f172a;
  --pbs-surface-alt: #111827;
  --pbs-text: #f8fafc;
  --pbs-muted: #cbd5e1;
  --pbs-border: #334155;
}

.pbs-pro-shell {
  width: min(1200px, calc(100vw - 24px));
  margin: 0 auto;
}

.pbs-pro-toolbar,
.pbs-pro-panel,
.pbs-pro-card,
.pbs-pro-cart-layout > .pbs-pro-box,
.pbs-pro-total-box,
.pbs-pro-header,
.pbs-pro-footer,
.pbs-pro-modal-card,
.pbs-pro-lightbox-card {
  background: var(--pbs-surface);
  border: 1px solid var(--pbs-border);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pbs-pro-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.pbs-pro-toolbar h2,
.pbs-pro-header h1,
.pbs-pro-title,
.pbs-pro-box h3,
.pbs-pro-total-box h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.pbs-pro-muted {
  color: var(--pbs-muted);
  font-size: 13px;
}

.pbs-pro-button,
.pbs-pro-link-button,
.pbs-pro-chip,
.pbs-pro-mini-button,
.pbs-pro-currency-btn,
.pbs-pro-cart-button {
  border: 1px solid var(--pbs-border);
  border-radius: 999px;
  background: var(--pbs-surface);
  color: var(--pbs-text);
  cursor: pointer;
  transition: 0.18s ease;
  font: inherit;
}

.pbs-pro-button,
.pbs-pro-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
}

.pbs-pro-button:hover,
.pbs-pro-link-button:hover,
.pbs-pro-chip:hover,
.pbs-pro-mini-button:hover,
.pbs-pro-currency-btn:hover,
.pbs-pro-cart-button:hover {
  transform: translateY(-1px);
  border-color: var(--pbs-accent);
}

.pbs-pro-button.is-primary,
.pbs-pro-link-button.is-primary,
.pbs-pro-cart-button {
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark));
  border-color: transparent;
  color: #fff;
}

.pbs-pro-mini-button {
  padding: 6px 10px;
  font-size: 12px;
}

.pbs-pro-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--pbs-surface-alt);
  border: 1px solid var(--pbs-border);
  border-radius: 14px;
  margin-bottom: 14px;
}

.pbs-pro-search input,
.pbs-pro-field input,
.pbs-pro-field textarea,
.pbs-pro-field select {
  width: 100%;
  border: 1px solid var(--pbs-border);
  border-radius: 14px;
  padding: 11px 12px;
  background: var(--pbs-surface);
  color: var(--pbs-text);
}

.pbs-pro-search input {
  border: none;
  background: transparent;
  padding: 0;
}

.pbs-pro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px) {
  .pbs-pro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pbs-pro-shell {
    width: min(100vw - 16px, 1200px);
  }

  .pbs-pro-grid {
    grid-template-columns: 1fr;
  }

  .pbs-pro-toolbar {
    flex-wrap: wrap;
    align-items: stretch;
  }
}

.pbs-pro-card {
  overflow: hidden;
  position: relative;
}

.pbs-pro-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--pbs-surface-alt);
}

.pbs-pro-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pbs-pro-card-body {
  padding: 16px;
}

.pbs-pro-card-subtitle {
  color: var(--pbs-muted);
  font-size: 13px;
  margin: 8px 0 0;
}

.pbs-pro-price-row {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 14px 0 8px;
  flex-wrap: wrap;
}

.pbs-pro-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--pbs-accent);
}

.pbs-pro-price-was {
  font-size: 13px;
  color: var(--pbs-muted);
  text-decoration: line-through;
}

.pbs-pro-meta-row,
.pbs-pro-card-actions,
.pbs-pro-pay-list,
.pbs-pro-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pbs-pro-chip {
  padding: 8px 12px;
  font-size: 13px;
}

.pbs-pro-chip.is-active {
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark));
  color: #fff;
  border-color: transparent;
}

.pbs-pro-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
}

.pbs-pro-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

@media (max-width: 980px) {
  .pbs-pro-cart-layout {
    grid-template-columns: 1fr;
  }
}

.pbs-pro-box {
  padding: 16px;
}

.pbs-pro-cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--pbs-border);
}

@media (max-width: 680px) {
  .pbs-pro-cart-item {
    grid-template-columns: 72px 1fr;
  }

  .pbs-pro-cart-item > :last-child {
    grid-column: span 2;
  }
}

.pbs-pro-cart-item img {
  width: 88px;
  height: 70px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--pbs-border);
  background: var(--pbs-surface-alt);
}

.pbs-pro-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.pbs-pro-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pbs-pro-qty input {
  width: 56px;
  text-align: center;
}

.pbs-pro-total-box {
  padding: 16px;
  position: sticky;
  top: 16px;
}

.pbs-pro-total-box .pbs-pro-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.pbs-pro-total-box .pbs-pro-summary-row strong {
  font-size: 16px;
}

.pbs-pro-field {
  margin-bottom: 12px;
}

.pbs-pro-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
}

.pbs-pro-field small {
  display: block;
  margin-top: 5px;
  color: var(--pbs-muted);
}

.pbs-pro-field textarea {
  min-height: 90px;
}

.pbs-pro-payments-wrap {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--pbs-border);
  display: grid;
  gap: 12px;
}

.pbs-pro-pay-option {
  border: 1px solid var(--pbs-border);
  border-radius: 16px;
  padding: 14px;
  background: var(--pbs-surface-alt);
}

.pbs-pro-pay-option.is-active {
  border-color: var(--pbs-accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.pbs-pro-pay-option label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pbs-pro-pay-details {
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--pbs-border);
  color: var(--pbs-muted);
  font-size: 13px;
}

.pbs-pro-pay-option.is-active .pbs-pro-pay-details {
  display: block;
}

.pbs-pro-alert {
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.08);
  color: var(--pbs-text);
  padding: 10px 12px;
  border-radius: 14px;
  margin: 12px 0;
  font-size: 13px;
}

.pbs-pro-modal,
.pbs-pro-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.6);
  z-index: 2147483640;
}

.pbs-pro-modal-card {
  width: min(980px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

@media (max-width: 900px) {
  .pbs-pro-modal-card {
    grid-template-columns: 1fr;
  }
}

.pbs-pro-modal-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: contain;
  border: 1px solid var(--pbs-border);
  background: var(--pbs-surface-alt);
}

.pbs-pro-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pbs-pro-thumbs img {
  width: 70px;
  height: 54px;
  border-radius: 10px;
  border: 1px solid var(--pbs-border);
  object-fit: cover;
}

.pbs-pro-modal-content h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
}

.pbs-pro-description-wrap {
  display: grid;
  gap: 10px;
}

.pbs-pro-description {
  color: var(--pbs-muted);
  line-height: 1.65;
  font-size: 14px;
  overflow: hidden;
}

.pbs-pro-description.is-collapsed {
  max-height: 148px;
  position: relative;
}

.pbs-pro-description.is-collapsed::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--pbs-modal-panel, #f8fbff));
  pointer-events: none;
}

.pbs-pro-description.is-expanded {
  max-height: none;
}

.pbs-pro-description-toggle {
  justify-self: flex-start;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.pbs-pro-modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pbs-pro-lightbox-card {
  width: min(900px, 100%);
  max-height: calc(100vh - 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
}

.pbs-pro-lightbox-card img {
  max-width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
}

.pbs-pro-close,
.pbs-pro-nav {
  position: absolute;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #fff;
  cursor: pointer;
}

.pbs-pro-close {
  top: 12px;
  right: 12px;
}

.pbs-pro-nav.prev {
  left: 12px;
}

.pbs-pro-nav.next {
  right: 12px;
}

.pbs-pro-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2147483645;
}

.pbs-pro-overlay.is-open {
  display: flex;
}

.pbs-pro-overlay-card {
  background: #fff;
  color: #111827;
  border-radius: 18px;
  padding: 20px;
  min-width: 280px;
  text-align: center;
}

.pbs-pro-spinner {
  width: 42px;
  height: 42px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--pbs-accent);
  border-radius: 999px;
  margin: 0 auto 12px;
  animation: pbs-spin 0.8s linear infinite;
}

@keyframes pbs-spin {
  to { transform: rotate(360deg); }
}

.pbs-pro-inline-total {
  margin-top: 10px;
}

.pbs-pro-checkout-total-card {
  padding: 14px;
  border: 1px solid var(--pbs-border);
  border-radius: 14px;
  background: var(--pbs-surface-alt);
}

.pbs-pro-header,
.pbs-pro-footer {
  padding: 18px 20px;
  border: 1px solid transparent;
  border-radius: 22px;
}

.pbs-pro-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  background: var(--pbs-header-bg, var(--pbs-surface));
  color: var(--pbs-header-text, var(--pbs-text));
  border-color: var(--pbs-header-border, var(--pbs-border));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.pbs-pro-header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--pbs-header-text, var(--pbs-text));
  min-width: 220px;
}

.pbs-pro-header-brand h1 {
  margin: 0;
  font-size: 20px;
  color: inherit;
}

.pbs-pro-header-brand .pbs-pro-muted {
  color: color-mix(in srgb, var(--pbs-header-text, var(--pbs-text)) 68%, white 32%);
}

.pbs-pro-header-brand img {
  max-height: 46px;
  width: auto;
}

.pbs-pro-header-nav,
.pbs-pro-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pbs-pro-nav-link,
.pbs-pro-action-button,
.pbs-pro-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: .18s ease;
}

.pbs-pro-nav-link {
  color: var(--pbs-header-text, var(--pbs-text));
  background: rgba(255,255,255,.45);
  border: 1px solid var(--pbs-header-border, var(--pbs-border));
}

.pbs-pro-nav-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.pbs-pro-action-button,
.pbs-pro-cart-button {
  font-weight: 700;
  border: 1px solid var(--pbs-header-border, var(--pbs-border));
}

.pbs-pro-action-button.is-primary,
.pbs-pro-cart-button {
  background: var(--pbs-header-button, var(--pbs-accent));
  color: var(--pbs-header-button-text, #fff);
}

.pbs-pro-action-button.is-secondary {
  background: rgba(255,255,255,.72);
  color: var(--pbs-header-text, var(--pbs-text));
}

.pbs-pro-action-button.is-ghost {
  background: transparent;
  color: var(--pbs-header-text, var(--pbs-text));
}

.pbs-pro-footer {
  background: var(--pbs-footer-bg, #0f172a);
  color: var(--pbs-footer-text, #cbd5e1);
  border-color: var(--pbs-footer-border, #1e293b);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.pbs-pro-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pbs-pro-footer-copy {
  line-height: 1.7;
}

.pbs-pro-footer-menu {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.pbs-pro-footer-menu a {
  color: var(--pbs-footer-link, #fff);
  text-decoration: none;
}

.pbs-pro-footer-menu a:hover {
  text-decoration: underline;
}

.pbs-pro-hidden {
  display: none !important;
}


body.pbs-pro-no-scroll {
  overflow: hidden;
}

.pbs-pro-modal {
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0.72));
  backdrop-filter: blur(14px) saturate(1.04);
  z-index: 2147483642;
}

.pbs-pro-modal.is-leaving,
.pbs-pro-lightbox.is-leaving,
.pbs-pro-notice-layer.is-leaving,
.pbs-pro-toast-item.is-leaving {
  opacity: 0;
}

.pbs-pro-lightbox {
  background:
    radial-gradient(circle at center, rgba(59, 130, 246, 0.10), transparent 30%),
    rgba(2, 6, 23, 0.88);
  backdrop-filter: blur(12px) saturate(1.02);
  z-index: 2147483644;
}

.pbs-pro-modal-card {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(90vh, 980px);
  padding: 24px;
  gap: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow: 0 38px 120px rgba(2, 6, 23, 0.34);
  overflow: auto;
}

.pbs-pro-modal-card::before,
.pbs-pro-lightbox-card::before,
.pbs-pro-notice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255,255,255,0.34), transparent 34%);
}

.pbs-pro-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  z-index: 3;
}

.pbs-pro-modal-gallery {
  display: grid;
  gap: 14px;
  align-content: start;
}

.pbs-pro-media-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  border: 1px solid rgba(219, 234, 254, 0.9);
}

.pbs-pro-main-media,
.pbs-pro-modal-gallery img {
  width: 100%;
  max-height: 420px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

.pbs-pro-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pbs-pro-thumb-button {
  border: 1px solid rgba(226, 232, 240, 0.96);
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease;
}

.pbs-pro-thumb-button:hover,
.pbs-pro-thumb-button.is-active {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.14);
}

.pbs-pro-thumb-button img,
.pbs-pro-thumbs img {
  width: 78px;
  height: 62px;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.pbs-pro-modal-content {
  padding-top: 8px;
}

.pbs-pro-modal-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.pbs-pro-modal-topbar h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pbs-pro-modal-subtitle {
  margin-top: 8px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.55;
}

.pbs-pro-modal-price {
  white-space: nowrap;
  font-size: 30px;
  font-weight: 900;
  color: var(--pbs-accent);
}

.pbs-pro-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pbs-pro-option-block {
  margin-top: 16px;
}

.pbs-pro-option-label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.pbs-pro-description {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 14px 15px;
  color: #475569;
}

.pbs-pro-alert.is-soft {
  margin-top: 14px;
  background: linear-gradient(180deg, rgba(37,99,235,0.08), rgba(37,99,235,0.04));
  border-color: rgba(37,99,235,0.18);
}

.pbs-pro-modal-actions {
  position: sticky;
  bottom: -2px;
  padding-top: 16px;
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(248,250,252,0), rgba(248,250,252,0.98) 35%);
}

.pbs-pro-lightbox-card {
  position: relative;
  width: min(1080px, 100%);
  padding: 22px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow: 0 38px 120px rgba(2, 6, 23, 0.44);
}

.pbs-pro-lightbox-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f172a, #111827);
}

.pbs-pro-lightbox-card img {
  max-width: 100%;
  max-height: calc(78vh - 44px);
  border-radius: 18px;
  background: #fff;
}

.pbs-pro-close,
.pbs-pro-nav {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(10px);
}

.pbs-pro-toast-stack {
  position: fixed;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2147483646;
}

.pbs-pro-toast-item {
  min-width: 290px;
  max-width: min(420px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.54);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.18);
  transition: opacity .18s ease, transform .18s ease;
}

.pbs-pro-toast-item.is-success { border-color: rgba(16, 185, 129, 0.25); }
.pbs-pro-toast-item.is-error { border-color: rgba(239, 68, 68, 0.25); }
.pbs-pro-toast-item.is-warning { border-color: rgba(245, 158, 11, 0.25); }
.pbs-pro-toast-item.is-info { border-color: rgba(59, 130, 246, 0.25); }

.pbs-pro-toast-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark));
}

.pbs-pro-toast-item.is-success .pbs-pro-toast-icon { background: linear-gradient(135deg, #10b981, #059669); }
.pbs-pro-toast-item.is-error .pbs-pro-toast-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pbs-pro-toast-item.is-warning .pbs-pro-toast-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

.pbs-pro-toast-copy {
  display: grid;
  gap: 4px;
}

.pbs-pro-toast-copy strong {
  font-size: 14px;
}

.pbs-pro-toast-copy span {
  color: #475569;
  line-height: 1.55;
  font-size: 13px;
}

.pbs-pro-toast-close {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(226,232,240,0.95);
  border-radius: 999px;
  background: #fff;
  color: #64748b;
  cursor: pointer;
}

.pbs-pro-notice-layer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(12px);
  z-index: 2147483646;
  transition: opacity .18s ease;
}

.pbs-pro-notice-card {
  position: relative;
  width: min(460px, calc(100vw - 32px));
  padding: 24px 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.56);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.32);
  text-align: center;
}

.pbs-pro-notice-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(226,232,240,0.95);
  background: #fff;
  color: #64748b;
  cursor: pointer;
}

.pbs-pro-notice-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark));
}

.pbs-pro-notice-card.is-success .pbs-pro-notice-icon { background: linear-gradient(135deg, #10b981, #059669); }
.pbs-pro-notice-card.is-error .pbs-pro-notice-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.pbs-pro-notice-card.is-warning .pbs-pro-notice-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }

.pbs-pro-notice-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
}

.pbs-pro-notice-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.pbs-pro-notice-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .pbs-pro-modal-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .pbs-pro-modal-topbar {
    flex-direction: column;
  }

  .pbs-pro-modal-price {
    font-size: 24px;
  }

  .pbs-pro-media-frame {
    min-height: 260px;
  }

  .pbs-pro-lightbox-card {
    padding: 16px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .pbs-pro-toast-stack {
    top: auto;
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .pbs-pro-toast-item {
    min-width: 0;
    max-width: none;
  }

  .pbs-pro-modal,
  .pbs-pro-lightbox,
  .pbs-pro-notice-layer {
    padding: 12px;
  }

  .pbs-pro-modal-card,
  .pbs-pro-notice-card {
    border-radius: 22px;
  }

  .pbs-pro-nav.prev { left: 6px; }
  .pbs-pro-nav.next { right: 6px; }
}


/* === 3.2.1 UI polish: solid modal surfaces, clearer action buttons, premium notices === */
.pbs-pro-button.is-soft,
.pbs-pro-link-button.is-soft {
  background: #f8fafc;
  border-color: #dbe3ef;
  color: #0f172a;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.pbs-pro-button.is-ghost,
.pbs-pro-link-button.is-ghost {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #334155;
}

.pbs-pro-button.is-soft:hover,
.pbs-pro-link-button.is-soft:hover,
.pbs-pro-button.is-ghost:hover,
.pbs-pro-link-button.is-ghost:hover {
  background: #ffffff;
  border-color: var(--pbs-accent);
  color: #0f172a;
}

.pbs-pro-modal,
.pbs-pro-lightbox,
.pbs-pro-notice-layer {
  backdrop-filter: none !important;
}

.pbs-pro-modal {
  background: rgba(2, 6, 23, 0.78) !important;
}

.pbs-pro-lightbox {
  background: rgba(2, 6, 23, 0.92) !important;
}

.pbs-pro-notice-layer {
  background: rgba(2, 6, 23, 0.72) !important;
}

.pbs-pro-modal-card,
.pbs-pro-lightbox-card,
.pbs-pro-notice-card,
.pbs-pro-toast-item {
  border: 1px solid rgba(226, 232, 240, 0.98) !important;
  background: #ffffff !important;
}

.pbs-pro-modal-card::before,
.pbs-pro-lightbox-card::before,
.pbs-pro-notice-card::before {
  content: none !important;
}

.pbs-pro-modal-card {
  border-radius: 30px;
  box-shadow: 0 42px 110px rgba(2, 6, 23, 0.36) !important;
}

.pbs-pro-media-frame {
  min-height: 380px;
  padding: 18px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.pbs-pro-main-media,
.pbs-pro-modal-gallery img {
  background: #ffffff;
}

.pbs-pro-modal-content {
  display: flex;
  flex-direction: column;
}

.pbs-pro-modal-topbar {
  align-items: flex-start;
  gap: 14px;
}

.pbs-pro-modal-subtitle {
  max-width: 56ch;
}

.pbs-pro-modal-meta {
  margin-top: 8px;
}

.pbs-pro-description {
  border-radius: 20px;
  background: #ffffff;
  border-color: #e2e8f0;
}

.pbs-pro-description.is-collapsed::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--pbs-modal-panel) 82%);
}

.pbs-pro-modal-actions {
  position: sticky;
  bottom: -24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0 4px;
  margin-top: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff 28%);
  border-top: 1px solid rgba(226, 232, 240, 0.76);
}

.pbs-pro-modal-actions .pbs-pro-button {
  min-height: 50px;
  padding-inline: 18px;
  font-weight: 800;
}

.pbs-pro-lightbox-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}

.pbs-pro-lightbox-frame {
  min-height: 340px;
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.96);
  box-shadow: 0 30px 100px rgba(2, 6, 23, 0.34);
}

.pbs-pro-lightbox-card img {
  background: #ffffff;
}

.pbs-pro-close,
.pbs-pro-nav {
  background: rgba(15, 23, 42, 0.96) !important;
  backdrop-filter: none !important;
}

.pbs-pro-toast-item {
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18) !important;
}

.pbs-pro-notice-card {
  box-shadow: 0 34px 90px rgba(2, 6, 23, 0.34) !important;
}

@media (max-width: 900px) {
  .pbs-pro-media-frame {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .pbs-pro-modal-actions .pbs-pro-button {
    width: 100%;
  }
}

/* === 3.2.2 UI customization: colorful popup actions + admin-controlled popup/alert palette === */
:root {
  --pbs-accent: #1d4ed8;
  --pbs-accent-dark: #1e40af;
  --pbs-surface: #ffffff;
  --pbs-surface-alt: #f8fafc;
  --pbs-text: #0f172a;
  --pbs-muted: #64748b;
  --pbs-border: #e2e8f0;
  --pbs-modal-overlay: #0f172acc;
  --pbs-modal-surface: #ffffff;
  --pbs-modal-panel: #f8fbff;
  --pbs-modal-soft: #eaf2ff;
  --pbs-modal-ghost: #eef2f7;
  --pbs-alert-info: #dbeafe;
  --pbs-alert-success: #d1fae5;
  --pbs-alert-error: #fee2e2;
  --pbs-alert-warning: #fef3c7;
}

.pbs-pro-modal,
.pbs-pro-lightbox,
.pbs-pro-notice-layer {
  background: var(--pbs-modal-overlay) !important;
}

.pbs-pro-modal-card,
.pbs-pro-lightbox-card,
.pbs-pro-notice-card,
.pbs-pro-toast-item,
.pbs-pro-overlay-card {
  background: var(--pbs-modal-surface) !important;
  border-color: var(--pbs-border) !important;
}

.pbs-pro-media-frame,
.pbs-pro-description,
.pbs-pro-thumb-button,
.pbs-pro-modal-actions,
.pbs-pro-checkout-total-card,
.pbs-pro-pay-option,
.pbs-pro-card-media,
.pbs-pro-search {
  background: var(--pbs-modal-panel) !important;
}

.pbs-pro-description,
.pbs-pro-thumb-button,
.pbs-pro-pay-option,
.pbs-pro-search,
.pbs-pro-checkout-total-card,
.pbs-pro-media-frame,
.pbs-pro-modal-actions {
  border-color: var(--pbs-border) !important;
}

.pbs-pro-button.is-primary,
.pbs-pro-link-button.is-primary,
.pbs-pro-cart-button {
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark)) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.pbs-pro-button.is-soft,
.pbs-pro-link-button.is-soft {
  background: linear-gradient(135deg, var(--pbs-modal-soft), #ffffff) !important;
  border: 1px solid var(--pbs-accent) !important;
  color: var(--pbs-text) !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08) !important;
}

.pbs-pro-button.is-ghost,
.pbs-pro-link-button.is-ghost {
  background: linear-gradient(135deg, var(--pbs-modal-ghost), #ffffff) !important;
  border: 1px solid var(--pbs-border) !important;
  color: var(--pbs-text) !important;
}

.pbs-pro-button.is-soft:hover,
.pbs-pro-link-button.is-soft:hover,
.pbs-pro-button.is-ghost:hover,
.pbs-pro-link-button.is-ghost:hover,
.pbs-pro-modal-close:hover,
.pbs-pro-toast-close:hover,
.pbs-pro-notice-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.pbs-pro-card-actions .pbs-pro-link-button:first-child {
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark));
  border-color: transparent;
  color: #fff;
}

.pbs-pro-card-actions .pbs-pro-link-button:last-child {
  background: linear-gradient(135deg, var(--pbs-modal-soft), #ffffff);
  border-color: var(--pbs-accent);
  color: var(--pbs-text);
}

.pbs-pro-alert,
.pbs-pro-alert.is-soft {
  background: linear-gradient(135deg, var(--pbs-alert-info), #ffffff) !important;
  border-color: var(--pbs-accent) !important;
  color: var(--pbs-text) !important;
}

.pbs-pro-toast-item.is-success,
.pbs-pro-notice-card.is-success {
  background: linear-gradient(180deg, var(--pbs-alert-success), #ffffff) !important;
}

.pbs-pro-toast-item.is-error,
.pbs-pro-notice-card.is-error {
  background: linear-gradient(180deg, var(--pbs-alert-error), #ffffff) !important;
}

.pbs-pro-toast-item.is-warning,
.pbs-pro-notice-card.is-warning {
  background: linear-gradient(180deg, var(--pbs-alert-warning), #ffffff) !important;
}

.pbs-pro-toast-item.is-info,
.pbs-pro-notice-card.is-info {
  background: linear-gradient(180deg, var(--pbs-alert-info), #ffffff) !important;
}

.pbs-pro-toast-item.is-success { border-color: #86efac !important; }
.pbs-pro-toast-item.is-error { border-color: #fca5a5 !important; }
.pbs-pro-toast-item.is-warning { border-color: #fcd34d !important; }
.pbs-pro-toast-item.is-info { border-color: #93c5fd !important; }

.pbs-pro-modal-close,
.pbs-pro-toast-close,
.pbs-pro-notice-close {
  background: #ffffff !important;
  border-color: var(--pbs-border) !important;
  color: var(--pbs-text) !important;
}

.pbs-pro-modal-meta .pbs-pro-chip:not(.is-active),
.pbs-pro-meta-row .pbs-pro-chip:not(.is-active) {
  background: linear-gradient(135deg, var(--pbs-modal-soft), #ffffff);
  border-color: var(--pbs-accent);
}

.pbs-pro-badge {
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark));
}


/* === 3.2.3 popup visibility fix: ensure active choices and CTA stay visible inside body-mounted modal === */
.pbs-pro-modal .pbs-pro-chip.is-active,
.pbs-pro-modal .pbs-pro-button.is-primary,
.pbs-pro-modal .pbs-pro-link-button.is-primary,
.pbs-pro-modal .pbs-pro-cart-button {
  background: linear-gradient(135deg, var(--pbs-accent), var(--pbs-accent-dark)) !important;
  color: #fff !important;
  border-color: transparent !important;
}

.pbs-pro-modal .pbs-pro-modal-meta .pbs-pro-chip,
.pbs-pro-modal .pbs-pro-chip[data-plan],
.pbs-pro-modal .pbs-pro-chip[data-option-name] {
  color: var(--pbs-text);
}

.pbs-pro-modal .pbs-pro-chip.is-active[data-plan],
.pbs-pro-modal .pbs-pro-chip.is-active[data-option-name],
.pbs-pro-modal .pbs-pro-modal-meta .pbs-pro-chip.is-active {
  color: #fff !important;
}

@media (max-width: 960px) {
  .pbs-pro-header-nav,
  .pbs-pro-header-actions,
  .pbs-pro-footer-inner {
    width: 100%;
  }

  .pbs-pro-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pbs-pro-payments-wrap {
  margin-top: 32px;
  padding-top: 24px;
  gap: 16px;
}

.pbs-pro-pay-option {
  padding: 16px;
}

.pbs-pro-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pbs-pro-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pbs-pro-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.pbs-pro-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.pbs-pro-header--premium,
.pbs-pro-header--mega {
  position: relative;
  overflow: hidden;
}

.pbs-pro-header--premium::before,
.pbs-pro-header--mega::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.42), transparent 30%), linear-gradient(135deg, rgba(255,255,255,.22), transparent 58%);
  pointer-events: none;
}

.pbs-pro-header--premium {
  border-color: color-mix(in srgb, var(--pbs-header-border, var(--pbs-border)) 70%, white 30%);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10);
}

.pbs-pro-header--mega {
  padding: 22px 24px;
  border-color: color-mix(in srgb, var(--pbs-header-button, var(--pbs-accent)) 22%, var(--pbs-header-border, var(--pbs-border)) 78%);
  box-shadow: 0 28px 55px rgba(15, 23, 42, 0.14);
}

.pbs-pro-header--mega .pbs-pro-header-row {
  gap: 18px;
}

.pbs-pro-header--mega .pbs-pro-header-brand {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.4);
}

.pbs-pro-nav-link,
.pbs-pro-action-button,
.pbs-pro-cart-button,
.pbs-pro-footer-menu a,
.pbs-pro-footer-social a {
  gap: 10px;
}

.pbs-pro-header--premium .pbs-pro-nav-link,
.pbs-pro-header--mega .pbs-pro-nav-link {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(12px);
}

.pbs-pro-header--premium .pbs-pro-action-button.is-secondary,
.pbs-pro-header--mega .pbs-pro-action-button.is-secondary {
  background: rgba(255,255,255,.82);
}

.pbs-pro-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--pbs-header-border, var(--pbs-border));
  background: rgba(255,255,255,.82);
  color: var(--pbs-header-text, var(--pbs-text));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.pbs-pro-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .44);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .22s ease;
  z-index: 9998;
}

.pbs-pro-mobile-overlay.is-open {
  opacity: 1;
}

.pbs-pro-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(92vw, 380px);
  height: 100vh;
  padding: 18px;
  background: linear-gradient(180deg, var(--pbs-header-bg, #fff), color-mix(in srgb, var(--pbs-header-bg, #fff) 84%, black 16%));
  color: var(--pbs-header-text, var(--pbs-text));
  border-right: 1px solid var(--pbs-header-border, var(--pbs-border));
  box-shadow: 24px 0 60px rgba(15, 23, 42, .22);
  transform: translateX(-104%);
  transition: transform .28s ease;
  z-index: 9999;
  display: grid;
  align-content: start;
  gap: 16px;
  overflow-y: auto;
}

.pbs-pro-mobile-drawer.is-open {
  transform: translateX(0);
}

.pbs-pro-mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pbs-pro-mobile-drawer-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pbs-pro-mobile-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--pbs-header-border, var(--pbs-border));
  background: rgba(255,255,255,.72);
  color: var(--pbs-header-text, var(--pbs-text));
}

.pbs-pro-mobile-drawer-brand .pbs-pro-header-brand {
  min-width: 0;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.35);
}

.pbs-pro-mobile-nav,
.pbs-pro-mobile-actions {
  display: grid;
  gap: 12px;
}

.pbs-pro-mobile-nav .pbs-pro-nav-link,
.pbs-pro-mobile-actions .pbs-pro-action-button,
.pbs-pro-mobile-cart-wrap .pbs-pro-cart-button {
  width: 100%;
  justify-content: flex-start;
  min-height: 50px;
  border-radius: 18px;
}

.pbs-pro-mobile-cart-wrap {
  padding-top: 6px;
}

.pbs-pro-footer-menu a {
  display: inline-flex;
  align-items: center;
}

.pbs-pro-footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pbs-pro-footer-social a {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pbs-footer-link, #fff);
  border: 1px solid color-mix(in srgb, var(--pbs-footer-link, #fff) 20%, transparent 80%);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  text-decoration: none;
  transition: .18s ease;
}

.pbs-pro-footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

@media (max-width: 860px) {
  .pbs-pro-mobile-toggle {
    display: inline-flex;
  }

  .pbs-pro-header-nav,
  .pbs-pro-header-actions,
  .pbs-pro-header-row > .pbs-pro-cart-button {
    display: none;
  }

  .pbs-pro-header {
    padding: 16px;
  }

  .pbs-pro-header-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .pbs-pro-footer-inner {
    justify-content: flex-start;
  }
}

.pbs-pro-ai-widget{position:fixed;right:20px;bottom:20px;z-index:9999}
.pbs-pro-ai-fab{width:58px;height:58px;border:none;border-radius:999px;background:linear-gradient(135deg,var(--pbs-accent),#9333ea);color:#fff;font-size:22px;font-weight:700;box-shadow:0 18px 38px rgba(15,23,42,.24);cursor:pointer}
.pbs-pro-ai-panel{position:absolute;right:0;bottom:74px;width:min(360px,calc(100vw - 24px));background:var(--pbs-modal-surface);border:1px solid var(--pbs-border);border-radius:24px;box-shadow:0 22px 52px rgba(15,23,42,.28);padding:14px;display:none}
.pbs-pro-ai-panel.is-open{display:block}
.pbs-pro-ai-head{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:10px;color:var(--pbs-text)}
.pbs-pro-ai-close{width:34px;height:34px;border:none;border-radius:999px;background:var(--pbs-modal-ghost);cursor:pointer;color:var(--pbs-text)}
.pbs-pro-ai-messages{max-height:320px;overflow:auto;display:flex;flex-direction:column;gap:10px;padding:4px 0 10px}
.pbs-pro-ai-msg{padding:12px 14px;border-radius:18px;line-height:1.5;font-size:14px;white-space:pre-wrap}
.pbs-pro-ai-msg.is-bot{background:var(--pbs-modal-soft);color:var(--pbs-text);border-top-left-radius:8px}
.pbs-pro-ai-msg.is-user{background:linear-gradient(135deg,var(--pbs-accent),#9333ea);color:#fff;border-top-right-radius:8px;align-self:flex-end}
.pbs-pro-ai-input-row{display:flex;gap:8px;align-items:center}
.pbs-pro-ai-input{flex:1;min-height:46px;border:1px solid var(--pbs-border);border-radius:14px;padding:0 14px;background:#fff;color:var(--pbs-text)}
.pbs-pro-ai-send{min-height:46px;border:none;border-radius:14px;padding:0 16px;background:linear-gradient(135deg,var(--pbs-accent),#9333ea);color:#fff;font-weight:700;cursor:pointer}
@media(max-width:640px){.pbs-pro-ai-widget{right:12px;bottom:12px}.pbs-pro-ai-panel{bottom:68px;width:min(94vw,360px)}}

/* Blanche reference storefront */
.pbs-pro-storefront-blanche {
  position: relative;
  padding: 20px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #030437 0, #030437 78px, transparent 78px),
    radial-gradient(circle at top right, rgba(126, 74, 255, 0.9), transparent 28%),
    radial-gradient(circle at bottom center, rgba(55, 108, 255, 0.28), transparent 26%),
    linear-gradient(135deg, #05053d 0%, #081767 44%, #2c1cb8 100%);
  box-shadow: 0 34px 90px rgba(8, 14, 62, 0.38);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-shell {
  position: relative;
  min-height: 740px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
  position: relative;
  z-index: 1;
  margin-left: 82px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, rgba(255,255,255,0.985) 0%, rgba(239,243,255,0.96) 100%);
  padding: 14px 14px 18px;
  box-shadow: 0 26px 64px rgba(11, 20, 74, 0.22);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 4px 10px 16px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-brand {
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  color: #141b32;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-brand .is-accent {
  color: #2345ff;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-nav a,
.pbs-pro-storefront-blanche .pbs-pro-blanche-nav button {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #2b3146;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-nav .is-active {
  font-weight: 700;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-search {
  width: 138px;
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: #f4f6ff;
  border: 1px solid #d7ddfb;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-search input {
  border: none;
  background: transparent;
  padding: 0;
  width: 100%;
  font-size: 13px;
  color: #111827;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-search input::placeholder {
  color: #9098b4;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-trigger {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1f2b59;
  cursor: pointer;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-trigger .pbs-pro-icon {
  width: 24px;
  height: 24px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-trigger svg {
  stroke-width: 1.9;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #6a36ff;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 18px rgba(106, 54, 255, 0.35);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card {
  padding: 10px;
  border-radius: 24px;
  border: 1px solid #dce3ff;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 16px 28px rgba(35, 51, 118, 0.12);
  display: flex;
  flex-direction: column;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card-media {
  border-radius: 18px;
  overflow: hidden;
  padding: 10px;
  cursor: pointer;
  background: linear-gradient(135deg, #edf2ff, #dfe7ff);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card-media.is-variant-1 .pbs-pro-blanche-media-frame {
  background:
    radial-gradient(circle at 72% 28%, rgba(153, 104, 255, 0.45), transparent 22%),
    linear-gradient(135deg, #05053f 0%, #2217a5 66%, #7f2bff 100%);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card-media.is-variant-2 .pbs-pro-blanche-media-frame {
  background:
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #d9e7ff 0%, #afc7ff 34%, #7868ff 100%);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card-media.is-variant-3 .pbs-pro-blanche-media-frame {
  background:
    radial-gradient(circle at 82% 78%, rgba(110, 226, 255, 0.25), transparent 20%),
    linear-gradient(135deg, #022038 0%, #06476f 46%, #0b86bf 100%);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-media-frame {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(7, 14, 48, 0.42));
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding: 12px 4px 2px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-title {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  color: #1f2437;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
  cursor: pointer;
  min-height: 42px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-price {
  margin-top: 8px;
  color: #171d31;
  font-size: 18px;
  font-weight: 900;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  color: #8f95b1;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-stars {
  color: #ffb31a;
  letter-spacing: 0.02em;
  font-size: 15px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-meta {
  margin-top: 6px;
  color: #8a92b2;
  font-size: 14px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-add {
  width: 100%;
  margin-top: auto;
  min-height: 46px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #3f4cff 0%, #6434ff 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(84, 63, 255, 0.28);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-benefits {
  margin: 18px auto 0;
  width: calc(100% - 150px);
  min-height: 74px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 15, 119, 0.92), rgba(7, 10, 92, 0.98));
  border: 1px solid rgba(112, 132, 255, 0.28);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  padding: 0 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-benefit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-benefit .pbs-pro-icon {
  width: 18px;
  height: 18px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-benefit svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-benefit span {
  white-space: nowrap;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-empty {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: #5d6482;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px dashed #cfd7ff;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-backdrop {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(3, 8, 35, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
  position: absolute;
  left: 0;
  top: 210px;
  z-index: 5;
  width: 160px;
  border-radius: 18px;
  background: #f4f4f7;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 12px;
  box-shadow: 0 24px 42px rgba(10, 16, 60, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-12px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.pbs-pro-storefront-blanche.is-cart-open .pbs-pro-blanche-mini-cart {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.pbs-pro-storefront-blanche.is-cart-open .pbs-pro-blanche-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-label {
  color: #22283f;
  font-size: 17px;
  font-weight: 800;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-close-cart {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 999px;
  background: rgba(104, 54, 255, 0.09);
  color: #4725e7;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-items {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 10px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #07144f, #4a29ef);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-copy strong {
  color: #1d2337;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-copy span {
  margin-top: 4px;
  color: #1e2539;
  font-size: 13px;
  font-weight: 700;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-empty {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #6b7290;
  font-size: 13px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-divider {
  margin: 14px 0 12px;
  height: 1px;
  background: #d8dbe8;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #1c2237;
  font-size: 13px;
  font-weight: 700;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-total strong {
  font-size: 13px;
  font-weight: 900;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-checkout {
  margin-top: 14px;
  width: 100%;
  min-height: 44px;
  border-radius: 10px;
  background: linear-gradient(90deg, #3d49ff 0%, #6332ff 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 22px rgba(92, 61, 255, 0.26);
}

@media (max-width: 1120px) {
  .pbs-pro-storefront-blanche {
    padding: 14px;
    background:
      radial-gradient(circle at top right, rgba(126, 74, 255, 0.9), transparent 28%),
      radial-gradient(circle at bottom center, rgba(55, 108, 255, 0.28), transparent 26%),
      linear-gradient(135deg, #05053d 0%, #081767 44%, #2c1cb8 100%);
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-backdrop {
    display: block;
    position: fixed;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
    margin-left: 0;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-nav {
    justify-content: flex-start;
    gap: 18px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-actions {
    width: 100%;
    justify-content: space-between;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-search {
    width: min(100%, 280px);
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(86vw, 330px);
    transform: translate(-50%, -44%) scale(0.96);
  }

  .pbs-pro-storefront-blanche.is-cart-open .pbs-pro-blanche-mini-cart {
    transform: translate(-50%, -50%) scale(1);
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-benefits {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 14px;
  }
}

@media (max-width: 720px) {
  .pbs-pro-storefront-blanche .pbs-pro-blanche-grid {
    grid-template-columns: 1fr;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-title {
    min-height: 0;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-actions {
    flex-wrap: nowrap;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-search {
    flex: 1;
    min-width: 0;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-nav {
    gap: 14px;
    font-size: 14px;
  }
}


/* Blanche white full-width refinement v4.0.4 */
.pbs-pro-storefront-blanche {
  width: calc(100vw - 24px);
  max-width: calc(100vw - 24px);
  margin-left: calc(50% - 50vw + 12px);
  margin-right: 0;
  padding: 8px 8px 18px;
  border-radius: 0;
  overflow: visible;
  background: #ffffff;
  box-shadow: none;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-shell {
  min-height: auto;
  width: 100%;
  margin: 0;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
  margin-left: 0;
  border-radius: 30px;
  border: 1px solid #edf1ff;
  background: #ffffff;
  padding: 14px 14px 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
  margin: 0 0 18px;
  padding: 10px 10px 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #eef1ff;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.06);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-grid {
  gap: 18px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card {
  border-radius: 22px;
  box-shadow: 0 14px 26px rgba(35, 51, 118, 0.08);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-card-body {
  padding: 12px 2px 2px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-benefits {
  width: min(100%, 1040px);
  margin-top: 20px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
  left: 10px;
  top: 182px;
  width: 190px;
  border-radius: 20px;
  background: #f4f4f7;
  border: 1px solid #e7e9f3;
  box-shadow: 0 26px 46px rgba(15, 23, 42, 0.18);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-item {
  grid-template-columns: 46px 1fr;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-thumb {
  width: 46px;
  height: 46px;
}

@media (max-width: 1120px) {
  .pbs-pro-storefront-blanche {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    margin-left: calc(50% - 50vw + 8px);
    padding: 8px 0 14px;
    background: #ffffff;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
    padding: 12px 12px 18px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
    margin-bottom: 16px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
    left: 50%;
    top: 50%;
    width: min(86vw, 330px);
  }
}

@media (max-width: 720px) {
  .pbs-pro-storefront-blanche {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: calc(50% - 50vw + 5px);
    padding-bottom: 12px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
    border-radius: 24px;
    padding: 10px 10px 16px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
    padding: 10px 10px 16px;
    border-radius: 18px;
  }
}


/* Blanche desktop cart dropdown refinement v4.0.4 */
.pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
  position: relative;
  z-index: 12;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-trigger {
  z-index: 14;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
  position: fixed;
  left: auto;
  right: auto;
  top: 110px;
  width: 264px;
  max-width: calc(100vw - 32px);
  border-radius: 22px;
  background: #f5f5f8;
  border: 1px solid #e6e8f2;
  padding: 14px;
  box-shadow: 0 28px 56px rgba(15, 23, 42, 0.20);
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart::before {
  content: '';
  position: absolute;
  top: -8px;
  left: calc(var(--pbs-blanche-cart-caret-left, 216px) - 8px);
  width: 16px;
  height: 16px;
  background: #f5f5f8;
  border-left: 1px solid #e6e8f2;
  border-top: 1px solid #e6e8f2;
  transform: rotate(45deg);
}

.pbs-pro-storefront-blanche.is-cart-open .pbs-pro-blanche-mini-cart {
  transform: translateY(0) scale(1);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-cart-items {
  max-height: min(46vh, 320px);
  overflow: auto;
  padding-right: 2px;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-checkout {
  min-height: 46px;
}

@media (max-width: 1120px) {
  .pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
    z-index: auto;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
    position: fixed;
    width: min(86vw, 330px);
    max-width: min(86vw, 330px);
    transform: translate(-50%, -44%) scale(0.96);
    transform-origin: center;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart::before {
    display: none;
  }

  .pbs-pro-storefront-blanche.is-cart-open .pbs-pro-blanche-mini-cart {
    transform: translate(-50%, -50%) scale(1);
  }
}


/* Blanche mobile cart popup hotfix v4.0.4 */
.pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
  box-sizing: border-box;
}

@media (max-width: 1120px) {
  .pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    width: min(92vw, 330px) !important;
    max-width: calc(100vw - 24px) !important;
    max-height: min(78vh, 520px);
    overflow-y: auto;
    transform: translate(-50%, -46%) scale(0.96);
    transform-origin: center;
  }

  .pbs-pro-storefront-blanche.is-cart-open .pbs-pro-blanche-mini-cart {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 720px) {
  .pbs-pro-storefront-blanche .pbs-pro-blanche-mini-cart {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    border-radius: 20px;
    padding: 14px;
  }
}


/* Blanche attached header refinement v4.0.5 */
.pbs-pro-storefront-blanche {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
  padding: 0 0 18px;
  background: #ffffff;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
  margin-left: 0;
  padding: 0 14px 22px;
  border-radius: 0 0 30px 30px;
  border-top: none;
  box-shadow: none;
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
  margin: 0 -14px 20px;
  padding: 14px 20px 18px;
  border: none;
  border-bottom: 1px solid #eef1ff;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.10);
}

.pbs-pro-storefront-blanche .pbs-pro-blanche-grid,
.pbs-pro-storefront-blanche .pbs-pro-blanche-benefits {
  position: relative;
  z-index: 1;
}

@media (max-width: 1120px) {
  .pbs-pro-storefront-blanche {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 0 14px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
    padding: 0 12px 18px;
    border-radius: 0 0 24px 24px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
    margin: 0 -12px 18px;
    padding: 12px 14px 16px;
    border-radius: 0;
  }
}

@media (max-width: 720px) {
  .pbs-pro-storefront-blanche {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 0 12px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-stage {
    padding: 0 10px 16px;
    border-radius: 0 0 20px 20px;
  }

  .pbs-pro-storefront-blanche .pbs-pro-blanche-topbar {
    margin: 0 -10px 16px;
    padding: 10px 10px 14px;
    border-radius: 0;
  }
}


/* Quick variant picker v4.0.7 */
.pbs-pro-variant-picker-modal {
  padding: 24px;
}

.pbs-pro-variant-picker-card {
  width: min(760px, calc(100vw - 32px));
  max-width: 760px;
  padding: 32px;
}

.pbs-pro-variant-picker-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.pbs-pro-variant-picker-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pbs-pro-variant-picker-head h3 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.1;
}

.pbs-pro-variant-picker-head p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.pbs-pro-variant-picker-product {
  font-size: 16px;
  color: #0f172a;
}

.pbs-pro-variant-picker-list {
  display: grid;
  gap: 12px;
  max-height: min(60vh, 520px);
  overflow: auto;
  padding-right: 4px;
}

.pbs-pro-variant-picker-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.94) 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.pbs-pro-variant-picker-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.pbs-pro-variant-picker-copy strong {
  font-size: 15px;
  line-height: 1.5;
  color: #0f172a;
  word-break: break-word;
}

.pbs-pro-variant-picker-copy span {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pbs-pro-variant-picker-price {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}

.pbs-pro-button.is-compact {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .pbs-pro-variant-picker-modal {
    padding: 16px;
  }

  .pbs-pro-variant-picker-card {
    width: min(100%, calc(100vw - 20px));
    padding: 22px 16px 18px;
  }

  .pbs-pro-variant-picker-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .pbs-pro-variant-picker-price {
    font-size: 17px;
  }

  .pbs-pro-button.is-compact {
    width: 100%;
  }
}
