/* ═══════════════════════════════════════════════════════
   IRONRENT — style.css
   ═══════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────── */
:root {
  --steel:     #1B3A5C;
  --steel-mid: #2E4A63;
  --orange:    #F5720A;
  --orange-dk: #C45A06;
  --offwhite:  #F0EDE8;
  --charcoal:  #1C2226;
  --ls:        #E8EEF4;
  --muted:     #6B7A88;
  --border:    #E2E8EF;
  --green:     #10B981;
  --red:       #EF4444;
  --amber:     #F59E0B;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --shadow-card: 0 2px 8px rgba(27, 58, 92, 0.08);
  --shadow-hover: 0 6px 20px rgba(27, 58, 92, 0.14);
  --transition: 0.18s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
img { max-width: 100%; display: block; }

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

/* ── Page Switching ──────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── Hazard Stripe ───────────────────────────────────── */
.hazard {
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0, var(--orange) 10px,
    var(--charcoal) 10px, var(--charcoal) 20px
  );
}

/* ── Shared Buttons ──────────────────────────────────── */
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.btn-primary:hover { background: var(--orange-dk); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}
.btn-ghost:hover { border-color: #fff; }

.btn-secondary {
  background: #fff;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color var(--transition);
}
.btn-secondary:hover { border-color: var(--steel); color: var(--steel); }

/* ── Form Elements ───────────────────────────────────── */
.fg { margin-bottom: 0.9rem; }
.fg label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 0.55rem 0.85rem;
  border: 1.5px solid #CBD5E0;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: #fff;
  outline: none;
  transition: border-color var(--transition);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--steel); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkbox-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════ */
.nav {
  background: var(--charcoal);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.05em;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}
.nav-logo span { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: #b0bec9;
  font-size: 0.83rem;
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}
.nav-links a:hover,
.nav-links a.al { color: #fff; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-btn {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #b0bec9;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-btn:hover { border-color: #fff; color: #fff; }

.nav-cart {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition);
}
.nav-cart:hover { background: var(--orange-dk); }

.cbadge {
  background: #fff;
  color: var(--orange);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
}

.nav-user {
  color: #b0bec9;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-user:hover { color: #fff; }

.nav-avatar {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #b0bec9;
  border-radius: 2px;
  transition: transform var(--transition);
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  background: var(--steel);
  padding: 4rem 2rem 3rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.9rem;
  letter-spacing: 0.01em;
}
.hero h1 em { color: var(--orange); font-style: normal; }

.hero-sub {
  color: #90a8bc;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 440px;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.74rem;
  color: #6E8FA8;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

/* Hero visual tiles */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.htc {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  text-align: center;
}
.htc.featured {
  background: rgba(245, 114, 10, 0.12);
  border-color: rgba(245, 114, 10, 0.38);
}
.htc-icon { font-size: 2.1rem; display: block; margin-bottom: 0.45rem; }
.htc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: #d0dde8;
  letter-spacing: 0.04em;
}
.htc-price { font-size: 0.78rem; color: var(--orange); margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--offwhite);
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #DDD8D0;
}
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ti-item { display: flex; align-items: center; gap: 10px; }
.ti-icon { font-size: 1.7rem; flex-shrink: 0; }
.ti-text strong { display: block; font-size: 0.875rem; font-weight: 600; }
.ti-text span { font-size: 0.75rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   SEARCH & FILTERS
══════════════════════════════════════════════════════ */
.search-bar-section {
  background: #fff;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 90;
}
.search-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.sw {
  flex: 1;
  display: flex;
  border: 1.5px solid #CBD5E0;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.sw input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: none;
  outline: none;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.sw button {
  background: var(--steel);
  color: #fff;
  border: none;
  padding: 0 1.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
}
.sw button:hover { background: var(--steel-mid); }

.filter-select {
  padding: 0.6rem 0.95rem;
  border: 1.5px solid #CBD5E0;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--charcoal);
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}
.filter-select:focus { border-color: var(--steel); }

/* ══════════════════════════════════════════════════════
   CATEGORY PILLS
══════════════════════════════════════════════════════ */
.cat-section {
  background: var(--offwhite);
  padding: 1.1rem 2rem;
}
.cat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.cat-pill {
  padding: 0.38rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
}
.cat-pill.active { background: var(--steel); color: #fff; border-color: var(--steel); }
.cat-pill:not(.active) { background: #fff; color: var(--charcoal); border-color: #CBD5E0; }
.cat-pill:not(.active):hover { border-color: var(--steel); color: var(--steel); }

/* ══════════════════════════════════════════════════════
   PRODUCTS GRID
══════════════════════════════════════════════════════ */
.prod-section {
  padding: 2.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.sec-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
.prod-count-label { font-size: 0.82rem; color: var(--muted); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}

/* Product Card */
.prod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.prod-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.prod-card-img {
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: var(--ls);
  position: relative;
}
.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prod-badge.available { background: var(--green); }
.prod-badge.limited   { background: var(--amber); }

.prod-card-body { padding: 1rem; }
.prod-cat {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}
.prod-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.prod-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.55;
}
.prod-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prod-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--steel);
}
.prod-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  font-family: var(--font-body);
}
.btn-rent {
  background: var(--steel);
  color: #fff;
  border: none;
  padding: 0.42rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  transition: background var(--transition);
}
.btn-rent:hover { background: var(--steel-mid); }

/* ══════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════ */
.how-section {
  background: var(--charcoal);
  padding: 3.5rem 2rem;
}
.how-inner { max-width: 1100px; margin: 0 auto; }

.sec-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.how-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 2.5rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  color: rgba(245, 114, 10, 0.22);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}
.step-desc { font-size: 0.82rem; color: #7A95AB; line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   FEATURED BANNER
══════════════════════════════════════════════════════ */
.feat-banner { background: var(--steel); padding: 2.5rem 2rem; }
.banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.banner-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 5px;
}
.banner-text p { color: #90a8bc; font-size: 0.9rem; }
.banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: #90a8bc;
  padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: 0.82rem; line-height: 1.65; max-width: 220px; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 6px; }
