/* ============================================================
   Rent 20 Yard Dumpster KC — custom.css
   Design: Clean Light — white + rent20 gold + charcoal
   Fonts: Oswald (headings) + Open Sans (body)
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.5vw,  1.375rem);
  --text-xl:   clamp(1.375rem, 1.1rem  + 1vw,    2rem);
  --text-2xl:  clamp(1.75rem,  1rem    + 2vw,    3rem);
  --text-3xl:  clamp(2.25rem,  1rem    + 3.5vw,  4rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm:   0.25rem;
  --radius-md:   0.4rem;
  --radius-lg:   0.625rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-default: 1160px;

  /* Light palette */
  --clr-bg:           #ffffff;
  --clr-bg-alt:       #f7f8fa;
  --clr-bg-alt2:      #eef0f4;
  --clr-surface:      #ffffff;
  --clr-border:       #dde1ea;
  --clr-divider:      #eaecf0;

  --clr-text:         #1a1f2e;
  --clr-text-muted:   #56606e;
  --clr-text-faint:   #9aa3b0;

  /* Rent15 brand blue accent + green flourish */
  --clr-red:          #f0b000;  /* primary gold */
  --clr-red-dark:     #c07000;  /* dark gold */
  --clr-red-light:    #fef5d9;  /* light gold wash */

  /* Green accent (from logo swoosh) — used for 'Most Popular' and small flourishes */
  --clr-green:        #7fc423;
  --clr-green-dark:   #5c9b12;
  --clr-green-light:  #ecf7d8;

  /* Supporting charcoal */
  --clr-charcoal:     #1a1f2e;
  --clr-charcoal-2:   #262d3d;

  --clr-primary:      var(--clr-red);
  --clr-primary-dark: var(--clr-red-dark);

  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'Open Sans', 'Helvetica Neue', sans-serif;

  --shadow-xs: 0 1px 3px rgba(26,31,46,0.08);
  --shadow-sm: 0 2px 8px rgba(26,31,46,0.10);
  --shadow-md: 0 6px 24px rgba(26,31,46,0.12);
  --shadow-lg: 0 16px 48px rgba(26,31,46,0.14);
}

/* ── Base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.1; font-family: var(--font-display); letter-spacing: 0.01em; }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }

a, button, [role="button"], input, textarea, select {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition), opacity var(--transition);
}

:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: rgba(240,176,0,0.15); color: var(--clr-text); }

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

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-5), 4vw, var(--space-10));
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  background: var(--clr-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-red);
}
.btn-primary:hover { background: var(--clr-red-dark); border-color: var(--clr-red-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--clr-charcoal);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-border);
}
.btn-secondary:hover { border-color: var(--clr-red); color: var(--clr-red); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.65rem 1.5rem;
  background: transparent;
  color: var(--clr-red);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-red);
}
.btn-outline:hover { background: var(--clr-red-light); }

/* Nav CTA button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--clr-red);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-red);
  margin-left: var(--space-2);
}
.btn-nav-cta:hover { background: var(--clr-red-dark) !important; border-color: var(--clr-red-dark) !important; }

.link-btn {
  background: none; border: none; color: var(--clr-red); text-decoration: underline;
  cursor: pointer; font: inherit; padding: 0;
}
.link-btn:hover { color: var(--clr-red-dark); }

/* ── Section Shared ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-12); }
.section-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: var(--clr-red-light);
  color: var(--clr-red);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(240,176,0,0.2);
}
.section-title { font-size: var(--text-2xl); color: var(--clr-text); margin-bottom: var(--space-4); }
.section-sub { font-size: var(--text-base); color: var(--clr-text-muted); max-width: 65ch; margin-inline: auto; line-height: 1.7; }
.accent-gold { color: var(--clr-red); }

/* ── HEADER ─────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding: var(--space-3) clamp(var(--space-5), 4vw, var(--space-10));
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 54px; width: auto; object-fit: contain; }

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-left: auto;
}
.header-nav a {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-nav a:hover { color: var(--clr-red); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--clr-red) !important;
  font-weight: 700 !important;
}
.nav-phone svg { width: 14px; height: 14px; }

#mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  margin-left: auto;
  background: none;
  border: none;
}
#mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: var(--radius-full);
}

#mobile-nav {
  display: none;
  flex-direction: column;
  padding: var(--space-4) clamp(var(--space-5), 4vw, var(--space-10)) var(--space-6);
  border-top: 1px solid var(--clr-border);
  background: #fff;
  gap: var(--space-1);
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--clr-divider);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
#mobile-nav a:hover { color: var(--clr-red); }
#mobile-nav .mobile-cta {
  margin-top: var(--space-4);
  text-align: center;
  justify-content: center;
  border-bottom: none;
}

@media (max-width: 860px) {
  .header-nav { display: none; }
  #mobile-menu-btn { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
}

.hero-inner {
  max-width: var(--content-default);
  margin-inline: auto;
  padding: clamp(var(--space-12), 7vw, var(--space-20)) clamp(var(--space-5), 4vw, var(--space-10));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: var(--space-4);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(240,176,0,0.25);
  border-radius: var(--radius-full);
  background: var(--clr-red-light);
}

.hero-heading {
  font-size: var(--text-3xl);
  color: var(--clr-charcoal);
  line-height: 1.05;
  margin-bottom: var(--space-5);
  text-transform: uppercase;
}

.hero-sub {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  max-width: 50ch;
  margin-bottom: var(--space-6);
  line-height: 1.75;
}
.hero-sub strong { color: var(--clr-text); }

.hero-sub-link { color: var(--clr-red); font-weight: 600; text-decoration: none; }
.hero-sub-link:hover { text-decoration: underline; }

.hero-dims {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.dim-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.4rem 0.9rem;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text);
  width: fit-content;
}
.dim-badge svg { color: var(--clr-red); width: 14px; height: 14px; flex-shrink: 0; }

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.trust-badge svg { color: var(--clr-red); width: 14px; height: 14px; flex-shrink: 0; }

/* Hero image */
.hero-image-wrap { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-dumpster-img { width: 100%; max-width: 540px; height: auto; drop-shadow: drop-shadow(0 16px 40px rgba(240,176,0,0.10)); }

.hero-price-tag {
  position: absolute;
  bottom: var(--space-8);
  left: 0;
  background: var(--clr-charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.price-from { font-size: var(--text-xs); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amt { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; color: #fff; line-height: 1; }
.price-per { font-size: var(--text-xs); color: rgba(255,255,255,0.6); }

/* Stats bar */
.hero-stats-bar {
  background: var(--clr-charcoal);
  padding: var(--space-6) 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-3) var(--space-8);
}
.stat-item strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-item span {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: var(--space-8); }
  .hero-sub { margin-inline: auto; }
  .hero-dims, .hero-actions, .trust-row { justify-content: center; }
  .dim-badge { margin-inline: auto; }
  .hero-image-wrap { order: -1; }
  .hero-price-tag { left: 50%; transform: translateX(-50%); bottom: var(--space-4); }
  .stat-sep { display: none; }
  .stats-inner { gap: var(--space-4); }
}

/* ── BOOKING SECTION ──────────────────────────────────────────── */
.book-section {
  background: var(--clr-bg-alt);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
  border-bottom: 1px solid var(--clr-border);
}

.booking-layout { display: flex; flex-direction: column; gap: var(--space-8); }

/* Step bar */
.steps-bar {
  display: flex;
  align-items: center;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-8);
  box-shadow: var(--shadow-xs);
  overflow-x: auto;
  scrollbar-width: none;
}
.steps-bar::-webkit-scrollbar { display: none; }
.step-connector { flex: 1; height: 2px; background: var(--clr-border); min-width: var(--space-6); }
.step-item {
  display: flex; align-items: center; gap: var(--space-3);
  background: none; border: none; cursor: pointer;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  color: var(--clr-text-faint);
  white-space: nowrap;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  background: var(--clr-bg-alt);
  border: 2px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xs); font-weight: 700; color: var(--clr-text-muted);
  flex-shrink: 0;
}
.step-label { font-size: var(--text-sm); font-weight: 600; font-family: var(--font-display); letter-spacing: 0.04em; text-transform: uppercase; }
.step-item.active .step-num { background: var(--clr-red); border-color: var(--clr-red); color: #fff; }
.step-item.active { color: var(--clr-text); }
.step-item.done .step-num { background: rgba(240,176,0,0.1); border-color: var(--clr-red); color: var(--clr-red); }
.step-item.done { color: var(--clr-red); }
.step-item:disabled { opacity: 0.4; cursor: not-allowed; }

.booking-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-8);
  align-items: start;
}
.panels-wrap { order: 1; }
.order-summary { order: 2; }

