/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* ── Legal page shell (used by booking, faq, terms etc) ── */
.legal-shell {
  background: var(--bg-alt);
  min-height: calc(100vh - var(--header-h));
  padding: var(--sp-10) var(--sp-6) var(--sp-11);
}
.legal-wrap {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.back-link:hover { border-color: var(--red); color: var(--red); }

.legal-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-4);
}
.legal-title em { color: var(--red); font-style: normal; }

.legal-intro {
  font-size: var(--fs-md);
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: var(--sp-9);
  padding-bottom: var(--sp-7);
  border-bottom: 2px solid var(--border);
}
.legal-intro a { color: var(--red); font-weight: 600; }
.legal-intro a:hover { text-decoration: underline; }

/* Body sections */
.legal-body section {
  padding: var(--sp-7) 0;
  border-bottom: 1px solid var(--border);
}
.legal-body section:last-child { border-bottom: none; }
.legal-body h2 {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-3);
}
.legal-body h3 {
  font-size: var(--fs-base);
  font-weight: 700;
  margin: var(--sp-4) 0 var(--sp-2);
}
.legal-body p {
  font-size: var(--fs-base);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: var(--sp-2);
}
.legal-body ul {
  margin: var(--sp-3) 0 var(--sp-3) var(--sp-5);
  list-style: disc;
}
.legal-body ul li {
  font-size: var(--fs-base);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 4px;
}
.legal-body ul li::marker { color: var(--red); }
.legal-body strong { color: var(--text); }
.legal-body a { color: var(--red); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-4) 0;
  font-size: var(--fs-sm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.rate-table th {
  background: var(--bg-alt);
  text-align: left;
  padding: 12px 16px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  font-weight: 700;
}
.rate-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  color: var(--text-mid);
}

/* ACL box (warranty) */
.acl-box {
  background: var(--red-tint);
  border: 1.5px solid rgba(200, 0, 47, 0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.acl-box strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.acl-box p {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}
[data-theme="dark"] .acl-box { background: rgba(200, 0, 47, 0.08); }

/* About stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.about-stat {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.about-stat:hover { box-shadow: var(--sh-sm); border-color: var(--red); }
.about-stat dt {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.about-stat dd {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--red);
  line-height: 1;
}

/* Shipping summary */
.shipping-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-bottom: var(--sp-7);
}
.shipping-summary > div {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
}
.shipping-summary dt {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.shipping-summary dd {
  font-size: var(--fs-xs);
  color: var(--text-mid);
}

/* ── FAQ ───────────────────────────────────────────── */
.faq-group { margin-bottom: var(--sp-9); }
.faq-group-title {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--border);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow var(--dur-base), border-color var(--dur-base);
}
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-item[open] {
  border-color: rgba(200, 0, 47, 0.3);
  box-shadow: 0 0 0 3px var(--red-glow);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: var(--fs-base);
  font-weight: 600;
  cursor: pointer;
  gap: var(--sp-3);
  transition: color var(--dur-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-item[open] summary { color: var(--red); }
.chev {
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
  color: var(--text-mid);
}
.faq-item[open] .chev { transform: rotate(180deg); color: var(--red); }

.faq-body {
  padding: 0 20px 20px;
  border-top: 1px solid var(--border);
}
.faq-body p {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
  margin: 12px 0 0;
}

.faq-cta {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--sp-7) var(--sp-7);
  text-align: center;
  margin-top: var(--sp-9);
}
.faq-cta p {
  font-family: var(--f-display);
  font-size: var(--fs-xl);
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: var(--sp-4);
}
.faq-cta-btns {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BOOKING PAGE ──────────────────────────────────── */
.booking-shell { max-width: 1180px; }
.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--sp-8);
  align-items: start;
}
.booking-aside {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-5));
}
.aside-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
}
.aside-card h2 {
  font-family: var(--f-display);
  font-size: var(--fs-lg);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-4);
}
.aside-list { display: flex; flex-direction: column; gap: var(--sp-4); }
.aside-list li { display: flex; align-items: flex-start; gap: 12px; }
.aside-list li span {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.aside-list strong {
  font-size: var(--fs-sm);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.aside-list p {
  font-size: var(--fs-xs);
  color: var(--text-mid);
  line-height: 1.5;
}

.aside-call { background: var(--ink); color: var(--white); }
.aside-call h2 { color: var(--white); }
.aside-label {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}
.aside-phone {
  display: block;
  text-align: center;
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--red);
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-5);
  transition: opacity var(--dur-fast);
}
.aside-phone:hover { opacity: 0.85; }

