:root {
  --pd-primary: #0f766e;
  --pd-primary-strong: #115e59;
  --pd-accent: #2563eb;
  --pd-accent-soft: #dbeafe;
  --pd-warning: #f59e0b;
  --pd-success: #15803d;
  --pd-danger: #dc2626;
  --pd-text: #0f172a;
  --pd-text-muted: #475569;
  --pd-surface: rgba(255, 255, 255, 0.94);
  --pd-surface-alt: #f8fafc;
  --pd-border: rgba(148, 163, 184, 0.22);
  --pd-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  --pd-radius-xl: 30px;
  --pd-radius-lg: 22px;
  --pd-radius-md: 16px;
  --action-primary-height-mobile: 44px;
  --action-primary-height-desktop: 40px;
  --sheet-max-height-mobile: 90vh;
  --sheet-border-radius-top: 16px;
  --modal-max-width-desktop: 520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--pd-text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 28%),
    linear-gradient(180deg, #f5f9ff 0%, #f8fafc 46%, #f3f8f5 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.pd-page {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 16px 176px;
}

.pd-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--pd-text-muted);
  font-size: 13px;
}

.pd-crumbs a {
  color: var(--pd-accent);
  font-weight: 700;
}

.pd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  gap: 22px;
  align-items: start;
}

.pd-main,
.pd-aside {
  display: grid;
  gap: 18px;
}

.pd-card {
  background: var(--pd-surface);
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius-xl);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.pd-section {
  padding: 22px;
}

.pd-card-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pd-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pd-header {
  display: grid;
  gap: 18px;
}

.pd-title {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.pd-subtitle {
  color: var(--pd-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.pd-meta-strip,
.pd-price-row,
.pd-tag-row,
.pd-proof-row,
.pd-review-summary,
.pd-action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pd-pill,
.pd-tag,
.pd-proof,
.pd-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--pd-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.pd-pill strong,
.pd-proof strong {
  color: var(--pd-text);
}

.pd-price {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 900;
  color: var(--pd-primary);
  letter-spacing: -0.04em;
}

.pd-price-compare {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 700;
}

.pd-unit,
.pd-availability {
  color: var(--pd-text-muted);
  font-size: 14px;
  font-weight: 700;
}

.pd-rating-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: var(--pd-radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.68));
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pd-rating-score {
  font-size: 42px;
  font-weight: 900;
  color: var(--pd-accent);
}

.pd-rating-stars {
  color: #f59e0b;
  letter-spacing: 0.12em;
}

.pd-grid-2,
.pd-grid-3,
.pd-grid-4 {
  display: grid;
  gap: 12px;
}

.pd-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pd-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pd-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pd-stat-card,
.pd-option-card,
.pd-spec-card,
.pd-review-card,
.pd-shop-card,
.pd-map-shell,
.pd-checkout-card,
.pd-highlight-card {
  border-radius: var(--pd-radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #ffffff;
}

.pd-stat-card,
.pd-option-card,
.pd-spec-card,
.pd-highlight-card {
  padding: 18px;
}

.pd-stat-card strong,
.pd-spec-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--pd-text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pd-spec-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pd-spec-icon {
  font-size: 22px;
}

.pd-spec-label {
  color: var(--pd-text-muted);
  font-size: 12px;
  font-weight: 700;
}

.pd-spec-value {
  font-size: 18px;
  font-weight: 800;
}

.pd-spec-item.is-empty {
  background: linear-gradient(160deg, #f8fafc 0%, #ffffff 100%);
}

.pd-spec-item.is-empty .pd-spec-value {
  color: var(--pd-text-muted);
  font-weight: 700;
}

.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.pd-spec-table tr + tr td {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.pd-spec-table td {
  padding: 14px 10px;
  vertical-align: top;
  font-size: 14px;
}

.pd-spec-table td:first-child {
  width: 34%;
  color: var(--pd-text-muted);
  font-weight: 700;
}

.pd-rich-text {
  color: var(--pd-text);
  line-height: 1.72;
  font-size: 15px;
}

.pd-rich-text p:first-child {
  margin-top: 0;
}

.pd-rich-text p:last-child {
  margin-bottom: 0;
}

.pd-check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--pd-text);
  font-size: 14px;
  line-height: 1.6;
}

.pd-check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(21, 128, 61, 0.12);
  color: var(--pd-success);
  font-weight: 900;
}

.pd-option-group + .pd-option-group {
  margin-top: 18px;
}

.pd-option-group-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
}

.pd-option-hint {
  color: var(--pd-text-muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.pd-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-option-chip,
.pd-addon-chip {
  position: relative;
}

.pd-option-chip input,
.pd-addon-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pd-option-chip span,
.pd-addon-chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #ffffff;
  color: var(--pd-text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.pd-option-chip input:checked + span,
.pd-addon-chip input:checked + span {
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 100%);
}

.pd-shop-card {
  padding: 18px;
  display: grid;
  gap: 16px;
}

.pd-aside-stack {
  display: grid;
  gap: 18px;
}

.pd-shop-link {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pd-shop-avatar {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2563eb, #0f766e);
  color: #ffffff;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-size: 28px;
  font-weight: 800;
}

.pd-shop-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-shop-title {
  font-size: 20px;
  font-weight: 900;
}

.pd-shop-sub {
  color: var(--pd-text-muted);
  font-size: 13px;
  margin-top: 4px;
}

.pd-qty-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}

.pd-qty-btn,
.pd-btn {
  border: none;
  cursor: pointer;
  font: inherit;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.pd-qty-btn:hover,
.pd-btn:hover {
  transform: translateY(-1px);
}

.pd-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--pd-text);
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.pd-qty-value {
  min-width: 26px;
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
}

.pd-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.pd-btn-primary {
  background: linear-gradient(135deg, var(--pd-primary), var(--pd-primary-strong));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.22);
}

.pd-btn-accent {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.22);
}

.pd-btn-outline {
  background: #ffffff;
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.42);
}

