/* =====================================================================
   Premier Detailing — Booking Widget Styles
   In-page 4-step booking flow that mounts into #booking-widget
   Rebuilt 2026-05-18 to match the original design (per Joe's screenshots)
   ===================================================================== */

.pd-wid{
  --gold:#cba871; --gold2:#e4cb94;
  --navy:#03060c; --navy2:#0a1122; --navy3:#141a2b;
  --line:rgba(255,255,255,.08); --line2:rgba(255,255,255,.16);
  --txt:rgba(255,255,255,.92); --mute:rgba(255,255,255,.55);
  --gold-bg:rgba(203,168,113,.10);

  max-width:680px; margin:0 auto; padding:8px 18px 4px;
  font-family:'Inter',-apple-system,system-ui,sans-serif;
  color:var(--txt);
}

/* ========== TOP ROW (back + progress dots + tag) ========== */
.pd-wid .pd-top{
  display:flex; align-items:center; justify-content:space-between;
  gap:10px; margin:6px 0 24px;
  min-height:32px;
}
.pd-wid .pd-back{
  background:transparent; border:none; color:var(--mute);
  font-size:.92rem; font-weight:600; cursor:pointer;
  padding:6px 4px 6px 0; flex-shrink:0;
  display:inline-flex; align-items:center; gap:4px;
  font-family:inherit;
}
.pd-wid .pd-back:hover{color:var(--gold);}
.pd-wid .pd-back-spacer{width:50px; flex-shrink:0;}

/* Progress dots */
.pd-wid .pd-steps{
  display:flex; align-items:center; justify-content:center;
  gap:6px; flex:1; min-width:0;
}
.pd-wid .pd-step{
  display:flex; align-items:center; justify-content:center;
  width:30px; height:30px; border-radius:50%;
  background:var(--navy3); border:1px solid var(--line2);
  font-size:.84rem; font-weight:700; color:var(--mute);
  flex-shrink:0; transition:.18s;
}
.pd-wid .pd-step.done{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); border-color:var(--gold);
}
.pd-wid .pd-step.active{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(203,168,113,.18);
}
.pd-wid .pd-bar{
  flex:0 0 20px; height:1.5px; background:rgba(255,255,255,.14);
  border-radius:2px;
}
.pd-wid .pd-bar.done{background:var(--gold);}

/* Current-selection tag at the right of the progress row */
.pd-wid .pd-tag{
  font-size:.88rem; color:var(--mute); font-weight:500;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  max-width:120px; flex-shrink:0;
}
.pd-wid .pd-tag-empty{width:50px; flex-shrink:0;}

/* ========== STEP HEADING ========== */
.pd-wid h3.pd-h{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.6rem,4.4vw,2rem); font-weight:700;
  color:#fff; text-align:center; margin:6px 0 6px; line-height:1.15;
}
.pd-wid .pd-sub{
  text-align:center; color:var(--mute);
  font-size:.92rem; margin-bottom:22px; line-height:1.45;
  padding:0 8px;
}

/* ========== STEP 1 + 2 — Option cards ========== */
.pd-wid .pd-opts{display:flex; flex-direction:column; gap:12px;}
.pd-wid .pd-opt{
  display:block; width:100%; text-align:left;
  background:var(--navy2); border:1.5px solid rgba(255,255,255,.12);
  border-radius:16px; padding:18px 20px; cursor:pointer;
  transition:.16s; position:relative; font-family:inherit;
}
.pd-wid .pd-opt:hover{
  border-color:rgba(203,168,113,.5);
  background:linear-gradient(135deg,var(--navy3),var(--navy2));
}
.pd-wid .pd-opt.sel{
  border-color:var(--gold);
  background:rgba(203,168,113,.06);
}
.pd-wid .pd-opt-name{
  font-weight:700; font-size:1.18rem; color:#fff;
  margin-bottom:4px; padding-right:36px;
  letter-spacing:-.01em;
}
.pd-wid .pd-opt-desc{
  font-size:.92rem; color:var(--mute); line-height:1.45;
  margin-bottom:10px; padding-right:36px;
}
.pd-wid .pd-opt-meta{
  font-size:.96rem; color:var(--gold); font-weight:700;
}
.pd-wid .pd-opt.sel::after{
  content:""; position:absolute; top:18px; right:20px;
  width:26px; height:26px; border-radius:50%;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  /* Checkmark via SVG mask */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z' fill='black'/%3E%3C/svg%3E");
}
/* Fallback checkmark using ::before glyph for browsers without mask support */
@supports not (mask-image: url("data:image/svg+xml,%3Csvg/%3E")) {
  .pd-wid .pd-opt.sel::after{
    content:"✓"; display:flex; align-items:center; justify-content:center;
    color:var(--navy); font-weight:900; font-size:.85rem;
    -webkit-mask-image:none; mask-image:none;
  }
}