.footer-col a {
  font-size: 0.82rem;
  color: #6E8FA8;
  cursor: pointer;
  transition: color var(--transition);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #4A6070;
}
.footer-bottom a { color: #6E8FA8; }
.footer-bottom a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   CART SIDEBAR
══════════════════════════════════════════════════════ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 200;
  align-items: flex-start;
  justify-content: flex-end;
}
.overlay.open { display: flex; }

.cart-panel {
  background: #fff;
  width: 380px;
  height: 100vh;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.cp-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cp-hdr h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
}
.close-x {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  line-height: 1;
}
.close-x:hover { color: var(--charcoal); }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #F0F0F0;
}
.ci-icon {
  font-size: 1.9rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ls);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.ci-info { flex: 1; }
.ci-info strong { display: block; font-size: 0.88rem; font-weight: 600; }
.ci-dates { font-size: 0.72rem; color: var(--muted); margin: 2px 0; }
.ci-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--steel);
}
.ci-discount { font-size: 0.65rem; color: var(--green); font-weight: 600; }

.remove-item-btn { background: none; border: none; color: var(--red); font-size: 1rem; padding: 0 4px; }
.remove-item-btn:hover { color: #b91c1c; }

.cart-items-list { flex: 1; }

.empty-cart {
  text-align: center;
  padding: 2.5rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

.cart-footer { }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}
.btn-checkout-cart {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.btn-checkout-cart:hover { background: var(--orange-dk); }
.cart-secure-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* ══════════════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════════════ */
.mo {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.mo.open { display: flex; }

.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  width: 500px;
  max-width: 95vw;
  padding: 1.75rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal--sm { width: 420px; }

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}
.close-modal:hover { color: var(--charcoal); }

.modal h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

/* Tool detail row inside rental modal */
.tool-detail-row {
  display: flex;
  gap: 1rem;
  margin: 0.85rem 0;
  padding: 0.9rem;
  background: var(--offwhite);
  border-radius: var(--radius-md);
  align-items: center;
}
.tdr-icon { font-size: 2.5rem; }
.tdr-meta strong { display: block; font-size: 1rem; font-weight: 600; }
.tdr-meta span { font-size: 0.75rem; color: var(--muted); }
.tdr-price { color: var(--orange); font-weight: 600; display: block; margin-top: 3px; font-size: 0.9rem; }

.date-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }

.rental-summary {
  background: var(--ls);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  margin: 0.85rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rental-summary .days-label { font-size: 0.82rem; color: var(--muted); }
.rental-summary .rental-total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--steel);
}