/* Order Summary */
.order-summary {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(80px + var(--space-4));
  box-shadow: var(--shadow-xs);
}
.summary-head {
  background: var(--clr-charcoal);
  color: #fff;
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.summary-body { padding: var(--space-5) var(--space-6); display: flex; flex-direction: column; gap: 0; }
.summary-body > .order-line { margin-bottom: var(--space-2); }
.summary-body > #summary-addons-container { margin-bottom: 0; }
.order-line { display: flex; justify-content: space-between; font-size: var(--text-sm); color: var(--clr-text-muted); gap: var(--space-2); margin: 0; padding: 0; }
.order-line-price { font-weight: 700; color: var(--clr-red); white-space: nowrap; }
.order-divider { height: 1px; background: var(--clr-border); margin: var(--space-2) 0; }
.order-total { font-family: var(--font-display); font-weight: 700; font-size: var(--text-lg); color: var(--clr-text); }
#summary-total { color: var(--clr-red); }
.summary-note {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  border-top: 1px solid var(--clr-border);
  font-size: 13px; color: var(--clr-text-faint);
}
.summary-note svg { color: var(--clr-text-faint); width: 14px; height: 14px; flex-shrink: 0; }
.lock-red { color: var(--clr-red) !important; }

/* Panels */
.booking-panel { display: none; background: var(--clr-surface); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-xs); }
.booking-panel.active { display: block; }

.panel-title { font-size: var(--text-xl); margin-bottom: var(--space-6); color: var(--clr-charcoal); text-transform: uppercase; }
.panel-sub { font-size: var(--text-sm); color: var(--clr-text-muted); margin-top: calc(-1 * var(--space-4)); margin-bottom: var(--space-6); }

/* Single dumpster card */
.dumpster-display { margin-bottom: var(--space-8); }
.size-card {
  background: var(--clr-bg-alt);
  border: 2px solid var(--clr-red);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.size-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.size-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; color: var(--clr-charcoal); text-transform: uppercase; margin-bottom: var(--space-2); }
.size-dims { font-size: var(--text-sm); color: var(--clr-text-muted); }
.size-weight { font-size: var(--text-sm); color: var(--clr-red); font-weight: 700; margin-top: var(--space-1); }
.size-price-block { text-align: right; }
.price-val { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--clr-red); line-height: 1; }
.price-note { font-size: var(--text-xs); color: var(--clr-text-faint); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.day-row { display: flex; align-items: center; gap: var(--space-4); margin-bottom: var(--space-5); flex-wrap: wrap; }
.day-row-label { font-size: var(--text-sm); color: var(--clr-text-muted); font-weight: 600; white-space: nowrap; }
.day-btns { display: flex; gap: var(--space-2); }
.day-btn {
  padding: 0.4rem 1rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: transparent;
  font-size: var(--text-sm); font-weight: 600;
  color: var(--clr-text-muted);
  cursor: pointer;
}
.day-btn:hover { border-color: var(--clr-red); color: var(--clr-red); }
.day-btn.active { border-color: var(--clr-red); background: var(--clr-red-light); color: var(--clr-red); }

.size-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; }
.size-use { font-size: var(--text-xs); color: var(--clr-text-muted); flex: 1; max-width: 52ch; line-height: 1.6; }
.btn-add-to-cart {
  padding: 0.6rem 1.4rem;
  background: var(--clr-charcoal);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  white-space: nowrap;
}
.btn-add-to-cart:hover { background: var(--clr-red); }

.more-days-note { font-size: var(--text-xs); color: var(--clr-text-muted); margin-top: var(--space-3); }
.more-days-note a { color: var(--clr-red); }

/* Fields */
.field-group { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-8); }
.field-group-label { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clr-text-muted); border-bottom: 1px solid var(--clr-border); padding-bottom: var(--space-3); margin-bottom: calc(-1 * var(--space-2)); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field-row { display: grid; gap: var(--space-5); }
.field-row.two-col { grid-template-columns: 1fr 1fr; }
.field-row.three-col { grid-template-columns: 2fr 1fr 1fr; }

label { font-size: var(--text-sm); font-weight: 600; color: var(--clr-text-muted); }
.req { color: var(--clr-red); margin-left: 2px; }
.optional { font-weight: 400; color: var(--clr-text-faint); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  font-size: var(--text-sm);
  line-height: 1.5;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(240,176,0,0.1);
}
input::placeholder, textarea::placeholder { color: var(--clr-text-faint); }
select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2356606e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  padding-right: 2.5rem;
}
textarea { resize: vertical; min-height: 80px; }
.field-note { font-size: var(--text-xs); color: var(--clr-red); margin-top: var(--space-1); display: none; }
.field-note.visible, #time-surcharge-note { display: block; }

/* Add-ons */
.addon-section-title {
  font-family: var(--font-display);
  font-size: var(--text-sm); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--clr-charcoal);
  margin: var(--space-8) 0 var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--clr-charcoal);
}
.addon-section-title:first-of-type { margin-top: 0; }
.addon-section-desc {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin: calc(-1 * var(--space-2)) 0 var(--space-3);
  font-style: italic;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.addon-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  cursor: pointer;
  user-select: none;
}
.addon-card:hover { border-color: var(--clr-red); }
.addon-card.checked { border-color: var(--clr-red); background: var(--clr-red-light); }
.addon-card input[type="checkbox"] { display: none; }
.addon-check {
  width: 18px; height: 18px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--clr-border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.addon-card.checked .addon-check { background: var(--clr-red); border-color: var(--clr-red); }
.addon-card.checked .addon-check::after { content: '✓'; font-size: 11px; color: #fff; font-weight: 900; }
.addon-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.addon-top-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  margin-top: -4px !important;
}
.addon-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-charcoal);
  line-height: 1.2;
}
.addon-price {
  font-size: var(--text-sm);
  color: var(--clr-red);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.addon-desc {
  font-size: 12px;
  color: var(--clr-text-muted);
  line-height: 1.55;
}

/* Agreement */
.agreement-check-wrap {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-6);
}
.agree-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.agree-label input[type="checkbox"] { width: auto; margin-top: 3px; accent-color: var(--clr-red); }

.form-error {
  background: rgba(240,176,0,0.06);
  border: 1px solid rgba(240,176,0,0.25);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm); color: var(--clr-red);
  margin-bottom: var(--space-5);
}

.panel-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap; gap: var(--space-4);
}

/* Confirm */
.confirm-wrap { text-align: center; padding: var(--space-12) var(--space-8); }
.confirm-icon { margin: 0 auto var(--space-6); color: var(--clr-red); }
.confirm-icon svg { width: 64px; height: 64px; }
.confirm-title { font-size: var(--text-xl); margin-bottom: var(--space-5); color: var(--clr-red); text-transform: uppercase; }
.confirm-msg { font-size: var(--text-base); color: var(--clr-text-muted); max-width: 55ch; margin: 0 auto var(--space-4); }
.confirm-tip { font-size: var(--text-sm); color: var(--clr-text-faint); margin-top: var(--space-8); }
.confirm-msg a { color: var(--clr-red); }