/* ========== STEP 3 — Form fields ========== */
.pd-wid .pd-form{display:flex; flex-direction:column; gap:14px;}
.pd-wid input.pd-in, .pd-wid textarea.pd-in{
  background:var(--navy2); border:1.5px solid rgba(255,255,255,.10);
  border-radius:14px; padding:18px 20px; color:#fff;
  font-size:16px; font-weight:500; width:100%; outline:none;
  font-family:inherit; transition:border-color .16s, background .16s;
}
.pd-wid input.pd-in::placeholder, .pd-wid textarea.pd-in::placeholder{
  color:rgba(255,255,255,.35); font-weight:500;
}
.pd-wid input.pd-in:focus, .pd-wid textarea.pd-in:focus{
  border-color:var(--gold); background:rgba(3,6,12,.85);
}
.pd-wid textarea.pd-in{min-height:64px; resize:vertical;}

/* Add-ons */
.pd-wid .pd-addons-title{
  font-size:.78rem; text-transform:uppercase; letter-spacing:.14em;
  color:var(--gold); font-weight:700; text-align:center;
  margin:26px 0 12px;
}
.pd-wid .pd-addons{display:flex; flex-direction:column; gap:10px;}
.pd-wid .pd-addon{
  display:flex; align-items:flex-start; gap:14px;
  background:var(--navy2); border:1.5px solid rgba(255,255,255,.10);
  border-radius:14px; padding:16px 18px; cursor:pointer;
  transition:.16s;
}
.pd-wid .pd-addon:hover{border-color:rgba(255,255,255,.20);}
.pd-wid .pd-addon.sel{
  border-color:var(--gold); background:rgba(203,168,113,.06);
}
.pd-wid .pd-addon-box{
  width:22px; height:22px; border-radius:6px;
  border:1.5px solid rgba(255,255,255,.25);
  background:transparent;
  flex-shrink:0; margin-top:2px;
  display:flex; align-items:center; justify-content:center;
  transition:.14s;
}
.pd-wid .pd-addon.sel .pd-addon-box{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  border-color:var(--gold);
}
.pd-wid .pd-addon.sel .pd-addon-box::after{
  content:"✓"; color:var(--navy); font-weight:900; font-size:.85rem;
}
.pd-wid .pd-addon-body{flex:1;}
.pd-wid .pd-addon-name{
  font-weight:700; font-size:1.05rem; color:#fff; line-height:1.2;
}
.pd-wid .pd-addon-meta{
  font-size:.88rem; color:var(--mute); margin-top:4px;
}

/* ========== CTA buttons ========== */
.pd-wid .pd-cta{
  display:block; width:100%; margin:26px 0 10px;
  padding:20px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:var(--navy); font-weight:800; font-size:1.05rem;
  letter-spacing:.08em; text-transform:uppercase;
  border:none; border-radius:16px; cursor:pointer;
  box-shadow:0 18px 40px rgba(203,168,113,.32),0 1px 0 rgba(255,255,255,.2) inset;
  transition:transform .14s, box-shadow .14s;
  font-family:inherit;
}
.pd-wid .pd-cta:hover:not([disabled]){
  transform:translateY(-1px);
  box-shadow:0 22px 48px rgba(203,168,113,.42);
}
.pd-wid .pd-cta:active{transform:translateY(0);}
.pd-wid .pd-cta[disabled]{
  opacity:.5; cursor:not-allowed; transform:none;
}
.pd-wid .pd-cta .arrow{display:inline-block; margin-left:6px;}