.rental-notes {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.modal-actions { display: flex; gap: 0.65rem; margin-top: 0.85rem; }
.btn-modal-cancel {
  flex: 1;
  background: #fff;
  color: var(--charcoal);
  border: 1.5px solid #CBD5E0;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
}
.btn-modal-add {
  flex: 2;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.btn-modal-add:hover { background: var(--orange-dk); }

/* Success modal */
.success-icon { font-size: 2.75rem; margin-bottom: 0.65rem; }
.success-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.success-body { font-size: 0.875rem; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   AVAILABILITY CALENDAR
══════════════════════════════════════════════════════ */
.cal-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--charcoal);
}
.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}
.cal-nav button {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 11px;
  font-size: 0.78rem;
  color: var(--charcoal);
  transition: background var(--transition);
}
.cal-nav button:hover { background: var(--ls); }
.cal-month {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.cal-day-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}
.cal-day-lbl {
  text-align: center;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--muted);
  padding: 3px 0;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.12s;
  font-weight: 500;
}
.cal-day.available     { background: #D1FAE5; color: #065F46; }
.cal-day.available:hover { border-color: var(--green); }
.cal-day.booked        { background: #FEE2E2; color: #991B1B; cursor: not-allowed; }
.cal-day.limited       { background: #FEF3C7; color: #92400E; }
.cal-day.selected      { background: var(--steel); color: #fff; border-color: var(--steel); }
.cal-day.in-range      { background: var(--ls); border-color: #CBD5E0; }
.cal-day.empty         { background: transparent; cursor: default; }
.cal-legend {
  display: flex;
  gap: 1rem;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}
.leg-item { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; color: var(--muted); }
.leg-dot { width: 10px; height: 10px; border-radius: 2px; }

/* ══════════════════════════════════════════════════════
   TOAST NOTIFICATION
══════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--charcoal);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 4px solid var(--orange);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   AUTH PAGE
══════════════════════════════════════════════════════ */
.auth-wrap {
  min-height: calc(100vh - 60px);
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 420px;
  max-width: 100%;
  padding: 2rem;
}
.auth-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.auth-logo span { color: var(--orange); }
.auth-card h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  margin: 0.85rem 0 0.2rem;
}
.auth-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.4rem; }

.auth-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.auth-tab {
  flex: 1;
  padding: 0.55rem;
  background: #fff;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition);
}
.auth-tab.active { background: var(--steel); color: #fff; }

.forgot-row { text-align: right; margin-bottom: 0.9rem; }
.forgot-row a { font-size: 0.78rem; color: var(--steel); }
.forgot-row a:hover { color: var(--orange); }

.btn-auth {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.4rem;
  transition: background var(--transition);
}
.btn-auth:hover { background: var(--orange-dk); }
.btn-auth--steel { background: var(--steel); margin-top: 0; }
.btn-auth--steel:hover { background: var(--steel-mid); }

.divider-or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.9rem 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.divider-or::before,
.divider-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ══════════════════════════════════════════════════════
   ACCOUNT PAGE
══════════════════════════════════════════════════════ */
.account-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  min-height: calc(100vh - 60px);
}
.account-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  align-self: start;
  position: sticky;
  top: 80px;
}
.acc-avatar {
  width: 54px;
  height: 54px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.acc-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.acc-email { font-size: 0.76rem; color: var(--muted); margin-bottom: 1.1rem; }
.acc-menu { list-style: none; }
.acc-menu li { margin-bottom: 3px; }
.acc-menu a {
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
}
.acc-menu a:hover,
.acc-menu a.active { background: var(--ls); color: var(--steel); }
.btn-logout {
  background: transparent;
  border: 1.5px solid var(--red);
  color: var(--red);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.9rem;
  width: 100%;
  transition: all var(--transition);
}
.btn-logout:hover { background: var(--red); color: #fff; }

.account-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.acc-content-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.stat-card {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 0.9rem;
}
.sc-num { font-family: var(--font-display); font-weight: 800; font-size: 1.65rem; color: var(--steel); }
.sc-label { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

.rental-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid #F0F0F0;
}
.rental-row:last-child { border-bottom: none; }
.rr-icon {
  font-size: 1.9rem;
  width: 46px;
  height: 46px;
  background: var(--ls);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rr-info { flex: 1; }
.rr-info strong { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 1px; }
.rr-info .rr-dates { font-size: 0.72rem; color: var(--muted); }
.rr-status {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  flex-shrink: 0;
}
.rr-status.active     { background: #D1FAE5; color: #065F46; }
.rr-status.completed  { background: #E2E8EF; color: #475569; }
.rr-status.upcoming   { background: #FEF3C7; color: #92400E; }
.rr-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--steel);
  flex-shrink: 0;
}
.btn-save {
  background: var(--steel);
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.btn-save:hover { background: var(--steel-mid); }

/* ══════════════════════════════════════════════════════
   QUOTE PAGE
══════════════════════════════════════════════════════ */
.quote-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2rem;
}
.quote-wrap h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 0.3rem;
}
.page-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }

.quote-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
}
.quote-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--steel);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.quote-section-title + .quote-section-title,
.quote-section-title:not(:first-child) { margin-top: 0.5rem; }

.quote-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  transition: background var(--transition);
}
.quote-submit:hover { background: var(--orange-dk); }

/* ══════════════════════════════════════════════════════
   CHECKOUT PAGE
══════════════════════════════════════════════════════ */
.checkout-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 2rem;
}
.checkout-wrap h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1.35rem;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.35rem;
  align-items: start;
}
.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  margin-bottom: 1rem;
}
.checkout-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}