@media (max-width: 960px) { .booking-body { grid-template-columns: 1fr; } .order-summary { position: static; } }

  /* ===== v3.2 booking-form card top layout + extra days ===== */
  .orderform .dc-image {
    display: block;
    width: 100%;
    max-width: 200px;
    height: 100px;
    margin: 0 0 12px;
    object-fit: contain;
    object-position: center;
  }
  .orderform .dumpster-card[data-product-id="11"] .dc-image { height: 120px; }

  /* Card top: image LEFT, yard name + price stacked RIGHT */
  .orderform .dc-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
  }
  .orderform .dc-top .dc-image {
    flex: 0 0 110px;
    width: 110px;
    max-width: 110px;
    height: 80px;
    margin: 0;
    object-fit: contain;
    object-position: center;
  }
  .orderform .dumpster-card[data-product-id="11"] .dc-top .dc-image { height: 92px; }
  .orderform .dc-title-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    padding-left: 20px;
  }
  .orderform .dc-title-col .dc-name { margin: 0; line-height: 1.1; }
  .orderform .dc-title-col .dc-price-inline { margin: 0; }
  .orderform .dc-title-col .dc-dims { margin: 4px 0 0 0; }

  /* Extra-days stepper row */
  .orderform .dc-extra-days {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 16px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
  }
  .orderform .dc-extra-stepper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fafafa;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    padding: 2px 4px;
  }
  .orderform .dc-extra-stepper button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    line-height: 1;
    padding: 0;
  }
  .orderform .dc-extra-stepper button:hover { background: #ececec; }
  .orderform .dc-extra-stepper button:disabled { color: #bbb; cursor: not-allowed; }
  .orderform .dc-extra-stepper .dc-extra-val {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
  }
  .orderform .dc-extra-rate {
    font-size: 12px;
    color: #666;
  }

  @media (max-width: 600px) { .field-row.two-col, .field-row.three-col { grid-template-columns: 1fr; } .addon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .addon-grid { grid-template-columns: 1fr; } }

/* ── USE CASES ─────────────────────────────────────────────────── */
.projects-section { padding: clamp(var(--space-16), 8vw, var(--space-24)) 0; background: var(--clr-bg); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.project-card {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.project-card:hover { border-color: var(--clr-red); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.project-icon { color: var(--clr-red); margin-bottom: var(--space-4); }
.project-icon svg { width: 28px; height: 28px; }
.project-card h3 { font-size: var(--text-base); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-3); color: var(--clr-charcoal); }
.project-card p { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.75; }

.haul-note-inner {
  display: flex; gap: var(--space-4); align-items: flex-start;
  background: var(--clr-bg-alt);
  border: 1px solid rgba(240,176,0,0.2);
  border-left: 4px solid var(--clr-red);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.haul-note-inner svg { color: var(--clr-red); flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }
.haul-note-inner p { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.7; }
.haul-note-inner a { color: var(--clr-red); }

@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .projects-grid { grid-template-columns: 1fr; } }

/* ── HOW IT WORKS ─────────────────────────────────────────────── */
.how-section {
  background: var(--clr-charcoal);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}
.how-section .section-tag { background: rgba(240,176,0,0.2); color: #4da6ff; border-color: rgba(240,176,0,0.3); }
.how-section .section-title { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,0.6); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
.how-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.how-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: rgba(240,176,0,0.4);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.how-icon { color: var(--clr-red); margin-bottom: var(--space-4); }
.how-icon svg { width: 24px; height: 24px; }
.how-step h3 { font-size: var(--text-base); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-3); color: #fff; }
.how-step p { font-size: var(--text-sm); color: rgba(255,255,255,0.6); line-height: 1.75; }

.pdf-banner {
  display: flex; align-items: center; gap: var(--space-6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}
.pdf-banner-icon { color: var(--clr-red); flex-shrink: 0; }
.pdf-banner-icon svg { width: 36px; height: 36px; }
.pdf-banner-text { flex: 1; }
.pdf-banner-text strong { font-family: var(--font-display); font-size: var(--text-base); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.pdf-banner-text p { font-size: var(--text-sm); color: rgba(255,255,255,0.6); margin-top: var(--space-1); }

@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-grid { grid-template-columns: 1fr; } .pdf-banner { flex-direction: column; text-align: center; } }

/* ── SAVINGS ──────────────────────────────────────────────────── */
.savings-section {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}

.savings-main { margin-bottom: var(--space-10); }

.savings-headline {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  background: var(--clr-charcoal);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  margin-bottom: var(--space-8);
}
.savings-pct-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--clr-red);
  line-height: 1;
  flex-shrink: 0;
}
.savings-headline strong { font-family: var(--font-display); font-size: var(--text-lg); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.savings-headline p { font-size: var(--text-sm); color: rgba(255,255,255,0.6); margin-top: var(--space-2); }

.savings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.savings-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  border-top: 4px solid var(--clr-red);
}
.savings-pct {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--clr-red);
  margin-bottom: var(--space-3);
}
.savings-card h3 { font-size: var(--text-base); font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: var(--space-3); color: var(--clr-charcoal); }
.savings-card p { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.7; }

.loyalty-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.loyalty-item {
  display: flex; align-items: flex-start; gap: var(--space-5);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-8);
}
.loyalty-icon { color: var(--clr-red); flex-shrink: 0; }
.loyalty-icon svg { width: 28px; height: 28px; }
.loyalty-item strong { font-family: var(--font-display); font-size: var(--text-base); color: var(--clr-charcoal); text-transform: uppercase; letter-spacing: 0.03em; }
.loyalty-item p { font-size: var(--text-sm); color: var(--clr-text-muted); margin-top: var(--space-2); line-height: 1.7; }

@media (max-width: 900px) { .savings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .loyalty-strip { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .savings-grid { grid-template-columns: 1fr; } .savings-headline { flex-direction: column; text-align: center; } }

/* ── LOCATIONS ────────────────────────────────────────────────── */
.locations-section { padding: clamp(var(--space-16), 8vw, var(--space-24)) 0; background: var(--clr-bg); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 260px;
  gap: var(--space-8);
}
.loc-state {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-size: var(--text-base); font-weight: 600;
  color: var(--clr-red); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--clr-red);
}
.loc-state svg { width: 16px; height: 16px; }
.loc-list li { font-size: var(--text-sm); color: var(--clr-text-muted); padding: var(--space-2) 0; border-bottom: 1px solid var(--clr-divider); }
.loc-call-inner {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-red);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-5); height: 100%;
}
.loc-call-inner svg { color: var(--clr-red); width: 32px; height: 32px; }
.loc-call-inner p { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.7; }

.loc-accepts { width: 100%; margin-top: var(--space-6); text-align: left; }
.loc-accepts-title {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-size: var(--text-xs);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--clr-red); margin-bottom: var(--space-2);
}
.loc-accepts-title.loc-prohib { color: var(--clr-text-muted); margin-top: var(--space-4); }
.loc-accepts-title svg { width: 14px; height: 14px; flex-shrink: 0; }
.loc-accepts-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.loc-accepts-list li {
  font-size: 13px; color: var(--clr-text-muted);
  padding: 3px 0;
  border-bottom: 1px solid var(--clr-divider);
}
.loc-accepts-list li:last-child { border-bottom: none; }

@media (max-width: 900px) { .locations-grid { grid-template-columns: 1fr 1fr; } .loc-call { grid-column: 1 / -1; } }
@media (max-width: 560px) { .locations-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: clamp(var(--space-16), 8vw, var(--space-24)) 0;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.testimonial-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-xs);
}
.stars { color: #f59e0b; font-size: var(--text-base); margin-bottom: var(--space-4); }
.testimonial-card p { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.75; margin-bottom: var(--space-5); font-style: italic; }
.testimonial-author { font-family: var(--font-display); font-size: var(--text-xs); font-weight: 600; color: var(--clr-red); text-transform: uppercase; letter-spacing: 0.08em; }

@media (max-width: 860px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-section { padding: clamp(var(--space-16), 8vw, var(--space-24)) 0; background: var(--clr-bg); }
.faq-list { max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--space-2); }
.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.faq-question {
  width: 100%; text-align: left;
  padding: var(--space-6);
  font-family: var(--font-display); font-size: var(--text-base);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--clr-charcoal);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.faq-question::after {
  content: '+';
  font-size: var(--text-xl); color: var(--clr-red);
  font-weight: 300; flex-shrink: 0; line-height: 1;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-question:hover { color: var(--clr-red); }
.faq-answer { display: none; padding: 0 var(--space-6) var(--space-6); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.8; }

/* ── FOOTER CTA ───────────────────────────────────────────────── */
.footer-cta {
  background: var(--clr-charcoal);
  padding: clamp(var(--space-12), 6vw, var(--space-20)) 0;
}
.footer-cta-inner { text-align: center; }
.footer-cta h2 { font-size: var(--text-2xl); color: #fff; margin-bottom: var(--space-4); text-transform: uppercase; }
.footer-cta p { color: rgba(255,255,255,0.6); margin-bottom: var(--space-8); }
.footer-cta-btns { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.footer-cta .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); }
.footer-cta .btn-secondary:hover { border-color: var(--clr-red); color: var(--clr-red); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: #111620;
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: var(--space-10);
  margin-bottom: var(--space-8);
}
.footer-logo { height: 52px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.5); margin-bottom: var(--space-4); line-height: 1.7; }
.footer-phone { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--clr-red); text-decoration: none; }
.footer-phone:hover { color: #fff; }

.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links strong { font-family: var(--font-display); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: var(--space-2); }
.footer-links a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); text-decoration: none; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.footer-links a:hover { color: var(--clr-red); }