.pd-btn-soft {
  background: #ffffff;
  color: var(--pd-text);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.pd-msg {
  min-height: 22px;
  color: var(--pd-text-muted);
  font-size: 13px;
}

.pd-msg.is-success {
  color: var(--pd-success);
}

.pd-msg.is-error {
  color: var(--pd-danger);
}

.pd-map-shell {
  padding: 16px;
}

.pd-map-view {
  width: 100%;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pd-checkout-card,
.pd-review-card {
  padding: 22px;
}

.pd-form-grid {
  display: grid;
  gap: 12px;
}

.pd-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pd-field {
  display: grid;
  gap: 8px;
}

.pd-field label {
  color: var(--pd-text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pd-field input,
.pd-field textarea,
.pd-field select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #ffffff;
  font: inherit;
  color: var(--pd-text);
}

.pd-field textarea {
  min-height: 110px;
  resize: vertical;
}

.pd-auth-callout {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--pd-text);
  font-size: 14px;
  line-height: 1.6;
}

.pd-review-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.pd-review-dist {
  display: grid;
  gap: 8px;
  width: min(340px, 100%);
}

.pd-review-bar {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--pd-text-muted);
}

.pd-review-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  overflow: hidden;
}

.pd-review-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.pd-review-list {
  display: grid;
  gap: 14px;
}

.pd-review-item {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.pd-review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.pd-review-author {
  font-size: 15px;
  font-weight: 800;
}

.pd-review-date {
  color: var(--pd-text-muted);
  font-size: 12px;
}

.pd-review-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pd-review-gallery img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
}

.pd-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
}

.pd-sticky-inner {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  border-radius: 28px 28px 0 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-bottom: none;
  box-shadow: 0 -10px 35px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
}

.pd-sticky-commerce {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pd-sticky-qty {
  display: grid;
  gap: 6px;
}

.pd-sticky-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.pd-sticky-actions .pd-btn {
  flex: 1 1 180px;
  min-height: 46px;
}

.pd-sticky-meta {
  display: grid;
  gap: 6px;
}

.pd-sticky-title {
  font-size: 13px;
  color: var(--pd-text-muted);
}

.pd-sticky-total {
  font-size: 22px;
  font-weight: 900;
  color: var(--pd-primary);
}

.pd-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pd-qty-control-compact {
  width: fit-content;
}

.pd-qty-btn {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--pd-primary);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, opacity 0.16s ease;
}

.pd-qty-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(37, 99, 235, 0.16);
}

.pd-qty-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.pd-qty-value {
  min-width: 34px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--pd-text);
}

.pd-loading,
.pd-empty {
  min-height: 62vh;
  display: grid;
  place-items: center;
}

.pd-state-card {
  width: min(560px, 100%);
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--pd-border);
  box-shadow: var(--pd-shadow);
  text-align: center;
}

.pd-state-icon {
  font-size: 52px;
  margin-bottom: 14px;
}