.stripe-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.75rem;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: var(--muted);
}
.lock-icon { font-size: 0.9rem; }

.card-input-wrap { position: relative; }
.card-field {
  width: 100%;
  padding: 0.55rem 2.5rem 0.55rem 0.85rem;
  border: 1.5px solid #CBD5E0;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--transition);
  background: #fff;
}
.card-field:focus { border-color: var(--steel); }
.card-brand-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
}

.security-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.sec-item { display: flex; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--muted); }

.protection-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}
.protection-label input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.protection-title { font-size: 0.875rem; font-weight: 600; }
.price-highlight { color: var(--orange); }
.protection-desc { font-size: 0.75rem; color: var(--muted); margin-top: 2px; line-height: 1.55; }

/* Order summary sidebar */
.order-summary-card { position: sticky; top: 80px; }
.promo-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.promo-row input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid #CBD5E0;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  outline: none;
  transition: border-color var(--transition);
}
.promo-row input:focus { border-color: var(--steel); }
.promo-row button {
  background: var(--steel);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}
.promo-row button:hover { background: var(--steel-mid); }
.promo-success { color: var(--green); font-size: 0.74rem; font-weight: 600; margin-bottom: 0.55rem; }
.promo-error   { color: var(--red);   font-size: 0.74rem; margin-bottom: 0.55rem; }

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid #F0F0F0;
  font-size: 0.82rem;
}
.order-line:last-of-type { border-bottom: none; }
.order-line-green { color: var(--green); }

.order-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  border-top: 1.5px solid var(--border);
  margin-top: 0.4rem;
}
.btn-pay {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background var(--transition);
}
.btn-pay:hover { background: var(--orange-dk); }
.checkout-terms {
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.6rem;
}
.checkout-terms a { color: var(--steel); }

/* ══════════════════════════════════════════════════════
   ORDER SUCCESS PAGE
══════════════════════════════════════════════════════ */
.success-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon-lg { font-size: 3.5rem; margin-bottom: 0.75rem; }
.success-wrap h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.success-wrap > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.5rem; }

.success-details {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  margin: 1.35rem 0;
  text-align: left;
}
.success-details-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.success-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  padding: 0.32rem 0;
  border-bottom: 1px solid #DDD8D0;
}
.success-item-row:last-child { border-bottom: none; }
.success-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--steel);
  padding-top: 0.65rem;
  border-top: 1.5px solid #DDD8D0;
  margin-top: 0.65rem;
}

.delivery-notice {
  background: #D1FAE5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  text-align: left;
  font-size: 0.82rem;
  color: #047857;
}
.delivery-notice-title { font-weight: 700; margin-bottom: 3px; font-size: 0.88rem; }