.footer-agree-link {
  background: none; border: none;
  color: rgba(255,255,255,0.55);
  font: inherit; font-size: var(--text-sm);
  text-align: left; cursor: pointer; padding: 0;
  text-decoration: none;
}
.footer-agree-link:hover { color: var(--clr-red); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 0 var(--space-6);
}
.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding-bottom: var(--space-6);
  line-height: 1.6;
}
.footer-copy-link {
  color: rgba(255,255,255,0.3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-copy-link:hover {
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── AGREEMENT DRAWER ─────────────────────────────────────────── */
.agreement-backdrop {
  position: fixed; inset: 0;
  background: rgba(26,31,46,0.6);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.agreement-backdrop.open { opacity: 1; pointer-events: auto; }

.agreement-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(540px, 100vw);
  background: #fff;
  border-left: 1px solid var(--clr-border);
  z-index: 300;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}
.agreement-drawer.open { transform: translateX(0); }

.agreement-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-charcoal);
  flex-shrink: 0;
}
.agreement-header h2 { font-size: var(--text-lg); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; }
.agreement-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); padding: var(--space-2);
  border-radius: var(--radius-md);
}
.agreement-close:hover { color: #fff; }
.agreement-close svg { width: 20px; height: 20px; }

.agreement-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  box-sizing: border-box;
}

.sig-field { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-4); }
.sig-field label { font-size: var(--text-sm); font-weight: 600; color: var(--clr-text-muted); }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.rev { opacity: 0; transform: translateY(18px); transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); }
.rev.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rev { opacity: 1; transform: none; transition: none; } }

/* ── Legal Agreement Styles ─────────────────────────────────── */
.legal-container {
  font-family: var(--font-body);
  font-size: 13px;
  color: #333;
  line-height: 1.65;
}
.legal-container h1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-red);
  text-transform: none;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
}
.legal-dba {
  font-size: 12px !important;
  color: #777 !important;
  font-style: italic;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}