.pd-spinner {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 999px;
  border: 4px solid rgba(37, 99, 235, 0.16);
  border-top-color: var(--pd-accent);
  animation: pd-spin 0.8s linear infinite;
}

.pd-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 42, 0.62);
  z-index: 1200;
}

.pd-modal.is-open {
  display: flex;
}

.pd-modal-card {
  width: min(520px, 100%);
  padding: 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.pd-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.pd-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.14);
  font-size: 20px;
  cursor: pointer;
}

.pd-action-sheet,
.pd-ride-screen {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1260;
  background: rgba(15, 23, 42, 0.58);
}

.pd-action-sheet.is-open,
.pd-ride-screen.is-open {
  display: flex;
}

.pd-action-sheet {
  align-items: flex-end;
  justify-content: center;
}

.pd-sheet-panel {
  width: 100%;
  max-height: var(--sheet-max-height-mobile);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  border-radius: var(--sheet-border-radius-top) var(--sheet-border-radius-top) 0 0;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
  overflow: hidden;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.pd-action-sheet.is-open .pd-sheet-panel,
.pd-ride-screen.is-open .pd-ride-screen-shell {
  transform: translateY(0);
  opacity: 1;
}

.pd-sheet-header,
.pd-sheet-footer {
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom) * 0.2);
  background: rgba(255, 255, 255, 0.98);
}

.pd-sheet-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.pd-sheet-body {
  overflow: auto;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.pd-sheet-footer {
  position: sticky;
  bottom: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.05);
}

.pd-sheet-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  font-size: 20px;
  cursor: pointer;
}

.pd-sheet-form,
.pd-ride-form {
  gap: 16px;
}