.hours { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 14px; }
.hours > div {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hours > div:last-child { border-bottom: none; }
.hours dt { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.5); }
.hours dd { font-size: var(--fs-sm); color: var(--white); font-weight: 600; }

.aside-note {
  font-size: var(--fs-xs);
  color: var(--text-soft);
  margin-top: var(--sp-3);
  line-height: 1.5;
}
.aside-call .aside-note { color: rgba(255, 255, 255, 0.5); text-align: center; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.area-tags span {
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  transition: all var(--dur-fast);
}
.area-tags span:hover {
  background: var(--red-glow);
  border-color: var(--red);
  color: var(--red);
}

/* ── CHECKOUT ──────────────────────────────────────── */
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: var(--sp-8);
  align-items: start;
}
.checkout-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-5));
}
.summary-items {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-4);
  max-height: 320px;
  overflow-y: auto;
}
.sum-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}
.sum-item img {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.sum-item-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 2px;
}
.sum-item-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mid);
}
.sum-item-price {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.summary-totals { display: flex; flex-direction: column; gap: 8px; }
.summary-totals > div {
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-sm);
  color: var(--text-mid);
}
.summary-totals dt { font-weight: 500; }
.summary-totals dd { font-family: var(--f-mono); font-weight: 600; color: var(--text); }
.summary-totals small { color: var(--text-soft); font-size: 11px; font-weight: 400; }

.total-row {
  border-top: 1.5px solid var(--border);
  padding-top: var(--sp-3);
  margin-top: var(--sp-2);
}
.total-row dt {
  font-size: var(--fs-base) !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}
.total-row dd {
  font-family: var(--f-display) !important;
  font-size: 28px !important;
  color: var(--red) !important;
  letter-spacing: 0.02em;
}

.secure-note {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-soft);
  margin-top: var(--sp-3);
}

/* ── CART (modal) ──────────────────────────────────── */
.cart-empty {
  text-align: center;
  padding: var(--sp-9) var(--sp-5);
  color: var(--text-mid);
}
.cart-empty .icon { font-size: 48px; margin-bottom: var(--sp-3); opacity: 0.4; }
.cart-empty p { font-size: var(--fs-sm); }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  object-fit: cover;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.cart-info { flex: 1; min-width: 0; }
.cart-info-name {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-info-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mid);
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.qty-btn {
  width: 32px;
  height: 32px;
  font-size: 16px;
  color: var(--text-mid);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.qty-btn:hover { background: var(--red); color: var(--white); }
.qty-num {
  font-family: var(--f-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
}
.cart-total-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
}
.cart-total-val {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--red);
}