.success-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   EMAIL TEMPLATES PAGE
══════════════════════════════════════════════════════ */
.email-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 2rem;
}
.email-wrap h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}
.email-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.etab {
  padding: 0.4rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  background: #fff;
  color: var(--charcoal);
  transition: all var(--transition);
}
.etab.active { background: var(--steel); color: #fff; border-color: var(--steel); }
.etab:hover:not(.active) { border-color: var(--steel); color: var(--steel); }

.email-preview-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f9f9f9;
}
.ep-toolbar {
  background: var(--ls);
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.ep-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ep-dot--red    { background: #FF5F57; }
.ep-dot--yellow { background: #FFBD2E; }
.ep-dot--green  { background: #28C840; }
.ep-toolbar span { margin-left: 0.35rem; }
.ep-body { padding: 1.5rem; background: #fff; }

/* Email template internal styles */
.em-header {
  background: var(--steel);
  padding: 1.5rem;
  text-align: center;
  margin: -1.5rem -1.5rem 1.35rem;
}
.em-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; }
.em-logo span { color: var(--orange); }
.em-hero-txt { color: #90a8bc; font-size: 0.78rem; margin-top: 4px; }
.em-title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.em-greeting { font-size: 0.84rem; color: var(--charcoal); margin-bottom: 1rem; line-height: 1.7; }
.em-order-box {
  background: var(--offwhite);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--orange);
}
.em-order-num { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--steel); }
.em-section { margin-bottom: 1rem; }
.em-section-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.45rem; }
.em-item-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.em-item-row:last-child { border-bottom: none; }
.em-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--steel);
  padding-top: 0.55rem;
}
.em-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.em-info-item { background: var(--offwhite); border-radius: var(--radius-sm); padding: 0.55rem 0.7rem; }
.em-info-label { font-size: 0.66rem; color: var(--muted); display: block; }
.em-info-val { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); }
.em-cta { text-align: center; margin: 1.1rem 0; }
.em-cta-btn {
  background: var(--orange);
  color: #fff;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-block;
}
.em-checklist { font-size: 0.82rem; color: var(--charcoal); line-height: 2; }
.em-warning {
  background: #FEF3C7;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: #92400E;
}
.em-green { color: var(--green); }
.em-footer {
  background: var(--charcoal);
  padding: 1rem;
  text-align: center;
  margin: 1.5rem -1.5rem -1.5rem;
  font-size: 0.7rem;
  color: #6E8FA8;
}
.em-footer a { color: var(--orange); }

.email-actions { display: flex; gap: 0.65rem; margin-top: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .hero h1       { font-size: 3rem; }
  .footer-top    { grid-template-columns: 1fr 1fr; }
  .steps-grid    { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-right .order-summary-card { position: static; }
  .banner-inner  { flex-direction: column; text-align: center; }
  .banner-actions { justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 0 1.1rem; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 0.75rem 1.1rem 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
  }
  .nav-links.open li { padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-hamburger { display: flex; }

  .hero    { padding: 2.5rem 1.1rem 2rem; }
  .hero h1 { font-size: 2.5rem; }

  .trust-inner    { grid-template-columns: 1fr 1fr; }
  .search-bar-section { padding: 0.85rem 1.1rem; }
  .search-inner   { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .cat-section    { padding: 0.75rem 1.1rem; }
  .prod-section   { padding: 1.5rem 1.1rem; }
  .prod-grid      { grid-template-columns: 1fr; }
  .how-section    { padding: 2.25rem 1.1rem; }
  .steps-grid     { grid-template-columns: 1fr; }
  .feat-banner    { padding: 1.75rem 1.1rem; }
  .site-footer    { padding: 2rem 1.1rem 1.1rem; }
  .footer-top     { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-bottom  { flex-direction: column; gap: 0.35rem; }

  .account-wrap   { grid-template-columns: 1fr; padding: 1.1rem; }
  .account-sidebar { display: none; }
  .two-col        { grid-template-columns: 1fr; }
  .em-info-grid   { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: repeat(3, 1fr); }
  .date-row       { grid-template-columns: 1fr; }
  .quote-wrap     { padding: 1.5rem 1.1rem; }
  .checkout-wrap  { padding: 1.5rem 1.1rem; }
  .email-wrap     { padding: 1.5rem 1.1rem; }
  .cart-panel     { width: 100vw; }

  .modal { padding: 1.35rem; }
  .ep-body { padding: 1rem; }
  .em-header      { margin: -1rem -1rem 1rem; }
  .em-footer      { margin: 1rem -1rem -1rem; }
}

/* ══════════════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