.pd-sheet-block {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.pd-sheet-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pd-sheet-section-kicker {
  color: var(--pd-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-sheet-product {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.pd-sheet-product-thumb {
  width: 88px;
  height: 88px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(37, 99, 235, 0.14));
  color: var(--pd-primary);
  font-size: 30px;
  font-weight: 900;
}

.pd-sheet-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-sheet-product-copy {
  display: grid;
  gap: 6px;
}

.pd-sheet-product-tools {
  margin-left: auto;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.pd-sheet-product-price {
  color: var(--pd-primary);
  font-size: 22px;
  font-weight: 900;
}

.pd-sheet-product-meta {
  color: var(--pd-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.pd-sheet-footer-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.pd-sheet-footer-label {
  color: var(--pd-text-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pd-sheet-footer-total {
  margin-top: 4px;
  color: var(--pd-primary);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pd-sheet-cta {
  min-height: var(--action-primary-height-mobile);
  min-width: 152px;
}

.pd-buynow-form,
.pd-buynow-main,
.pd-buynow-side {
  display: grid;
  gap: 16px;
}

.pd-buynow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 16px;
  align-items: start;
}

.pd-buynow-side {
  position: sticky;
  top: 0;
}

.pd-buynow-summary-card {
  gap: 14px;
}

.pd-buynow-summary-body,
.pd-buynow-summary-stack {
  display: grid;
  gap: 10px;
}

.pd-buynow-line,
.pd-buynow-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pd-buynow-line {
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  font-size: 14px;
}

.pd-buynow-line strong,
.pd-buynow-meta-row strong {
  font-weight: 800;
  color: var(--pd-text);
  text-align: right;
}

.pd-buynow-line.is-total,
.pd-buynow-line.is-grand {
  font-size: 15px;
}

.pd-buynow-line.is-total strong,
.pd-buynow-line.is-grand strong {
  color: var(--pd-primary);
}

.pd-buynow-line.is-grand {
  border-bottom: none;
  padding-bottom: 4px;
}

.pd-buynow-meta-row {
  font-size: 13px;
  color: var(--pd-text-muted);
}

.pd-buynow-summary-note {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.6;
}

.pd-buynow-subgrid {
  display: grid;
  gap: 14px;
}

.pd-buynow-section-inline-btn {
  border: none;
  background: rgba(37, 99, 235, 0.1);
  color: var(--pd-primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.pd-buynow-memory-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.84) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.pd-buynow-memory-copy {
  display: grid;
  gap: 4px;
}

.pd-buynow-memory-label {
  color: var(--pd-text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pd-buynow-memory-copy strong {
  font-size: 14px;
  color: var(--pd-text);
  line-height: 1.5;
}

.pd-buynow-memory-edit {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: var(--pd-primary);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.pd-buynow-section-body {
  display: grid;
  gap: 14px;
}

.pd-buynow-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.pd-buynow-choice-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.pd-buynow-choice {
  position: relative;
}

.pd-buynow-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pd-buynow-choice span {
  min-height: 100%;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.pd-buynow-choice span strong {
  font-size: 14px;
  color: var(--pd-text);
}

.pd-buynow-choice span small {
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.pd-buynow-choice input:checked + span {
  border-color: rgba(37, 99, 235, 0.48);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.12);
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 100%);
  transform: translateY(-1px);
}

.pd-buynow-address-shell {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.86) 0%, rgba(255, 255, 255, 0.96) 100%);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.pd-buynow-address-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pd-buynow-address-head-copy {
  display: grid;
  gap: 4px;
}

.pd-buynow-address-head-copy strong {
  font-size: 14px;
}

.pd-buynow-address-head-copy span {
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.pd-buynow-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  align-items: start;
}

.pd-buynow-address-form,
.pd-buynow-map-panel {
  display: grid;
  gap: 12px;
}

.pd-buynow-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-buynow-inline-btn {
  min-height: 42px;
  padding-inline: 16px;
  border-radius: 14px;
  font-size: 13px;
}

.pd-buynow-map-controls {
  display: grid;
  gap: 10px;
}

.pd-buynow-map-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.pd-buynow-map-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #fff;
  color: var(--pd-text);
  font: inherit;
}

.pd-buynow-map-host {
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.92), rgba(240, 253, 250, 0.92)),
    repeating-linear-gradient(45deg, rgba(148, 163, 184, 0.08) 0 10px, transparent 10px 20px);
}

.pd-buynow-map-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.5;
}

.pd-buynow-map-meta code {
  color: var(--pd-accent);
  font-weight: 800;
}

.pd-buynow-map-note,
.pd-buynow-zone-card {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.65;
}

.pd-buynow-zone-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--pd-text);
  font-size: 13px;
}

.pd-buynow-zone-note {
  margin-top: 4px;
  color: var(--pd-text-muted);
  font-size: 12px;
}

.pd-buynow-map-togglebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.04);
}

.pd-buynow-map-summary {
  display: grid;
  gap: 4px;
}

.pd-buynow-map-summary strong {
  font-size: 13px;
}

.pd-buynow-map-summary span {
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.55;
}

.pd-buynow-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.6;
  cursor: pointer;
}

.pd-buynow-terms input {
  margin-top: 2px;
  min-width: 16px;
  min-height: 16px;
}

.pd-ride-screen {
  align-items: stretch;
  justify-content: center;
  padding: 0;
}

.pd-ride-screen-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background:
    linear-gradient(180deg, rgba(244, 250, 255, 0.98) 0%, rgba(255, 255, 255, 0.98) 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.pd-ride-screen-head,
.pd-ride-screen-footer {
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.pd-ride-screen-body {
  min-height: 0;
  overflow: auto;
  display: grid;
  grid-template-rows: minmax(260px, 38vh) minmax(0, 1fr);
}

.pd-ride-map-stage {
  padding: 18px;
  display: grid;
  gap: 14px;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.14), transparent 36%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(180deg, #ecfeff 0%, #eff6ff 100%);
}

.pd-ride-map-visual {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(219, 234, 254, 0.82)),
    repeating-linear-gradient(45deg, rgba(148, 163, 184, 0.07) 0 12px, transparent 12px 24px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.pd-ride-map-pulse {
  position: absolute;
  inset: auto auto 28px 28px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.22), rgba(15, 118, 110, 0));
  animation: pd-pulse 1.8s ease infinite;
}

.pd-ride-map-route {
  position: absolute;
  inset: 24px 24px auto 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-ride-map-stop {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
}

.pd-ride-map-stop.is-start {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.pd-ride-map-stop.is-end {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.pd-ride-map-line {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.26), rgba(37, 99, 235, 0.26));
}

.pd-ride-map-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
}

.pd-ride-map-copy strong {
  font-size: 18px;
}

.pd-ride-map-copy span {
  color: var(--pd-text-muted);
  font-size: 14px;
}

.pd-ride-map-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pd-ride-map-chip,
.pd-ride-estimate-item {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.pd-ride-map-chip strong,
.pd-ride-estimate-item span {
  font-size: 12px;
  color: var(--pd-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pd-ride-map-chip span,
.pd-ride-estimate-item strong {
  color: var(--pd-text);
  font-weight: 800;
}

.pd-ride-form-stage {
  padding: 18px;
}

.pd-ride-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pd-ride-vehicle-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #fff;
  cursor: pointer;
}

.pd-ride-vehicle-card input {
  margin: 0;
}

.pd-ride-vehicle-card:has(input:checked) {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: 0 16px 32px rgba(15, 118, 110, 0.12);
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.96), rgba(239, 246, 255, 0.96));
}

.pd-ride-vehicle-card strong {
  font-size: 15px;
}

.pd-ride-vehicle-card span {
  color: var(--pd-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.pd-ride-estimate-card {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(37, 99, 235, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.16);
}

.pd-ride-estimate-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pd-ride-estimate-head strong {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  color: var(--pd-primary);
  font-weight: 900;
}

.pd-ride-estimate-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--pd-accent);
  font-size: 12px;
  font-weight: 800;
}

.pd-ride-estimate-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.pd-ride-screen-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  border-bottom: none;
}

.pd-ride-screen-footer .pd-btn {
  min-height: var(--action-primary-height-mobile);
}

.pd-ride-confirm-route {
  display: grid;
  gap: 14px;
}

.pd-ride-confirm-stop {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.pd-ride-confirm-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 5px;
}

.pd-ride-confirm-dot.is-start {
  background: #0f766e;
}

.pd-ride-confirm-dot.is-end {
  background: #2563eb;
}

.pd-ride-confirm-stop small {
  display: block;
  margin-bottom: 4px;
  color: var(--pd-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 700;
}

.pd-ride-confirm-stop strong {
  font-size: 16px;
  line-height: 1.55;
}

@keyframes pd-pulse {
  0% { transform: scale(0.9); opacity: 0.55; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

@keyframes pd-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .pd-page {
    padding: 20px 22px 156px;
  }

  .pd-layout-6040 {
    grid-template-columns: minmax(0, 1.5fr) minmax(360px, 1fr);
    gap: 18px;
  }

  .pd-main-stack {
    gap: 16px;
  }

  .pd-aside-stack {
    position: sticky;
    top: 18px;
    gap: 16px;
  }

  .pd-card {
    border-radius: 26px;
  }

  .pd-section,
  .pd-shop-card,
  .pd-stat-card,
  .pd-option-card,
  .pd-spec-card,
  .pd-highlight-card {
    padding: 18px;
  }

  .pd-crumbs {
    margin-bottom: 14px;
  }

  .pd-header {
    gap: 14px;
  }

  .pd-title {
    font-size: clamp(28px, 3.3vw, 44px);
  }

  .pd-subtitle {
    line-height: 1.64;
  }

  .pd-rating-hero {
    padding: 16px 18px;
    gap: 14px;
  }

  .pd-price {
    font-size: clamp(30px, 4.2vw, 46px);
  }

  .pd-gallery-card,
  .pd-hero-card {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .pd-page {
    padding-bottom: 220px;
  }

  .pd-section,
  .pd-review-card,
  .pd-checkout-card {
    padding: 20px;
  }

  .pd-grid-4,
  .pd-grid-3,
  .pd-grid-2,
  .pd-spec-grid,
  .pd-field-grid {
    grid-template-columns: 1fr;
  }

  .pd-rating-hero,
  .pd-review-head,
  .pd-review-top,
  .pd-sticky-inner {
    grid-template-columns: 1fr;
  }

  .pd-sticky-commerce,
  .pd-buynow-memory-card,
  .pd-buynow-address-head {
    flex-direction: column;
    align-items: stretch;
  }

  .pd-sticky-actions {
    flex-direction: column;
    gap: 8px;
  }

  .pd-sticky-actions .pd-btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .pd-modal {
    align-items: flex-end;
    padding: 0;
  }

  .pd-modal-card {
    width: 100%;
    max-height: min(86vh, 780px);
    overflow: auto;
    border-radius: 28px 28px 0 0;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .pd-sheet-footer-row,
  .pd-ride-screen-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .pd-sheet-cta,
  .pd-ride-screen-footer .pd-btn {
    width: 100%;
  }

  .pd-ride-map-summary,
  .pd-ride-estimate-meta,
  .pd-ride-vehicle-grid,
  .pd-buynow-layout,
  .pd-buynow-address-grid,
  .pd-buynow-map-search {
    grid-template-columns: 1fr;
  }

  .pd-buynow-side {
    position: static;
  }

  .pd-sheet-product-tools {
    margin-left: 0;
    justify-items: start;
  }

  .pd-buynow-map-togglebar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 560px) {
  .pd-page {
    padding-inline: 12px;
  }

  .pd-card {
    border-radius: 24px;
  }

  .pd-btn {
    width: 100%;
  }

  .pd-sticky-inner {
    gap: 10px;
  }

  .pd-sheet-header,
  .pd-sheet-body,
  .pd-sheet-footer,
  .pd-ride-map-stage,
  .pd-ride-form-stage,
  .pd-ride-screen-head,
  .pd-ride-screen-footer {
    padding-inline: 14px;
  }

  .pd-sheet-product {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .pd-sheet-product-thumb {
    width: 72px;
    height: 72px;
  }

  .pd-buynow-inline-actions {
    flex-direction: column;
  }

  .pd-buynow-inline-btn {
    width: 100%;
  }

  .pd-qty-control {
    width: 100%;
    justify-content: space-between;
  }

  .pd-buynow-map-host {
    min-height: 240px;
  }
}

@media (min-width: 768px) {
  .pd-action-sheet {
    align-items: center;
    padding: 24px;
  }

  .pd-sheet-panel {
    width: min(var(--modal-max-width-desktop), 100%);
    max-height: min(88vh, 780px);
    border-radius: 28px;
    transform: translateY(12px) scale(0.985);
  }

  .pd-sheet-panel-wide {
    width: min(960px, 100%);
    max-height: min(90vh, 860px);
  }

  .pd-sheet-cta,
  .pd-ride-screen-footer .pd-btn {
    min-height: var(--action-primary-height-desktop);
  }

  .pd-ride-screen {
    align-items: center;
    padding: 24px;
  }

  .pd-ride-screen-shell {
    width: min(980px, 100%);
    min-height: min(86vh, 760px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.24);
  }

  .pd-ride-screen-body {
    grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: minmax(0, 1fr);
  }

  .pd-ride-map-stage,
  .pd-ride-form-stage {
    padding: 24px;
  }
}

/* ======================================================================
   Cart Drawer & FAB (product detail page)
   - Mặc định ẨN hoàn toàn. Chỉ hiện khi có class .is-open hoặc inline style.
   - Tránh tái diễn lỗi "Giỏ hàng + ✕" lủng lẳng góc trái dưới do thiếu CSS.
   ====================================================================== */
.pd-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 9000;
  display: none;
}
.pd-cart-overlay.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.pd-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 100%);
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 9100;
  display: flex;
  flex-direction: column;
}
.pd-cart-drawer.is-open { transform: translateX(0); }
.pd-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
}
.pd-cart-head h3 { margin: 0; font-size: 17px; font-weight: 700; color: #0f172a; }
.pd-cart-close {
  background: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  color: #64748b;
  padding: 4px 8px;
  border-radius: 6px;
}
.pd-cart-close:hover { background: #f1f5f9; color: #0f172a; }
.pd-cart-body { flex: 1 1 auto; overflow-y: auto; padding: 16px 20px; }
.pd-cart-foot { padding: 16px 20px; border-top: 1px solid #e5e7eb; flex-shrink: 0; }
.pd-cart-empty { text-align: center; padding: 40px 20px; color: #64748b; }
.pd-cart-empty-icon { font-size: 40px; margin-bottom: 8px; }
.pd-cart-item {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}
.pd-cart-item:last-child { border-bottom: 0; }
.pd-cart-item img,
.pd-cart-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pd-cart-item-info { flex: 1 1 auto; min-width: 0; }
.pd-cart-item-name { font-weight: 600; color: #0f172a; font-size: 14px; line-height: 1.3; }
.pd-cart-item-price { color: #15803d; font-weight: 600; font-size: 13px; margin-top: 2px; }
.pd-cart-item-note { color: #64748b; font-size: 12px; margin-top: 2px; }
.pd-cart-qty { display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.pd-cart-qty button {
  width: 24px; height: 24px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pd-cart-qty button:hover { background: #f1f5f9; }
.pd-cart-qty span { font-size: 14px; color: #0f172a; min-width: 18px; text-align: center; }
.pd-cart-subtotal { margin-left: auto; font-weight: 600; color: #15803d; font-size: 13px; }
.pd-cart-remove {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  color: #ef4444;
  padding: 4px;
  border-radius: 6px;
  align-self: flex-start;
}
.pd-cart-remove:hover { background: #fee2e2; }
.pd-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}
.pd-cart-total-price { color: #15803d; }
.pd-cart-checkout {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #15803d;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}
.pd-cart-checkout:hover { background: #166534; }
.pd-cart-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #15803d;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  z-index: 8500;
  display: none;
  align-items: center;
  justify-content: center;
}
.pd-cart-fab:hover { background: #166534; }
.pd-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