/* ── PRODUCT DETAIL MODAL ──────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  padding: var(--sp-6);
}
.detail-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  background: var(--bg-alt);
  object-fit: cover;
}
.detail-cat {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.detail-name {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.detail-model {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: var(--sp-5);
}
.detail-price {
  font-family: var(--f-display);
  font-size: 42px;
  color: var(--red);
  margin-bottom: var(--sp-5);
  line-height: 1;
}
.detail-price small {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-mid);
  margin-right: 4px;
}
.detail-badges {
  font-size: var(--fs-xs);
  color: var(--text-mid);
  margin-top: var(--sp-3);
  line-height: 2;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
}

/* ── ADMIN PAGE ────────────────────────────────────── */
.admin-shell {
  background: var(--bg-alt);
  min-height: calc(100vh - var(--header-h));
  padding: var(--sp-7) var(--sp-6) var(--sp-10);
}
.admin-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sp-7);
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.admin-head .legal-title { margin-bottom: var(--sp-1); }
.admin-head p {
  color: var(--text-mid);
  font-size: var(--fs-sm);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.admin-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.admin-stat dt {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.admin-stat dd {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1;
}

.tab-bar {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: var(--sp-6);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-mid);
  padding: 12px 22px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  letter-spacing: 0.02em;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.tab-panel { display: none; animation: page-in var(--dur-slow) var(--ease-out); }
.tab-panel.is-active { display: block; }

/* ── SUCCESS / CANCELLED ───────────────────────────── */
.success-wrap {
  text-align: center;
  padding: var(--sp-9) 0;
}
.success-wrap .legal-title { margin-top: var(--sp-3); }
.success-wrap .legal-intro {
  border: none;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
}
.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: var(--r-pill);
  background: var(--success-bg);
  color: var(--success);
  margin-bottom: var(--sp-4);
  animation: pop var(--dur-slow) var(--ease-spring);
}
.cancel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: var(--r-pill);
  background: var(--warning-bg);
  color: var(--warning);
  margin-bottom: var(--sp-4);
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.success-id {
  font-family: var(--f-mono);
  font-size: var(--fs-base);
  color: var(--text-mid);
  margin-bottom: var(--sp-6);
}
.success-actions {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── CHAT ──────────────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: var(--z-chat);
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background: var(--red);
  color: var(--white);
  box-shadow: var(--sh-red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease-spring), background-color var(--dur-fast);
}
.chat-fab:hover { transform: scale(1.08); background: var(--red-700); }
.chat-fab[aria-expanded="true"] { transform: scale(0.9) rotate(180deg); }

.chat-window {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: var(--z-chat);
  width: 340px;
  height: 480px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: chat-in var(--dur-slow) var(--ease-spring);
}
@keyframes chat-in {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-head {
  background: var(--red);
  color: var(--white);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.chat-head-info { flex: 1; }
.chat-name { font-size: var(--fs-sm); font-weight: 600; }
.chat-status { font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.7); }
.chat-close {
  width: 32px;
  height: 32px;
  font-size: 22px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.chat-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--white); }

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-alt);
}
.msg {
  max-width: 84%;
  font-size: var(--fs-sm);
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  animation: msg-in var(--dur-base) var(--ease-out);
}
.msg-bot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-radius: 4px 14px 14px 14px;
}
.msg-user {
  background: var(--red);
  color: var(--white);
  align-self: flex-end;
  border-radius: 14px 4px 14px 14px;
}
.msg a { color: inherit; font-weight: 600; text-decoration: underline; }
@keyframes msg-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  flex-shrink: 0;
}
.chat-input-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: var(--fs-sm);
  background: none;
  color: var(--text);
}
.chat-input-row button {
  padding: 0 16px;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--dur-fast);
}
.chat-input-row button:hover { color: var(--red-700); }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand-col { grid-column: 1 / -1; padding-right: 0; }
  .why-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .why-stats { grid-template-columns: repeat(4, 1fr); }
  .booking-grid, .checkout-grid {
    grid-template-columns: 1fr;
  }
  .booking-aside, .checkout-summary { position: static; }
}

@media (max-width: 900px) {
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(odd) + .trust-item::before {
    display: none;
  }
  .trust-item:nth-child(odd) { padding-right: var(--sp-4); }
  .trust-item:nth-child(odd) + .trust-item { border-left: 1px solid var(--border); padding-left: var(--sp-4); }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .shipping-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --sp-7: 24px; --sp-8: 32px; --sp-9: 44px; --sp-10: 56px; --sp-11: 72px; }
  .form-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .detail-grid { grid-template-columns: 1fr; padding: var(--sp-5); }
  .card-form { padding: var(--sp-6); }
  .footer-cta-inner { flex-direction: column; align-items: stretch; }
  .footer-cta-actions { flex-direction: column; }
  .footer-cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .card-body { padding: 12px; }
  .card-name { font-size: var(--fs-sm); }
  .card-price { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-window { right: 8px; bottom: 84px; width: calc(100vw - 16px); height: 70vh; }
  .chat-fab { right: 16px; bottom: 16px; }
  .header-inner { padding: 0 var(--sp-3); }
  .brand-secondary { display: none; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .shipping-summary { grid-template-columns: 1fr; }
  .legal-shell { padding: var(--sp-7) var(--sp-3) var(--sp-9); }
}