.pd-wid .pd-trust{
  text-align:center; font-size:.78rem; color:var(--mute);
  margin-top:10px; line-height:1.5;
}
.pd-wid .pd-trust strong{color:var(--gold);}

/* ========== STEP 4 — Week nav + date strip + Next Available list ========== */
.pd-wid .pd-week-nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; margin:8px 0 10px; padding:0 4px;
}
.pd-wid .pd-week-label{
  flex:1; text-align:center; color:#fff;
  font-weight:700; font-size:.96rem; letter-spacing:.02em;
}
.pd-wid .pd-week-arrow{
  width:36px; height:36px; border-radius:50%;
  background:var(--navy2); border:1.5px solid rgba(255,255,255,.16);
  color:var(--gold); font-size:1.4rem; line-height:1;
  cursor:pointer; transition:.14s;
  display:flex; align-items:center; justify-content:center;
  font-family:inherit; flex-shrink:0;
}
.pd-wid .pd-week-arrow:hover:not([disabled]){
  background:rgba(203,168,113,.10);
  border-color:var(--gold);
}
.pd-wid .pd-week-arrow[disabled]{opacity:.22; cursor:not-allowed;}

.pd-wid .pd-datestrip{
  display:flex; gap:8px; overflow-x:auto;
  padding:4px 4px 8px;
  margin:8px -4px 8px;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.pd-wid .pd-datestrip::-webkit-scrollbar{display:none;}
.pd-wid .pd-dt{
  flex:0 0 84px; min-height:96px;
  background:var(--navy2); border:1.5px solid rgba(255,255,255,.08);
  border-radius:14px; padding:14px 8px;
  display:flex; flex-direction:column; align-items:center; gap:4px;
  font-family:inherit; cursor:pointer;
  transition:.14s;
}
.pd-wid .pd-dt-dow{
  font-size:.7rem; color:var(--mute); font-weight:700;
  text-transform:uppercase; letter-spacing:.08em;
}
.pd-wid .pd-dt-num{
  font-family:'Playfair Display',serif;
  font-size:2rem; color:#fff; font-weight:700; line-height:1;
}
.pd-wid .pd-dt.past,
.pd-wid .pd-dt.unavailable{
  opacity:.35; cursor:not-allowed;
}
.pd-wid .pd-dt.open{
  border-color:rgba(203,168,113,.35);
}
.pd-wid .pd-dt.open:hover{
  border-color:var(--gold);
  background:rgba(203,168,113,.06);
  transform:translateY(-1px);
}
.pd-wid .pd-dt.sel{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  border-color:var(--gold); color:var(--navy);
}
.pd-wid .pd-dt.sel .pd-dt-dow{color:rgba(3,6,12,.7);}
.pd-wid .pd-dt.sel .pd-dt-num{color:var(--navy);}

/* Next Available label */
.pd-wid .pd-next-lbl{
  text-align:center; font-size:.78rem; letter-spacing:.18em;
  color:var(--mute); font-weight:700; text-transform:uppercase;
  margin:20px 0 14px;
}

/* Slot card list */
.pd-wid .pd-slots{display:flex; flex-direction:column; gap:10px;}
.pd-wid .pd-slot{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background:var(--navy2); border:1.5px solid rgba(255,255,255,.10);
  border-radius:14px; padding:18px 22px;
  font-family:inherit; cursor:pointer;
  transition:.14s; width:100%; text-align:left;
}
.pd-wid .pd-slot:hover{
  border-color:var(--gold); background:rgba(203,168,113,.06);
  transform:translateY(-1px);
}
.pd-wid .pd-slot.sel{
  border-color:var(--gold); background:rgba(203,168,113,.10);
  box-shadow:0 10px 28px rgba(203,168,113,.18);
}
.pd-wid .pd-slot-label{
  font-size:1.02rem; font-weight:600; color:#fff;
}
.pd-wid .pd-slot-arrow{
  color:var(--gold); font-size:1.1rem; font-weight:700;
  flex-shrink:0;
}

.pd-wid .pd-loading{
  text-align:center; color:var(--mute); font-size:.92rem;
  padding:30px 10px;
}

/* ========== Error + success states ========== */
.pd-wid .pd-err{
  background:rgba(255,94,108,.10); border:1px solid rgba(255,94,108,.35);
  color:#ff8a93; border-radius:12px; padding:12px 16px;
  font-size:.9rem; margin:12px 0;
}
.pd-wid .pd-ok{
  text-align:center; padding:28px 12px 10px;
}
.pd-wid .pd-ok h3{
  font-family:'Playfair Display',serif;
  color:var(--gold); font-size:1.9rem; margin-bottom:10px;
}
.pd-wid .pd-ok p{
  color:var(--mute); font-size:.96rem; line-height:1.55;
  max-width:480px; margin:0 auto 14px;
}
.pd-wid .pd-ok .pd-preview{
  background:var(--navy2); border:1.5px solid var(--gold);
  border-radius:14px; padding:16px 18px; margin:18px auto;
  max-width:460px; color:rgba(255,255,255,.88);
  font-style:italic; font-size:.94rem; line-height:1.55;
  text-align:left;
}
.pd-wid .pd-ok .pd-preview small{
  display:block; margin-top:10px; color:var(--gold);
  font-style:normal; font-weight:700; font-size:.72rem;
  text-transform:uppercase; letter-spacing:.1em;
}

/* Loading spinner inside CTA */
.pd-wid .pd-spin{
  display:inline-block; width:14px; height:14px;
  border:2px solid rgba(0,0,0,.2); border-top-color:var(--navy);
  border-radius:50%; animation:pdspin .8s linear infinite;
  vertical-align:middle; margin-right:8px;
}
@keyframes pdspin{to{transform:rotate(360deg);}}

@media(max-width:540px){
  .pd-wid{padding:4px 12px 4px;}
  .pd-wid h3.pd-h{font-size:1.5rem;}
  .pd-wid .pd-opt{padding:16px 16px;}
  .pd-wid .pd-step{width:28px; height:28px; font-size:.78rem;}
  .pd-wid .pd-bar{flex-basis:14px;}
  .pd-wid .pd-tag{max-width:90px; font-size:.82rem;}
}

/* ============================================================
   NEW STYLES — added 2026-05-18 (do not modify existing rules)
   ============================================================ */

/* Sticky order summary bar */
.pd-wid .pd-summary-bar {
  text-align: center;
  font-size: .88rem;
  color: rgba(203,168,113,.85);
  background: rgba(3,6,12,.6);
  border-bottom: 1px solid rgba(203,168,113,.15);
  padding: 10px 16px;
  margin: -8px -18px 20px;
  letter-spacing: .01em;
}
.pd-wid .pd-summary-bar strong { color: #cba871; }

/* Service area warning */
.pd-wid .pd-area-warn {
  font-size: .88rem;
  color: rgba(255,200,80,.85);
  background: rgba(255,160,0,.07);
  border: 1px solid rgba(255,160,0,.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.pd-wid .pd-area-warn a { color: #cba871; }

/* Skeleton tiles */
@keyframes pd-shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
.pd-wid .pd-skel-strip { display:flex; gap:8px; margin-bottom:20px; }
.pd-wid .pd-skel-tile {
  flex:1; height:62px; border-radius:12px;
  background: linear-gradient(90deg, rgba(255,255,255,.05) 25%, rgba(203,168,113,.1) 50%, rgba(255,255,255,.05) 75%);
  background-size: 200% 100%;
  animation: pd-shimmer 1.4s ease-in-out infinite;
}

/* Retry / fallback link */
.pd-wid .pd-link {
  color: #cba871; text-decoration: underline; cursor: pointer;
  background: none; border: none; font: inherit; padding: 0;
}

/* ============================================================
   SUCCESS SCREEN — "You're on the schedule" + save number CTA
   ============================================================ */
.pd-wid .pd-ok-check {
  width: 64px; height: 64px; margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cba871, #e4cb94);
  color: #03060c;
  font-size: 2rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 40px rgba(203,168,113,.4);
}

.pd-wid .pd-save-block {
  margin: 32px auto 8px; max-width: 460px;
  background: linear-gradient(160deg, rgba(203,168,113,.10), rgba(203,168,113,.02));
  border: 1.5px solid rgba(203,168,113,.4);
  border-radius: 18px;
  padding: 26px 22px 22px;
  text-align: center;
}
.pd-wid .pd-save-eyebrow {
  font-size: .76rem; font-weight: 800;
  color: #cba871; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 4px;
}
.pd-wid .pd-save-sub {
  font-size: .9rem; color: rgba(255,255,255,.65);
  margin-bottom: 16px; line-height: 1.4;
}
.pd-wid .pd-save-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5.5vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 18px;
  letter-spacing: .02em;
  transition: color .14s;
}
.pd-wid .pd-save-num:hover { color: #cba871; }
.pd-wid .pd-save-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}
.pd-wid .pd-save-btn {
  flex: 1 1 90px; min-width: 90px;
  padding: 14px 12px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: #fff; text-decoration: none;
  font-size: .9rem; font-weight: 600;
  text-align: center;
  transition: .14s;
}
.pd-wid .pd-save-btn:hover {
  border-color: #cba871; background: rgba(203,168,113,.10);
}
.pd-wid .pd-save-btn.primary {
  background: linear-gradient(135deg, #cba871, #e4cb94);
  border-color: #cba871; color: #03060c; font-weight: 800;
  flex-basis: 100%;     /* "Add to Contacts" gets a full row, looks more important */
  margin-bottom: 4px;
  box-shadow: 0 12px 28px rgba(203,168,113,.32);
}
.pd-wid .pd-save-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(203,168,113,.4);
}

/* ============================================================
   ADDED 2026-05-18 (round 2) — Edits 2, 5, 6
   Append-only; no existing rules modified.
   Note: pd-skel-strip / pd-skel-tile / @keyframes pd-shimmer were
   already defined above (lines 392–400). The blocks below redefine
   them per the new edit spec — CSS cascade applies the bottom ones.
   ============================================================ */

/* EDIT 2 — Shimmer skeleton + matching loading text */
@keyframes pd-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.pd-wid .pd-skel-strip {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.pd-wid .pd-skel-tile {
  flex: 1; height: 62px; border-radius: 12px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.05) 25%,
    rgba(203,168,113,.12) 50%,
    rgba(255,255,255,.05) 75%
  );
  background-size: 200% 100%;
  animation: pd-shimmer 1.4s ease-in-out infinite;
}
.pd-wid .pd-loading-shimmer {
  text-align: center; color: rgba(255,255,255,.45);
  font-size: .9rem; margin-top: 8px;
}

/* EDIT 5 — Booking summary card on success screen */
.pd-wid .pd-confirm-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(203,168,113,.2);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 18px 0 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.pd-wid .pd-confirm-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
}
.pd-wid .pd-confirm-lbl {
  font-size: .82rem; color: rgba(255,255,255,.45);
  flex-shrink: 0; text-transform: uppercase; letter-spacing: .05em;
}
.pd-wid .pd-confirm-val {
  font-size: .95rem; color: rgba(255,255,255,.88);
  text-align: right;
}
.pd-wid .pd-confirm-price {
  color: #cba871; font-weight: 700;
}

/* EDIT 6 — Inline field error message */
.pd-wid .pd-field-err {
  font-size: .82rem;
  color: rgba(255,110,90,.9);
  margin-top: -8px;
  margin-bottom: 2px;
  padding-left: 6px;
}

/* ============================================================
   ADDED 2026-05-18 (round 3) — Edit 5 (CTA disabled + back link)
   Append-only; no existing rules modified.
   ============================================================ */

.pd-wid .pd-cta:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.pd-wid .pd-back-link {
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.pd-wid .pd-back-link a {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  text-decoration: none;
  letter-spacing: .02em;
}

.pd-wid .pd-back-link a:hover {
  color: rgba(203,168,113,.8);
}

/* --- 2026-05-18 PREMIUM-SPEED UPDATE --- */
/* Service-card badges (Daily driver / Most popular / Paint reset) */
.pd-wid .pd-opt { position: relative; transition: transform .18s cubic-bezier(.16,1,.3,1), border-color .2s, box-shadow .25s; }
.pd-wid .pd-opt:hover { transform: translateY(-2px); border-color: rgba(203,168,113,.4); box-shadow: 0 14px 32px rgba(0,0,0,.32); }
.pd-wid .pd-opt:active { transform: translateY(0); }
.pd-wid .pd-opt.sel {
  border-color: rgba(203,168,113,.62) !important;
  box-shadow: 0 0 0 1px rgba(203,168,113,.4), 0 18px 38px rgba(203,168,113,.16) !important;
  background: linear-gradient(155deg, rgba(203,168,113,.08), rgba(20,26,43,.55)) !important;
}
.pd-wid .pd-opt-badge {
  position: absolute; top: 12px; right: 14px;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
  padding: 4px 10px; border-radius: 100px;
  background: linear-gradient(135deg, #cba871, #e4cb94);
  color: #03060c;
  box-shadow: 0 6px 14px rgba(203,168,113,.32);
  pointer-events: none;
}
.pd-wid .pd-opt-bestfor {
  font-size: .78rem; color: rgba(203,168,113,.85); font-style: italic;
  margin-top: 6px; line-height: 1.45;
}

/* Pulse-focus animation when the widget gets targeted from CTAs */
.pd-pulse-focus { position: relative; }
.pd-pulse-focus::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 22px;
  box-shadow: 0 0 0 0 rgba(203,168,113,.55);
  animation: pdPulseFocusWidget 1.6s cubic-bezier(.16,1,.3,1) 1;
  pointer-events: none;
}
@keyframes pdPulseFocusWidget {
  0%   { box-shadow: 0 0 0 0 rgba(203,168,113,.55); }
  60%  { box-shadow: 0 0 0 22px rgba(203,168,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,168,113,0); }
}

/* Mobile: bigger tap targets, breathing room */
@media (max-width: 680px) {
  .pd-wid .pd-opt { padding: 18px 18px 16px !important; }
  .pd-wid .pd-opt-name { font-size: 1.05rem !important; }
  .pd-wid .pd-opt-desc { font-size: .85rem !important; line-height: 1.45; }
  .pd-wid .pd-opt-bestfor { font-size: .75rem !important; margin-top: 4px; }
  .pd-wid .pd-opt-badge { top: 10px; right: 10px; font-size: .54rem; padding: 3px 9px; }
}

/* Reduced-motion: disable widget animations */
@media (prefers-reduced-motion: reduce) {
  .pd-wid .pd-opt, .pd-wid .pd-opt:hover, .pd-wid .pd-opt:active { transform: none !important; transition: none !important; }
  .pd-pulse-focus::before { animation: none !important; }
}


/* --- 2026-05-18 step indicator centering override (v2 absolute-position) --- */
.pd-wid .pd-top {
  position: relative !important;
  min-height: 32px !important;
}
.pd-wid .pd-steps {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
  gap: 6px !important;
}
.pd-wid .pd-back-spacer,
.pd-wid .pd-tag-empty,
.pd-wid .pd-back,
.pd-wid .pd-tag {
  position: relative;
  z-index: 1;
}


/* --- 2026-05-18 step indicator text hide (handles stale-cache bw-* class names too) --- */
.pd-wid .pd-step,
.pd-wid .pd-step *,
.bw-progress-step,
.bw-progress-step * {
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
}
.pd-wid .pd-step.done::before,
.bw-progress-step.done::before {
  content: "\2713";
  font-size: .85rem !important;
  line-height: 1 !important;
  color: #03060c !important;
  display: inline-block;
}