.legal-container h2 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #1a1f2e;
  margin: 0 0 0.4rem;
  text-transform: none;
  letter-spacing: 0;
}
.legal-container p {
  font-size: 13px;
  color: #333;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.legal-container ul {
  padding-left: 1.25rem;
  margin: 0 0 0.75rem;
}
.legal-container ul li {
  font-size: 13px;
  color: #333;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.legal-divider { height: 1px; background: #e0e3ea; margin: 1.1rem 0; }
/* Reset browser default link colors inside legal */
.legal-container a { color: var(--clr-red) !important; font-weight: 600; text-decoration: none; }
.legal-container a:visited { color: var(--clr-red) !important; }
.legal-container a:hover { text-decoration: underline; }
.legal-link { color: var(--clr-red) !important; font-weight: 600; text-decoration: none; }
.legal-link:visited { color: var(--clr-red) !important; }
.legal-link:hover { text-decoration: underline; }
.allcaps { text-transform: uppercase; font-weight: 700; color: var(--clr-red); font-size: 13px; display: block; margin-bottom: 0.4rem; }
.fee-highlight {
  background: var(--clr-bg-alt);
  border-left: 4px solid var(--clr-red);
  padding: 0.875rem 1rem;
  margin: 0.875rem 0;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: #444;
  line-height: 1.7;
}
.insurance-note {
  background: #fff8f0;
  border-left: 4px solid #f59e0b;
  padding: 0.75rem 1rem;
  margin: 0.75rem 0;
  font-style: italic;
  font-size: var(--text-sm);
  color: #555;
  border-radius: var(--radius-md);
  line-height: 1.6;
}

/* ── Footer contact row ─────────────────────────────────────── */
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.footer-text-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-text-link:hover { color: var(--clr-red); }

/* ── btn-secondary-txt — Text for Pickup button in footer ─── */
.btn-secondary-txt {
  padding: 0.4rem 1rem;
  font-size: var(--text-xs);
  border-width: 1px;
  color: rgba(255,255,255,0.7) !important;
  border-color: rgba(255,255,255,0.25) !important;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-secondary-txt:hover {
  color: #fff !important;
  border-color: var(--clr-red) !important;
}

/* ── Fix gap between Early Delivery row and addons container ── */
#summary-addons-container:empty { display: none; }
#summary-addons-container { margin-top: 0; padding-top: 0; display: flex; flex-direction: column; gap: var(--space-2); }

/* ============================================================
   Phase 4.3.49 — Migrated from inline <style> block in index.html
   All booking-form + page styles previously at index.html:59-1714
   ============================================================ */
/* Google Places autocomplete dropdown — must be outside scoped prefix since Google appends to body */
.pac-container { z-index: 99999 !important; font-family: inherit; border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); border: 1px solid #e0e0e0; }
.pac-container.dikc-hide { display:none !important; }
.pac-item { padding: 6px 12px; font-size: 13px; cursor: pointer; }
.pac-item:hover { background: #fef5d9; }
.pac-item-query { font-weight: 600; color: #1a1f2e; }

/* ----------------------------------------------------------------
   Joomla top-bar cart icon fix (unscoped — header lives outside
   the .orderform wrapper). The template's cart SVG uses viewBox
   "0 0 24 24" with stroke-width 2 on a path that starts at y=1,
   so the top of the handle gets clipped by the SVG bounding box.
   Forcing overflow:visible on the icon + giving the button a tiny
   bit of breathing room keeps the full cart glyph rendered.
   ---------------------------------------------------------------- */
.odoo-cart-btn svg,
#sp-top-bar .odoo-btn svg,
#sp-top-bar svg { overflow: visible; }

#sp-top-bar .odoo-cart-btn,
#sp-top-bar .odoo-btn {
  align-items: center;
  line-height: 1;
}

/* =============================================
   SCOPED STYLES — ALL SELECTORS PREFIXED WITH
   .orderform or #orderform
   No body / html / :root selectors used
   ============================================= */

  .orderform *,
  .orderform *::before,
  .orderform *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .orderform {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    font-size: 16px;
    color: #1a1f2e;
    line-height: 1.5;
    background: #ffffff;
    padding: 0 0 48px 0;
  }

  /* ---- ACCOUNT BAR ---- */
  .orderform .acct-bar {
    background: #efefef;
    border-radius: 5px 5px 0px 0px;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    flex-wrap: wrap;
    position: relative;
  }

  .orderform .acct-bar span { color: #555; }

  /* Phase 4.3.41 — Login icon + word vertically aligned. */
  .orderform .acct-bar-btn {
    background: none;
    border: none;
    color: #f0b000;
    font-size: 13px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
  }
  .orderform .acct-bar-btn svg { display: block; }

  .orderform .acct-bar-btn:hover { color: #c07000; }

  .orderform .acct-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
  }

  .orderform .acct-user-info strong { color: #1a1f2e; }

  /* ---- LOGIN DROPDOWN ---- */
  /* Login popup */
  .orderform .login-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
  }
  .orderform .login-popup-overlay.open {
    display: flex;
  }
  .orderform .login-popup-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 400px;
    max-width: 95vw;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    position: relative;
  }
  .orderform .login-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
  }
  .orderform .login-popup-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
  }
  .orderform .login-popup-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 0 4px;
  }
  .orderform .login-popup-close:hover { color: #222; }
  .orderform .login-popup-body {
    padding: 24px 20px;
  }
  .orderform .login-popup-body .field-group {
    margin-bottom: 14px;
  }
  .orderform .login-popup-body label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
  }
  .orderform .login-popup-body input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #222;
    box-sizing: border-box;
  }
  .orderform .login-popup-body input:focus {
    outline: none;
    border-color: #f0b000;
  }
  .orderform .login-popup-error {
    background: #fef5d9;
    border: 1px solid #f5c0c0;
    color: #c0392b;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 5px;
    margin-bottom: 12px;
    display: none;
  }
  .orderform .login-popup-btn {
    width: 100%;
    padding: 12px;
    background: #f0b000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
  }
  .orderform .login-popup-btn:hover { background: #c07000; }
  .orderform .login-popup-footer {
    text-align: center;
    padding: 12px 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #888;
  }
  .orderform .login-popup-footer a {
    color: #f0b000;
    text-decoration: none;
  }

  /* Policy popup */
  .orderform .policy-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
  }
  .orderform .policy-popup-overlay.open {
    display: flex;
  }
  .orderform .policy-popup-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: 700px;
    max-width: 96vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  }
  .orderform .policy-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
    flex-shrink: 0;
  }
  .orderform .policy-popup-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
  }
  .orderform .policy-popup-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 0 4px;
  }
  .orderform .policy-popup-close:hover { color: #222; }
  .orderform .policy-popup-frame {
    width: 100%;
    flex: 1;
    border: none;
    min-height: 500px;
  }
  .orderform .view-policy-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    color: #415781;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
  }
  .orderform .view-policy-link:hover { color: #f0b000; }

  /* ---- MAIN LAYOUT ---- */
  .orderform .form-outer {
    max-width: 1100px;
    margin: 24px auto;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start;
    background: #ffffff;
    overflow: visible;
    border: 1px solid #d7d7d7;
    border-radius: 20px;
  }

  @media (max-width: 860px) {
    .orderform .form-outer {
      grid-template-columns: 1fr;
    }
  }

  .orderform .form-main { min-width: 0; }

  /* ---- STEP INDICATOR ---- */
  .orderform .step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 4px 0;
  }

  .orderform .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    position: relative;
  }

  .orderform .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
  }

  .orderform .step-item.active::after,
  .orderform .step-item.completed::after {
    background: #f0b000;
  }

  .orderform .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 1;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }

  .orderform .step-item.active .step-circle {
    background: #f0b000;
    color: #fff;
  }

  .orderform .step-item.completed .step-circle {
    background: #f0b000;
    color: #fff;
  }

  /* FIX 8 — Clickable completed steps */
  .orderform .step-item.completed { cursor: pointer; }
  .orderform .step-item.completed:hover .step-circle { background: #c07000; }

  .orderform .step-label {
    font-size: 16px;
    color: #888;
    margin-top: 5px;
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
  }

  .orderform .step-item.active .step-label { color: #f0b000; font-weight: 700; }
  .orderform .step-item.completed .step-label { color: #f0b000; }

  /* ---- FORM CARD ---- */
  .orderform .form-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 16px;
  }

  .orderform .form-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1f2e;
  }

  .orderform .form-card .step-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
  }

  /* ---- DUMPSTER CARDS ---- */
  .orderform .dumpster-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  @media (max-width: 600px) {
    .orderform .dumpster-grid { grid-template-columns: 1fr; }
  }

  .orderform .dumpster-card {
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  }

  /* FIX 1 — Selected dumpster: orange left-border + light tint */
  .orderform .dumpster-card:hover { border-color: #f0b000; box-shadow: 0 2px 12px rgba(240,176,0,0.1); }
  .orderform .dumpster-card.selected {
    border-left: 4px solid #f0b000;
    border-top-color: #e8e8e8;
    border-right-color: #e8e8e8;
    border-bottom-color: #e8e8e8;
    background: #fef5d9;
    box-shadow: 0 4px 16px rgba(240,176,0,0.10);
  }

  .orderform .dumpster-card .dc-badge {
    position: absolute;
    top: -1px;
    right: 12px;
    background: var(--clr-green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .orderform .dumpster-card .dc-check {
    position: absolute;
    top: 10px;
    left: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0b000;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
  }

  .orderform .dumpster-card.selected .dc-check { display: flex; }

  /* FIX 7 — Compact card layout */
  .orderform .dc-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
  }

  .orderform .dc-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f2e;
  }

  .orderform .dc-price-inline {
    display: flex;
    align-items: baseline;
    gap: 3px;
  }

  .orderform .dc-price-num {
    font-size: 32px;
    font-weight: 700;
    color: #f0b000;
    line-height: 1.1;
  }

  .orderform .dc-price-per {
    font-size: 13px;
    color: #888;
  }

  .orderform .dc-dims {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
  }

  /* FIX 6 — Call Us line */
  .orderform .dc-call-line {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    text-align: center;
    margin: 12px 0;
  }

  .orderform .call-link {
    color: #f0b000;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
  }

  .orderform .call-link:hover { text-decoration: underline; }

  /* FIX 5 — Badge row (Phase 4.4.07s followup3: tightened to fit on 1 line) */
  .orderform .dc-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
  }

  .orderform .badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 4px;
    border-radius: 5px;
    line-height: 1.7;
    white-space: nowrap;
  }

  .orderform .badge-gray {
    background: #f0f0f0;
    color: #444;
    border: 1px solid #ddd;
  }

  .orderform .badge-stock {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    min-width: 20px;
    background: #f0f0f0;
    color: #aaa;
  }

  .orderform .badge-stock-in {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
  }

  .orderform .badge-stock-out {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
  }

  .orderform .card-unavailable {
    opacity: 0.55;
    pointer-events: none;
  }

  .orderform .card-unavailable .dc-select-btn {
    background: #aaa !important;
    cursor: not-allowed;
  }

  /* rental toggle */
  .orderform .rental-toggle {
    display: flex;
    background: transparent;
    border-radius: 6px;
    padding: 0;
    gap: 8px;
    margin-bottom: 12px;
  }

  .orderform .rental-btn {
    flex: 1;
    padding: 8px 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    cursor: pointer;
    background: #fafafa;
    color: #555;
    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
  }
  .orderform .rental-btn:hover {
    background: #f0f0f0;
    border-color: #bdbdbd;
    color: #333;
  }

  .orderform .rental-btn.active {
    background: #2c4669;
    color: #fff;
    border-color: #2c4669;
    box-shadow: 0 2px 6px rgba(44,70,105,0.25);
  }

  .orderform .dc-select-btn {
    display: block;
    width: 100%;
    padding: 9px;
    background: #444444;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
  }

  .orderform .dc-select-btn:hover { background: #f0b000; }
  .orderform .dumpster-card.selected .dc-select-btn { background: #222222; }

  /* ---- FORM FIELDS ---- */
  .orderform .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }

  /* FIX 3 — 3-column city/state/zip row */
  .orderform .field-row-3 {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-start;
  }

  .orderform .field-row-3 .field-group { flex: 1; }
  .orderform .field-row-3 .field-city { flex: 3; }
  .orderform .field-row-3 .field-state { flex: 1; min-width: 70px; }
  .orderform .field-row-3 .field-zip { flex: 1; min-width: 80px; }

  @media (max-width: 600px) {
    .orderform .field-row-3 {
      flex-direction: column;
    }
    .orderform .field-row-3 .field-city,
    .orderform .field-row-3 .field-state,
    .orderform .field-row-3 .field-zip {
      flex: none;
      width: 100%;
    }
  }

  /* FIX — Delivery Details row (Date / Time / Return Date)
     The main form column is ~770px when sidebar is visible and shrinks further on
     mid-size screens. Three equal flex:1 columns squash labels onto 2 lines and
     leave barely any room for the mm/dd/yyyy placeholder or the time dropdown.
     This rule gives Date and Time generous equal width, keeps Return Date compact
     (it only shows a short date or "—"), and stacks cleanly on narrower widths. */
  .orderform .of-delivery-row {
    display: grid;
    grid-template-columns: minmax(160px, 1.2fr) minmax(160px, 1.2fr) minmax(140px, 1fr);
    gap: 14px;
    margin-bottom: 14px;
    align-items: flex-end;
  }
  .orderform .of-delivery-row .field-group { min-width: 0; }
  /* Keep primary label text on one line; let the small (auto-calculated)
     hint wrap to a second line if the column is very narrow — that’s better
     than ellipsing the required-field marker. */
  .orderform .of-delivery-row > .field-group > label {
    white-space: normal;
    line-height: 1.25;
  }
  /* Keep the date placeholder ("mm / dd / yyyy") on a single line */
  .orderform #of-cal-display-text { white-space: nowrap; }
  .orderform #of-cal-display { gap: 8px; }

  /* When main column narrows (tablet / sidebar-open desktop), put Date + Time on
     row 1 and Return Date on its own row 2 so nothing gets crushed. */
  @media (max-width: 900px) {
    .orderform .of-delivery-row {
      grid-template-columns: 1fr 1fr;
    }
    .orderform .of-delivery-row > .field-group:nth-child(3) {
      grid-column: 1 / -1;
    }
  }

  /* Phone: full stack */
  @media (max-width: 520px) {
    .orderform .of-delivery-row {
      grid-template-columns: 1fr;
    }
    .orderform .of-delivery-row > .field-group:nth-child(3) {
      grid-column: auto;
    }
  }

  /* Payment row: Card Number on row 1 full-width; Expiration + CVV side-by-side
     on row 2. On desktop, keep the original 3-column grid so it reads in one line. */
  .orderform .of-card-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
  }
  @media (max-width: 600px) {
    .orderform .of-card-row {
      grid-template-columns: 1fr 1fr;
    }
    .orderform .of-card-row .of-card-number {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 500px) {
    .orderform .field-row { grid-template-columns: 1fr; }
  }

  .orderform .field-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
  }

  .orderform .field-group.no-mb { margin-bottom: 0; }

  .orderform label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1f2e;
  }

  .orderform .field-optional {
    font-weight: 400;
    color: #999;
    font-size: 12px;
  }

  .orderform input[type="text"],
  .orderform input[type="email"],
  .orderform input[type="tel"],
  .orderform input[type="date"],
  .orderform select,
  .orderform textarea {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: #1a1f2e;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    appearance: none;
    -webkit-appearance: none;
  }

  .orderform textarea {
    height: auto;
    min-height: 80px;
    padding: 10px 12px;
    resize: vertical;
  }

  .orderform input:focus,
  .orderform select:focus,
  .orderform textarea:focus {
    border-color: #f0b000;
    box-shadow: 0 0 0 3px rgba(240,176,0,0.12);
  }

  .orderform input.error,
  .orderform select.error,
  .orderform textarea.error {
    border-color: #c62828;
  }

  .orderform .field-error {
    font-size: 12px;
    color: #c62828;
    display: none;
  }

  .orderform .field-error.show { display: block; }

  .orderform .field-hint {
    font-size: 12px;
    color: #888;
  }

  /* select arrow */
  .orderform .select-wrap {
    position: relative;
  }

  .orderform .select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
  }

  .orderform .select-wrap select { padding-right: 32px; }

  /* FIX 2 — Time slot grid */
  .orderform .time-slot-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 4px;
  }

  .orderform .time-slot-note {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
  }

  /* time slot dropdown (FIX 1) */
  .orderform .time-slot-select-wrap {
    position: relative;
  }
  .orderform .time-slot-select-wrap::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    pointer-events: none;
  }
  .orderform .time-slot-select-wrap select {
    padding-right: 32px;
  }

  /* return date field */
  .orderform .return-date-display {
    background: #f5f5f5;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 14px;
    color: #555;
  }

  /* ---- EMAIL CHECK NOTICE ---- */
  .orderform .email-check-notice {
    background: #fef5d9;
    border: 1px solid #f5c88a;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #7a4a00;
    display: none;
    margin-top: 6px;
  }

  .orderform .email-check-notice.show { display: block; }
  .orderform .email-check-notice a { color: #f0b000; cursor: pointer; font-weight: 600; }

  /* FIX 6 — Input icon wrapper */
  .orderform .input-icon-wrap { position: relative; }
  .orderform .input-icon-wrap .field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #888;
    pointer-events: none;
    flex-shrink: 0;
  }
  .orderform .input-icon-wrap input { padding-left: 38px; }

  /* ---- ADD-ONS ---- */
  .orderform .addon-group-label {
    font-size: 16px;
    font-weight: 700;
    color: #1a1f2e;
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
  }

  .orderform .addon-group-label:first-child { margin-top: 0; }

  .orderform .addon-group-note {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-left: 6px;
  }

  /* ---- COLLAPSIBLE ADDON GROUPS ---- */
  .orderform .addon-group-collapsible .addon-group-label { cursor: pointer; user-select: none; margin-top: 20px; }
  .orderform .addon-group-toggle-icon {
    margin-left: 8px; font-size: 12px; color: #f0b000; font-weight: 700;
  }
  .orderform .addon-collapsible-body { display: none; }
  .orderform .addon-group-collapsible.open .addon-collapsible-body { display: block; }
  .orderform .addon-group-preview {
    font-size: 12px; color: #888; margin: 4px 0 8px; font-style: italic;
  }

  .orderform .addon-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* FIX 1 — Addon selected: 2px border + tint bg */
  /* Phase 4.3.41 — checkbox aligns with title (flex-start), not visual center. */
  .orderform .addon-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    user-select: none;
  }

  .orderform .addon-card:hover { border-color: #f0b000; box-shadow: 0 2px 8px rgba(240,176,0,0.08); }
  .orderform .addon-card.addon-selected { border: 2px solid #f0b000; background: #fef5d9; }

    .orderform .addon-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #aaa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: border-color 0.15s, background 0.15s;
    min-width: 20px;
    /* Phase 4.3.41 — nudge down so the checkbox sits on the addon-name line */
    margin-top: 1px;
  }

  .orderform .addon-card[data-type="radio"] .addon-indicator { border-radius: 50%; }
  .orderform .addon-card[data-type="checkbox"] .addon-indicator { border-radius: 4px; }

    .orderform .addon-card.addon-selected .addon-indicator {
    background: #f0b000;
    border-color: #f0b000;
  }

  .orderform .addon-indicator-check {
    display: none;
    color: #fff;
  }

  .orderform .addon-card.addon-selected .addon-indicator-check { display: block; }

  .orderform .addon-info { flex: 1; }
  .orderform .addon-name { font-size: 15px; font-weight: 600; color: #1a1f2e; line-height: 20px; }
  .orderform .addon-desc { font-size: 12px; color: #777; margin-top: 2px; }
  /* Phase 4.3.41 — price hugs title line at the top */
  .orderform .addon-price { font-size: 15px; font-weight: 700; color: #f0b000; flex-shrink: 0; line-height: 20px; }

  /* weekend notice */
  .orderform .weekend-notice {
    background: #fff8e1;
    border: 1px solid #ffcc02;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #5a4000;
    display: none;
    margin-bottom: 16px;
    align-items: center;
    gap: 8px;
  }

  .orderform .weekend-notice.show { display: flex; }

  /* ---- REVIEW STEP ---- */
  /* review-layout now defined below with FIX 9 styles */

  .orderform .review-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #999;
    margin-bottom: 10px;
  }

  .orderform .review-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 14px;
    color: #1a1f2e;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
  }

  .orderform .review-line:last-child { border-bottom: none; }
  .orderform .review-line .rl-label { color: #555; flex: 1; }
  .orderform .review-line .rl-value { font-weight: 600; text-align: right; }

  .orderform .review-total {
    font-size: 17px;
    font-weight: 700;
    color: #f0b000;
    padding: 12px 0 0;
    display: flex;
    justify-content: space-between;
    border-top: 2px solid #f0b000;
    margin-top: 6px;
  }

  .orderform .review-customer-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: #333;
  }

  .orderform .review-customer-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 4px 0;
    font-size: 13px;
  }

  .orderform .review-customer-line .rc-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    min-width: 14px;
    height: 1em;
    flex-shrink: 0;
  }

  .orderform .review-customer-line .rc-icon {
    width: 13px;
    height: 13px;
    color: #888;
    display: block;
  }



  /* Force today's date to appear white/available in native date picker */
  .orderform input[type="date"]::-webkit-calendar-picker-indicator {
    filter: none;
  }
  /* Chrome/Edge override for greyed-out appearance of selectable dates */
  .orderform input[type="date"] {
    color-scheme: light;
  }
  /* Firefox: force today's date cell to appear available */
  @-moz-document url-prefix() {
    .orderform input[type="date"] {
      color-scheme: light only;
    }
  }

  /* agreement */
  .orderform .agreement-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
  }

  .orderform .agreement-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    accent-color: #f0b000;
    margin-top: 2px;
    cursor: pointer;
  }

  .orderform .agreement-row label {
    font-size: 14px;
    font-weight: 400;
    color: #1a1f2e;
    cursor: pointer;
  }

  .orderform .agreement-link {
    color: #f0b000;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    font-weight: 600;
  }

  /* sig field */
  .orderform .sig-field input {
    font-style: italic;
    font-family: Georgia, serif;
    font-size: 16px;
  }

  /* ---- BUTTONS ---- */
  .orderform .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f0b000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
  }

  .orderform .btn-primary:hover:not(:disabled) { background: #444 !important; }

  /* =====================================================================
     HOVER LOCK — Prevent Joomla template from growing buttons on hover.
     Only color changes are allowed on hover; every size/layout/transform
     vector is locked to its rest-state value. Covers buttons AND anchors.
     ===================================================================== */
  .orderform button,
  .orderform a.btn,
  .orderform .btn-primary,
  .orderform .btn-secondary,
  .orderform button:hover,
  .orderform button:focus,
  .orderform button:active,
  .orderform button:focus-visible,
  .orderform a.btn:hover,
  .orderform a.btn:focus,
  .orderform a.btn:active,
  .orderform .btn-primary:hover,
  .orderform .btn-primary:focus,
  .orderform .btn-primary:active,
  .orderform .btn-primary:focus-visible,
  .orderform .btn-secondary:hover,
  .orderform .btn-secondary:focus,
  .orderform .btn-secondary:active,
  .orderform .btn-secondary:focus-visible {
    transform: none !important;
    -webkit-transform: none !important;
    scale: none !important;
    zoom: 1 !important;
    box-shadow: none !important;
    text-shadow: none !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: background-color 0.15s, color 0.15s, border-color 0.15s !important;
  }

  /* Lock exact padding, font-size, font-weight, line-height, and dimensions
     across all states so the button cannot grow on hover/focus/active. */
  .orderform .btn-primary,
  .orderform .btn-primary:hover,
  .orderform .btn-primary:focus,
  .orderform .btn-primary:active,
  .orderform .btn-primary:focus-visible {
    padding: 12px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    min-height: 0 !important;
    max-height: none !important;
    border-width: 0 !important;
    margin: 0 !important;
  }
  .orderform .btn-primary.large,
  .orderform .btn-primary.large:hover,
  .orderform .btn-primary.large:focus,
  .orderform .btn-primary.large:active,
  .orderform .btn-primary.large:focus-visible {
    padding: 15px 28px !important;
    font-size: 16px !important;
  }
  .orderform .btn-secondary,
  .orderform .btn-secondary:hover,
  .orderform .btn-secondary:focus,
  .orderform .btn-secondary:active,
  .orderform .btn-secondary:focus-visible {
    padding: 11px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    border-width: 1.5px !important;
    margin: 0 !important;
  }

  .orderform .btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .orderform .btn-primary.full { width: 100%; }
  .orderform .btn-primary.large { padding: 15px 28px; font-size: 16px; }

  /* FIX 1 — Secondary buttons: white bg, orange border + text */
  .orderform .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    background: #fff;
    color: #f0b000;
    border: 1.5px solid #f0b000;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .orderform .btn-secondary:hover { background: #fef5d9; color: #c07000; border-color: #c07000; }

  .orderform .step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
  }

  .orderform .step-nav-right { margin-left: auto; }

  /* ---- SIDEBAR ---- */
  /* FIX 11 — Sticky sidebar */
  .orderform .sidebar {
    position: sticky;
    top: 99px;
    align-self: flex-start;
  }

  .orderform .sidebar-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    font-size: 14px;
  }

  .orderform .sidebar-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1a1f2e;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .orderform .sb-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 5px 0;
    color: #444;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
  }

  .orderform .sb-line .sb-label { flex: 1; }
  .orderform .sb-line .sb-val {
    font-weight: 600;
    text-align: right;
    color: #f0b000;
  }

  .orderform .sb-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 8px 0;
  }

  .orderform .sb-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #f0b000;
    padding-top: 8px;
    border-top: 2px solid #f0b000;
    margin-top: 4px;
  }

  .orderform .sidebar-empty {
    color: #aaa;
    font-size: 13px;
    text-align: center;
    padding: 12px 0;
  }

  /* ---- MOBILE SUMMARY TOGGLE ---- */
  .orderform .mobile-summary-toggle {
    display: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #f0b000;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    width: 100%;
  }

  .orderform .mobile-summary-toggle span.mst-total { color: #1a1f2e; font-weight: 700; }

  @media (max-width: 860px) {
    .orderform .mobile-summary-toggle { display: flex; }
    .orderform .sidebar { position: static; max-height: none; overflow-y: visible; }
  }

  .orderform .mobile-summary-body {
    display: none;
  }

  .orderform .mobile-summary-body.open {
    display: block;
  }

  /* ---- MODAL ---- */
  .orderform .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    display: none;
  }

  .orderform .modal-overlay.open { display: flex; }

  .orderform .modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  }

  .orderform .modal-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1f2e;
  }

  .orderform .modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    font-family: inherit;
  }

  .orderform .modal-close:hover { color: #1a1f2e; }

  .orderform .modal-body {
    font-size: 13px;
    color: #333;
    line-height: 1.65;
  }
  .orderform .modal-body h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 22px 0 8px;
    color: #1a1f2e;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
  }
  .orderform .modal-body h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 16px 0 6px;
    color: #1a1f2e;
  }
  .orderform .modal-body h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 14px 0 6px;
    color: #1a1f2e;
  }
  .orderform .modal-body p { margin-bottom: 10px; }
  .orderform .modal-body ul { margin: 0 0 12px 20px; }
  .orderform .modal-body ul li { margin-bottom: 8px; }
  .orderform .modal-body a { color: #f0b000; font-weight: 600; text-decoration: none; }
  .orderform .modal-body a:hover { text-decoration: underline; }
  .orderform .modal-divider { height: 1px; background: #e8e8e8; margin: 16px 0; }
  .orderform .modal-fee-box {
    background: #f5f7fa; border-left: 4px solid #f0b000;
    padding: 12px 14px; margin: 12px 0; border-radius: 4px; font-size: 13px;
  }
  .orderform .modal-insurance-note {
    background: #fff8e1; border-left: 4px solid #ffb300;
    padding: 10px 12px; margin: 10px 0; font-style: italic; border-radius: 4px; font-size: 12px;
  }
  .orderform .modal-allcaps { text-transform: uppercase; font-weight: bold; color: #f0b000; }

  /* ---- SUCCESS STATE ---- */
  .orderform .success-state {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .orderform .success-icon {
    width: 72px;
    height: 72px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .orderform .success-state h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1f2e;
    margin-bottom: 10px;
  }

  .orderform .success-state p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
  }

  .orderform .success-state .order-num {
    font-size: 18px;
    font-weight: 700;
    color: #f0b000;
    margin: 12px 0;
  }

  /* ---- LOADING SPINNER ---- */
  .orderform .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ofspin 0.7s linear infinite;
    vertical-align: middle;
  }

  @keyframes ofspin {
    to { transform: rotate(360deg); }
  }

  /* ---- ERROR BANNER ---- */
  .orderform .error-banner {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #c62828;
    display: none;
    margin-bottom: 14px;
  }

  .orderform .error-banner.show { display: block; }

  /* ---- STEP VISIBILITY ---- */
  .orderform .form-step { display: none; }
  .orderform .form-step.active { display: block; }


  /* ---- PAYMENT SECTION (FIX 15) ---- */
  .orderform .payment-section { margin-top: 0; }

  .orderform .payment-notice {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #795548;
    margin-bottom: 20px;
  }

  .orderform .card-logos {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
  }

  .orderform .card-logo {
    width: 40px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    background: #fff;
    color: #888;
    opacity: 0.45;
    transition: opacity 0.2s, border-color 0.2s;
    cursor: default;
  }

  .orderform .card-logo.active {
    opacity: 1;
    border-color: #f0b000;
    box-shadow: 0 0 0 2px rgba(240,176,0,0.12);
  }

  .orderform .cvv-tooltip {
    display: none;
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    border-radius: 5px;
    padding: 5px 9px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
  }

  #of-cvv-help:hover .cvv-tooltip { display: block; }

  /* ---- UTILS ---- */
  .orderform .mt8 { margin-top: 8px; }
  .orderform .mt16 { margin-top: 16px; }
  .orderform .mb0 { margin-bottom: 0; }

  /* ---- FIX 7 — DISCOUNT NOTE ---- */
  .orderform .sb-discount-note {
    margin-top: 14px;
    padding: 12px 14px;
    background: #f0f7f0;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    font-size: 13px;
  }
  .orderform .sb-discount-title {
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 6px;
    font-size: 13px;
  }
  .orderform .sb-discount-list {
    padding-left: 16px;
    margin: 0 0 6px 0;
    color: #444;
  }
  .orderform .sb-discount-list li { margin-bottom: 3px; }
  .orderform .sb-discount-note-text {
    font-size: 12px;
    color: #777;
    margin: 0;
    font-style: italic;
  }

  /* ---- FIX 9 — REVIEW LAYOUT ---- */
  .orderform .review-layout {
    display: block;
  }
  @media (max-width: 860px) {
    .orderform .review-layout { grid-template-columns: 1fr; }
  }
  /* Rent15 — Most Popular badge on 15-yard dumpster card */
  .orderform .dumpster-card { position: relative; }
  .orderform .popular-badge {
    position: absolute; top: -10px; right: 12px;
    background: #f0b000; color: #fff;
    font-size: 11px; font-weight: 800;
    padding: 3px 10px; border-radius: 999px;
    letter-spacing: 0.06em; text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(240,176,0,0.35);
    z-index: 2;
    font-family: 'Oswald','Arial Narrow',sans-serif;
  }
  /* Rebrand typography to match rent20 */
  .orderform, .orderform input, .orderform select, .orderform textarea, .orderform button {
    font-family: 'Open Sans','Helvetica Neue',sans-serif;
  }
  .orderform .step-title,
  .orderform .dumpster-name,
  .orderform h2, .orderform h3, .orderform h4 {
    font-family: 'Oswald','Arial Narrow',sans-serif;
    letter-spacing: 0.01em;
  }

/* ============================================================
   Phase 4.3.50 — footer-meta (service area + hours)
   Sits below the .footer-contact-row in the footer-brand column.
   ============================================================ */
.footer-brand .footer-meta {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
}
.footer-brand .footer-meta-line {
  margin: 0.15rem 0;
}
.footer-brand .footer-meta strong {
  color: #fff;
  font-weight: 600;
  margin-right: 0.35rem;
}

  /* ---- Phase 4.3.99 — Returning Client toggle (top of Step 3) ---- */
  .orderform .rc-block { margin-bottom: 22px; }
  .orderform .rc-prompt { margin-bottom: 8px; }
  .orderform .rc-label  { font-size: 15px; font-weight: 600; color: #1a1a1a; }
  .orderform .rc-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
  }
  .orderform .rc-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    transition: border-color .15s, background .15s, box-shadow .15s;
  }
  .orderform .rc-opt:hover { border-color: #b3b3b3; }
  .orderform .rc-opt.active {
    border-color: #15355d;
    background: #fff;
    box-shadow: 0 0 0 1px #15355d inset;
  }
  .orderform .rc-radio {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 2px solid #cfcfcf;
    background: #fff;
    position: relative;
    flex-shrink: 0;
    transition: border-color .15s;
  }
  .orderform .rc-opt.active .rc-radio {
    border-color: #15355d;
  }
  .orderform .rc-opt.active .rc-radio::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 9px; height: 9px;
    background: #15355d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .orderform .rc-welcome {
    background: #f3f6fa;
    border: 1px solid #e1e8f0;
    border-radius: 10px;
    padding: 20px 22px;
    margin-top: 6px;
  }
  .orderform .rc-welcome input[type="email"],
  .orderform .rc-welcome input[type="password"],
  .orderform .rc-welcome input[type="text"] {
    background: #fff !important;
    border: 1px solid #c8d3e0;
  }
  .orderform .rc-welcome input:focus {
    border-color: #15355d;
    box-shadow: 0 0 0 2px rgba(21,53,93,.15);
  }
  .orderform .rc-welcome h3 {
    margin: 0 0 6px 0;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
  }
  .orderform .rc-sub {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #4a4a4a;
  }
  .orderform .rc-help {
    margin: 6px 0 0 0;
    font-size: 12px;
    color: #777;
  }
  .orderform .rc-error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #f5c2c0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    margin-bottom: 12px;
  }
  .orderform .rc-btn {
    background: #15355d;
    color: #fff;
    border: 0;
    border-radius: 8px;
    padding: 13px 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .15s;
  }
  .orderform .rc-btn:hover { background: #0f284a; }
  .orderform .rc-btn:disabled { opacity: .6; cursor: wait; }
  .orderform .rc-forgot { margin: 12px 0 0 0; font-size: 13px; }
  .orderform .rc-forgot a { color: #15355d; text-decoration: none; }
  .orderform .rc-forgot a:hover { text-decoration: underline; }
  .orderform .rc-loggedin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ecf7ee;
    border: 1px solid #c8e6cf;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1f5a30;
    flex-wrap: wrap;
  }
  .orderform .rc-logout {
    background: transparent;
    border: 0;
    color: #1f5a30;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    margin-left: auto;
    padding: 0;
  }
  @media (max-width: 600px) {
    .orderform .rc-toggle { grid-template-columns: 1fr; }
  }

/* ===== v5.2 booking-form mobile responsiveness ===== */
@media (max-width: 600px) {
  /* Form container — give the card a little breathing room from viewport edges
     but don't waste space. Keep the border/radius look. */
  .orderform .form-outer {
    margin: 16px 8px !important;
    padding: 16px 14px !important;
  }

  /* Card top: stack image above title, both centered, image smaller */
  .orderform .dc-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .orderform .dc-top .dc-image {
    flex: 0 0 auto;
    width: 140px;
    max-width: 140px;
    height: 90px;
  }
  .orderform .dumpster-card[data-product-id="11"] .dc-top .dc-image { height: 100px; }
  .orderform .dc-title-col {
    align-items: center;
    padding-left: 0;
    width: 100%;
  }
  .orderform .dc-title-col .dc-name {
    font-size: 22px;
    white-space: nowrap;
  }
  .orderform .dc-title-col .dc-price-inline { justify-content: center; }
  .orderform .dc-title-col .dc-dims { text-align: center; }

  /* "Most Popular" ribbon: move inline above the image so it doesn't collide
     with the now-centered title */
  .orderform .popular-badge {
    position: static;
    display: inline-block;
    margin: 0 auto 8px;
  }

  /* Need-more-days row: stack label, stepper, helper on small screens */
  .orderform .dc-extra-days {
    justify-content: center;
    gap: 8px 12px;
  }

  /* Badge row: center + comfortable wrap */
  .orderform .dc-badge-row { gap: 3px 4px; }
    .orderform .badge { font-size: 10px; padding: 2px 3px; }

  /* Day pills — keep them comfortable but allow shrinking */
  .orderform .rental-toggle { gap: 6px; }
  .orderform .rental-btn { flex: 1 1 0; min-width: 0; padding: 10px 6px; }
}

@media (max-width: 380px) {
  .orderform .form-outer { margin: 12px 4px !important; padding: 14px 10px !important; }
  .orderform .dc-top .dc-image { width: 120px; height: 78px; }
}


/* ─────────────────────────────────────────────────────────────────────────
   Phase 4.4.07s followup4 — Extended Mileage Fee tooltip (ported from dumpitkc)
   Trigger = underlined "Extended Mileage Fee" label + small (i) icon.
   Both share class .dikc-fuel-tip-trigger / .dikc-fuel-tip-info.
   Popover is a singleton element appended to body so it can escape any
   overflow:hidden ancestors.
   ───────────────────────────────────────────────────────────────────────── */
.orderform .dikc-fuel-tip-trigger {
  cursor: pointer;
  color: inherit;
  border-bottom: 1px dotted #888;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.orderform .dikc-fuel-tip-trigger:hover,
.orderform .dikc-fuel-tip-trigger:focus { color: #c45016; border-bottom-color: #c45016; outline: none; }
.orderform .dikc-fuel-tip-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  border-radius: 50%;
  background: #c45016;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  font-family: Georgia, serif;
  font-style: italic;
  vertical-align: middle;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.orderform .dikc-fuel-tip-info:hover { background: #a33e0e; }
#dikcFuelTipPopover {
  position: absolute;
  z-index: 9999;
  max-width: 320px;
  min-width: 240px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #c45016;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  color: #333;
  font-size: 13px;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  pointer-events: auto;
  display: none;
}
#dikcFuelTipPopover.is-open { display: block; }
#dikcFuelTipPopover .dikc-fuel-tip-close {
  position: absolute;
  top: 4px;
  right: 6px;
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 0;
}
#dikcFuelTipPopover .dikc-fuel-tip-close:hover { color: #333; }
#dikcFuelTipPopover strong { color: #c45016; }
@media (max-width: 480px) {
  #dikcFuelTipPopover { max-width: calc(100vw - 24px); font-size: 12.5px; }
}
