@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=DM+Mono:wght@400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #F2EDE6; color: #1B2A4A; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
input, select, button, textarea { font-family: inherit; }

/* ── Tokens ── */
:root {
  --navy:       #1B2A4A;
  --tc:         #D4622A;
  --cream:      #F0E8D8;
  --mustard:    #E3A800;
  --plum:       #7B3F6E;
  --bg:         #F2EDE6;
  --white:      #FFFFFF;
  --border:     #E5DDD3;
  --muted:      #8A8480;
  --radius:     8px;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }


/* ════════════════════════
   NAV  — navy background
   ════════════════════════ */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 300;
  height: 56px;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-actions { display: flex; gap: 10px; margin-left: auto; }

/* nav buttons */
.btn-order {
  background: var(--mustard);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-order:hover { opacity: .88; }
.btn-signin {
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: border-color .15s;
}
.btn-signin:hover { border-color: #fff; }


/* ════════════════════════
   HERO  — white bg
   ════════════════════════ */
.hero {
  background: #fff;
  padding: 60px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
}
.hero-copy { padding-bottom: 60px; }
.hero-copy h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero-copy p {
  font-size: 0.9375rem;
  color: #5a5550;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; align-items: center; }
.btn-primary {
  background: var(--mustard);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 11px 26px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .88; }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 7px;
  border: 1.5px solid #C8C0B5;
  cursor: pointer;
  transition: border-color .15s;
}
.btn-secondary:hover { border-color: var(--navy); }
.hero-img {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 420px;
  background: var(--cream);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }


/* ════════════════════════
   STEPS STRIP
   ════════════════════════ */
.steps {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon.tc  { background: #F7EAE4; }
.step-icon.mu  { background: #FBF5DC; }
.step-icon.nv  { background: #E8ECF5; }
.step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 3px;
}
.step-desc {
  font-size: 0.8125rem;
  color: #5a5550;
  line-height: 1.5;
}


/* ════════════════════════
   PAGE BODY
   ════════════════════════ */
.page-body { padding: 36px 0 80px; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 328px;
  gap: 28px;
  align-items: start;
}
.main-col { min-width: 0; }


/* ── Service Cards ── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.svc-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.svc-icon.tc { background: #F7EAE4; }
.svc-icon.mu { background: #FBF5DC; }
.svc-icon.nv { background: #E8ECF5; }
.svc-card h4 { font-family: 'DM Sans', sans-serif; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.svc-card p  { font-size: .78rem; color: var(--muted); line-height: 1.5; }


/* ── Catalogue ── */
.section-hdr {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.section-hdr h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
}
.section-hdr span { font-size: .8rem; color: var(--muted); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--cream);
  display: block;
}
.product-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.product-meta { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; flex-wrap: wrap; }
.badge-partner {
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tc);
  background: #F7EAE4;
  padding: 2px 7px;
  border-radius: 4px;
}
.badge-preorder {
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A7000;
  background: #FBF5DC;
  padding: 2px 7px;
  border-radius: 4px;
}
.product-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.product-desc { font-size: .78rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px; flex: 1; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price { font-size: .9375rem; font-weight: 600; color: var(--navy); }
.product-controls { display: flex; align-items: center; gap: 8px; }
.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: var(--bg);
  color: var(--navy);
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--cream); }
.qty-val {
  width: 28px;
  text-align: center;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  border: none;
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}
.qty-val::-webkit-outer-spin-button,
.qty-val::-webkit-inner-spin-button { -webkit-appearance: none; }
.btn-add {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s;
}
.btn-add:hover { background: #243660; }
.btn-add.added { background: var(--tc); }
.preorder-note { font-size: .75rem; color: var(--tc); margin-top: 10px; font-style: italic; }

.catalogue-more { text-align: center; margin-top: 20px; }
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid #C8C0B5;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .15s;
}
.btn-outline-navy:hover { border-color: var(--navy); }


/* ── How It Works ── */
.how-block { margin: 32px 0; }
.how-block h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.how-block h3 em { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.how-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.how-list li {
  display: flex;
  gap: 10px;
  font-size: .875rem;
  color: #5a5550;
  align-items: flex-start;
  line-height: 1.55;
}
.how-list li::before { content: '→'; color: var(--mustard); font-weight: 700; flex-shrink: 0; }


/* ── Partners ── */
.partners { margin: 0 0 36px; }
.partners-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.partners-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.partner-chip {
  height: 52px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.partner-chip img { height: 28px; width: auto; object-fit: contain; }
.partner-chip span {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--navy);
}


/* ── Testimonials ── */
.testimonials { padding: 40px 0 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.t-label {
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tc);
}
.t-card blockquote { font-size: .9rem; color: var(--navy); line-height: 1.7; font-style: italic; }
.t-author { font-size: .8rem; color: var(--muted); }
.t-author strong { color: #5a5550; font-weight: 500; }


/* ════════════════════════
   ORDER SIDEBAR
   ════════════════════════ */
.sidebar { position: sticky; top: 72px; }

.order-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

/* head */
.op-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.op-label {
  font-family: 'DM Mono', monospace;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tc);
}
.op-summary { display: flex; align-items: center; gap: 10px; }
.op-count { font-size: .9rem; font-weight: 600; color: var(--navy); }

/* items */
.op-empty {
  padding: 24px 18px;
  font-size: .8125rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}
.op-items { padding: 4px 18px 0; max-height: 200px; overflow-y: auto; }
.op-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #F0EAE1;
}
.op-item:last-child { border-bottom: none; }
.op-item-name { font-size: .8125rem; font-weight: 500; color: var(--navy); }
.op-item-sub  { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.op-item-price { font-size: .8125rem; font-weight: 600; color: var(--navy); flex-shrink: 0; margin-left: 12px; }

/* fields */
.op-fields { border-top: 1px solid var(--border); padding: 14px 18px 0; }
.op-field { margin-bottom: 14px; }
.op-field-lbl {
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tc);
  display: block;
  margin-bottom: 6px;
}
.op-field select,
.op-field input[type="text"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: .8125rem;
  color: var(--navy);
  background: #fff;
  outline: none;
}
.op-field select:focus,
.op-field input[type="text"]:focus { border-color: var(--navy); }
.op-addr-val { font-size: .8125rem; color: var(--navy); }
.op-addr-note { font-size: .72rem; color: var(--muted); margin-top: 3px; }

/* promo */
.op-promo-row { display: flex; gap: 8px; margin-bottom: 14px; }
.op-promo-row input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: .8125rem;
  color: var(--navy);
  outline: none;
  background: #fff;
}
.op-promo-row input::placeholder { color: #B8B0A8; }
.op-promo-row input:focus { border-color: var(--navy); }
.btn-apply {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-apply:hover { opacity: .88; }

/* rental */
.op-rental {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .8rem;
  color: #5a5550;
  margin-bottom: 6px;
}
.op-rental input { margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.op-rental-warn { font-size: .75rem; color: var(--tc); margin-bottom: 14px; }

/* subtotal + cta */
.op-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: .875rem;
  color: var(--navy);
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}
.op-subtotal span:last-child { font-weight: 700; }
.btn-checkout {
  display: block;
  width: calc(100% - 36px);
  margin: 0 18px 18px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 13px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: opacity .15s;
}
.btn-checkout:hover { opacity: .88; }
.btn-checkout:disabled { background: #C8C0B5; cursor: default; opacity: 1; }


/* ════════════════════════
   FOOTER
   ════════════════════════ */
.footer { background: var(--navy); color: #fff; padding: 52px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 280px;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand-desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 220px;
}
.footer-col-lbl {
  font-family: 'DM Mono', monospace;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
  display: block;
}
.footer-nav-links { display: flex; flex-wrap: wrap; gap: 6px 24px; }
.footer-nav-links a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-nav-links a:hover { color: #fff; }
.footer-contact-line { font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: 6px; line-height: 1.5; }
.footer-contact-line a { color: var(--mustard); }
.footer-support-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.btn-support {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: .8125rem;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
}
.btn-support:hover { background: rgba(255,255,255,.12); }
.footer-legal-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-legal-links a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .15s; }
.footer-legal-links a:hover { color: #fff; }
.newsletter-row { display: flex; gap: 8px; margin-top: 10px; }
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  font-size: .8125rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-input:focus { border-color: rgba(255,255,255,.4); }
.btn-subscribe {
  background: var(--mustard);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.social-icons { display: flex; gap: 16px; align-items: center; }
.social-icons a {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  line-height: 1;
  transition: color .15s;
}
.social-icons a:hover { color: #fff; }


/* ════════════════════════
   SIGN IN PAGE
   ════════════════════════ */
.auth-page {
  min-height: calc(100vh - 56px);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 44px;
  width: 100%;
  max-width: 580px;
  border: 1px solid var(--border);
}
.auth-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.auth-sub { font-size: .875rem; color: var(--muted); margin-bottom: 28px; line-height: 1.55; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem;
  color: var(--tc);
  margin-bottom: 6px;
  font-weight: 400;
}
.form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: .9375rem;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.form-group input:focus { border-color: var(--navy); }
.form-group input::placeholder { color: #C0B8B0; }

/* HORIZONTAL button row — matches design exactly */
.auth-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn-signin-dark {
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 11px 24px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.btn-signin-dark:hover { opacity: .88; }
.btn-google {
  background: var(--mustard);
  color: var(--navy);
  border: none;
  border-radius: 7px;
  padding: 11px 20px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s;
}
.btn-google:hover { opacity: .88; }
.btn-forgot {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 10px 20px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s;
}
.btn-forgot:hover { border-color: var(--navy); }
.auth-footer-note { margin-top: 20px; font-size: .875rem; color: var(--muted); }
.auth-footer-note a { color: var(--mustard); font-weight: 500; }


/* ════════════════════════
   CHECKOUT PAGE
   ════════════════════════ */
.checkout-page {
  min-height: calc(100vh - 56px);
  background: var(--bg);
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.checkout-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 44px;
  width: 100%;
  max-width: 680px;
  border: 1px solid var(--border);
}
.checkout-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.checkout-sub { font-size: .875rem; color: var(--muted); margin-bottom: 28px; }
.checkout-items {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
}
.co-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}
.co-item:last-child { border-bottom: none; }
.co-item-name { font-size: .9rem; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.co-item-sub  { font-size: .78rem; color: var(--muted); }
.co-item-price { font-size: .9rem; font-weight: 600; color: var(--navy); flex-shrink: 0; margin-left: 16px; }
.co-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.co-field label {
  display: block;
  font-size: .8rem;
  color: var(--tc);
  margin-bottom: 6px;
}
.co-field input,
.co-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: .9rem;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .15s;
}
.co-field input:focus,
.co-field select:focus { border-color: var(--navy); }
.co-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: .9375rem;
  color: var(--navy);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.co-subtotal span:last-child { font-weight: 700; }
.btn-pay {
  display: block;
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-pay:hover { opacity: .88; }
.co-disclaimer {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}
.co-disclaimer a { color: var(--navy); text-decoration: underline; }


/* ════════════════════════
   LEGAL PAGES
   ════════════════════════ */
.legal-page {
  min-height: calc(100vh - 56px);
  background: var(--bg);
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-card {
  background: #fff;
  border-radius: 12px;
  padding: 44px 52px;
  width: 100%;
  max-width: 860px;
  border: 1px solid var(--border);
}
.legal-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.legal-intro {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-section { margin-bottom: 28px; }
.legal-section h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.legal-section p {
  font-size: .9rem;
  color: #5a5550;
  line-height: 1.75;
}
.legal-section ul {
  padding-left: 18px;
  margin-top: 8px;
}
.legal-section li {
  font-size: .9rem;
  color: #5a5550;
  line-height: 1.75;
  margin-bottom: 4px;
}


/* ════════════════════════
   CATALOGUE PAGE
   ════════════════════════ */
.cat-page { padding: 40px 0 80px; }
.cat-header { margin-bottom: 28px; }
.cat-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cat-header p { font-size: .9375rem; color: #5a5550; }
.cat-filters { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: .8125rem;
  color: #5a5550;
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .service-cards { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .auth-card, .checkout-card { padding: 28px 24px; }
  .auth-btn-row { flex-direction: column; }
  .co-fields { grid-template-columns: 1fr; }
  .legal-card { padding: 28px 24px; }
  .cat-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════
   PARTNERS MARQUEE
   ════════════════════════════════════════ */

.partners-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.partners-marquee-track:hover { animation-play-state: paused; }


/* ════════════════════════════════════════
   TESTIMONIALS CAROUSEL
   ════════════════════════════════════════ */

.t-carousel {
  position: relative;
  min-height: 160px;
}

.t-slide {
  display: none;
  animation: fadeSlide .5s ease;
}

.t-slide.active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}

.t-dot.active {
  background: var(--navy);
  transform: scale(1.3);
}


/* ════════════════════════════════════════
   MY ACCOUNT PAGE
   ════════════════════════════════════════ */

.acct-page {
  padding: 52px 0 80px;
  min-height: 70vh;
}

.acct-wrap { max-width: 860px; }

.acct-header {
  margin-bottom: 32px;
}

.acct-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.acct-email {
  font-size: .875rem;
  color: var(--muted);
}

.acct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.acct-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.acct-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.acct-divider {
  height: 1px;
  background: var(--border);
  margin: 0 -28px;
}

.acct-signout-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 7px;
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .15s;
  width: 100%;
}

.acct-signout-btn:hover {
  border-color: var(--tc);
  color: var(--tc);
}

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


/* ════════════════════════════════════════
   PRICING PAGE
   ════════════════════════════════════════ */

.pricing-hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 72px;
  text-align: center;
}

.pricing-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--mustard);
  margin-bottom: 16px;
}

.pricing-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.pricing-lead {
  color: rgba(255,255,255,.7);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.pricing-cta {
  display: inline-block;
  font-size: 1rem;
  padding: 14px 32px;
}

/* How it works strip */
.pricing-how {
  background: var(--cream);
  padding: 60px 0;
}

.pricing-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.pricing-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}

.pricing-step-arrow {
  font-size: 1.5rem;
  color: var(--border);
  align-self: center;
  flex-shrink: 0;
}

.step-num {
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  color: var(--mustard);
  font-weight: 500;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.pricing-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}

.pricing-step p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Includes grid */
.pricing-includes {
  padding: 72px 0;
  background: var(--bg);
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.include-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.include-icon { margin-bottom: 14px; }

.include-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}

.include-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Scale card */
.pricing-scale {
  padding: 64px 0;
  background: var(--cream);
}

.scale-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.scale-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.scale-left > p {
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.scale-examples { display: flex; flex-direction: column; gap: 14px; }

.scale-ex {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 14px;
  border-left: 3px solid var(--mustard);
}

.scale-size {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--navy);
}

.scale-desc {
  font-size: .8125rem;
  color: var(--muted);
}

.scale-cta-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  text-align: center;
}

.scale-cta-label {
  font-family: 'DM Mono', monospace;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mustard);
  margin-bottom: 10px;
}

.scale-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.scale-cta-sub {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

.scale-note {
  font-size: .8125rem;
  color: var(--muted);
  margin-top: 14px;
}

/* Trust */
.pricing-trust {
  padding: 56px 0;
  background: var(--navy);
  text-align: center;
}

.trust-label {
  font-family: 'DM Mono', monospace;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 32px;
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 48px;
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mustard);
}

.trust-desc { font-size: .875rem; color: rgba(255,255,255,.6); }

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* FAQ teaser */
.pricing-faq-teaser {
  padding: 72px 0;
  background: var(--bg);
}

.pricing-faq-teaser h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  font-size: .9375rem;
  padding: 11px 28px;
  border-radius: 8px;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
  background: none;
  cursor: pointer;
}

.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-tc { border-color: var(--tc); color: var(--tc); }
.btn-outline-tc:hover { background: var(--tc); color: #fff; }


/* ════════════════════════════════════════
   HELP PAGE
   ════════════════════════════════════════ */

.help-page {
  padding: 60px 0 80px;
  min-height: 70vh;
}

.help-header {
  text-align: center;
  margin-bottom: 40px;
}

.help-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.help-header p {
  color: var(--muted);
  font-size: .9375rem;
  max-width: 480px;
  margin: 0 auto;
}

/* Category pills */
.help-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.help-cat {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}

.help-cat:hover { border-color: var(--navy); color: var(--navy); }
.help-cat.active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* FAQ section */
.faq-section {
  max-width: 720px;
  margin: 0 auto 40px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}

.faq-item.open { border-color: var(--navy); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  transition: background .15s;
}

.faq-q:hover { background: var(--cream); }

.faq-item.open .faq-q { background: var(--cream); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .2s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.open .faq-a { display: block; }

.faq-a p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-a a { color: var(--tc); text-decoration: underline; }

/* Help contact cards */
.help-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 48px auto 0;
}

.help-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}

.help-contact-issue { border-color: rgba(212,98,42,.25); }

.help-contact-icon { margin: 0 auto 14px; width: fit-content; }

.help-contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.help-contact-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   NAV CART ICON
   ══════════════════════════════════════════ */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 6px;
  border-radius: 8px;
  transition: background .15s;
  text-decoration: none;
}
.nav-cart:hover { background: rgba(255,255,255,.1); }
.nav-cart.active { color: var(--mu); }

.nav-cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--tc);
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════════ */
.cart-page {
  padding: 48px 0 80px;
  background: var(--bg);
  min-height: calc(100vh - 64px);
}

.cart-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cart-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
}

.cart-clear-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--muted);
  font-size: .8125rem;
  cursor: pointer;
  padding: 6px 13px;
  transition: border-color .15s, color .15s;
}
.cart-clear-btn:hover { border-color: #ef4444; color: #ef4444; }

/* Empty state */
.cart-empty {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 56px 32px;
  text-align: center;
}
.cart-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.cart-empty p { font-size: .9rem; color: var(--muted); }

/* Cart item rows */
.cart-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 12px;
  transition: box-shadow .15s;
}
.cart-item:hover { box-shadow: 0 2px 12px rgba(27,42,74,.08); }

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
  position: relative;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.cart-item-img-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
  opacity: .4;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.cart-item-partner { font-size: .8125rem; color: var(--muted); margin-top: 3px; }
.cart-preorder-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  color: var(--tc);
  background: rgba(212,98,42,.1);
  border-radius: 5px;
  padding: 2px 7px;
  margin-top: 5px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 5px;
  flex-shrink: 0;
  transition: color .15s, background .15s;
  display: flex;
  align-items: center;
}
.cart-item-remove:hover { color: #ef4444; background: rgba(239,68,68,.08); }

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-qty-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  background: var(--bg);
}
.cart-qty-btn {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  padding: 7px 13px;
  transition: background .15s;
  line-height: 1;
}
.cart-qty-btn:hover { background: var(--cream); }
.cart-qty-val {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
  min-width: 28px;
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 7px 4px;
}

.cart-item-pricing { text-align: right; }
.cart-item-unit { display: block; font-size: .8rem; color: var(--muted); }
.cart-item-line { display: block; font-size: 1.0625rem; font-weight: 700; color: var(--navy); }

/* Upsell strip */
.cart-upsell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 4px;
}
.cart-upsell-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.cart-upsell-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cart-upsell-chip {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 14px;
  cursor: pointer;
  text-align: left;
  font-size: .8125rem;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s, background .15s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart-upsell-chip:hover { border-color: var(--tc); background: rgba(212,98,42,.04); }
.cart-upsell-save { font-size: .7rem; color: #16a34a; font-weight: 600; }

/* Summary column */
.cart-summary-col {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-summary-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.cart-summary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.cart-summary-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
}
.cart-summary-tag {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--navy);
}
.cart-summary-total span:last-child { font-size: 1.25rem; }

.btn-cart-checkout {
  display: block;
  width: 100%;
  background: var(--tc);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px;
  font-size: .9375rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
  transition: background .15s;
  margin-bottom: 12px;
}
.btn-cart-checkout:hover { background: #b8501e; color: #fff; }

.cart-continue-link {
  display: block;
  text-align: center;
  font-size: .8125rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 16px;
}
.cart-continue-link:hover { color: var(--navy); }

.cart-trust-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* Promo card */
.cart-promo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.cart-promo-lbl {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.cart-promo-row { display: flex; gap: 8px; }
.cart-promo-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .875rem;
  color: var(--navy);
  background: var(--bg);
  font-family: 'DM Sans', sans-serif;
  transition: border-color .15s;
}
.cart-promo-input:focus { outline: none; border-color: var(--navy); }

@media (max-width: 768px) {
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-summary-col { position: static; }
  .cart-item-img { width: 64px; height: 64px; }
  .cart-upsell-chips { flex-direction: column; }
}

/* ══════════════════════════════════════════
   STORAGE STEP
   ══════════════════════════════════════════ */
.op-storage-step {
  padding: 8px 0 2px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.op-step-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.op-step-num {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tc);
  background: rgba(212,98,42,.1);
  border-radius: 4px;
  padding: 2px 6px;
}

.op-step-title {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}

.op-step-hint {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.op-storage-opts {
  display: flex;
  background: #ede8e0;
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  margin-bottom: 10px;
}

.op-storage-opt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 9px 4px 7px;
  cursor: pointer;
  gap: 3px;
  background: transparent;
  border: none;
  transition: background .15s, box-shadow .15s;
}

.op-storage-opt input[type="radio"] { display: none; }

.op-storage-opt:hover { background: rgba(255,255,255,.5); }
.op-storage-opt.selected {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

.op-storage-opt-icon {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
}

.op-storage-opt-title {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.op-storage-opt-sub {
  display: block;
  font-size: .58rem;
  color: var(--muted);
  line-height: 1.2;
}

.btn-storage-continue {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, opacity .15s;
}

.btn-storage-continue:disabled { opacity: .4; cursor: not-allowed; }
.btn-storage-continue:not(:disabled):hover { background: #1a3060; }

.op-storage-done {
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.op-storage-done-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.op-storage-done-val {
  font-size: .8125rem;
  color: var(--navy);
  font-weight: 500;
  margin-left: 8px;
}

.op-storage-change {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  font-size: .75rem;
  cursor: pointer;
  padding: 3px 9px;
  white-space: nowrap;
  transition: border-color .15s;
}

.op-storage-change:hover { border-color: var(--navy); color: var(--navy); }

/* ══════════════════════════════════════════
   PACKAGES SECTION
   ══════════════════════════════════════════ */
.packages-section { margin-bottom: 40px; }

/* ── Storage product cards (sidebar) ──────────── */
.stor-products-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 6px;
}

.stor-prod-card {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.stor-prod-card:hover { border-color: var(--navy); background: #fafaf8; }

.stor-prod-card.selected {
  border-color: var(--tc);
  background: rgba(212,98,42,.05);
  box-shadow: 0 0 0 3px rgba(212,98,42,.12);
}

.stor-prod-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}

.stor-prod-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.stor-prod-type {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--tc);
}

.stor-prod-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stor-prod-desc {
  font-size: .65rem;
  color: var(--muted);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stor-prod-price {
  font-size: .7rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2px;
}

/* Simple "own / skip" options below product cards */
.stor-other-opts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.stor-other-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: .75rem;
  color: var(--muted);
  transition: border-color .15s, background .15s;
}

.stor-other-opt input[type="radio"] { display: none; }
.stor-other-opt:hover { border-color: var(--navy); color: var(--navy); background: #fafaf8; }
.stor-other-opt.selected { border-color: var(--tc); background: rgba(212,98,42,.05); color: var(--navy); }

.stor-other-icon { font-size: .9rem; flex-shrink: 0; }

/* ── Catalogue gate overlay ───────────────────── */
.catalogue-gate {
  background: var(--cream);
  border: 1.5px dashed var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  margin-bottom: 20px;
}

.cat-gate-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cat-gate-icon { font-size: 2rem; }

.cat-gate-msg {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  max-width: 280px;
}

/* catalogue.html banner gate */
.cat-storage-gate {
  background: rgba(212,98,42,.07);
  border-bottom: 1px solid rgba(212,98,42,.2);
  padding: 14px 0;
}

.cat-gate-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-storage-gate .cat-gate-icon { font-size: 1.4rem; flex-shrink: 0; }
.cat-storage-gate strong { font-size: .875rem; color: var(--navy); }
.cat-storage-gate p { font-size: .8rem; color: var(--muted); margin: 2px 0 0; }
.cat-gate-btn { margin-left: auto; white-space: nowrap; font-size: .8125rem; padding: 9px 16px; }

/* ── Packages — step-strip style ─────────────── */
.packages-section { transition: opacity .3s; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .15s, transform .15s;
}

.pkg-card:hover { box-shadow: 0 6px 20px rgba(27,42,74,.09); transform: translateY(-2px); }

.pkg-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pkg-icon {
  font-size: 2rem;
  line-height: 1;
}

.pkg-badge {
  display: inline-block;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 3px 10px;
}

.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.pkg-tagline {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.pkg-price {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
}

.pkg-was {
  font-size: .75rem;
  color: var(--muted);
  text-decoration: line-through;
}

.pkg-save {
  font-size: .7rem;
  color: #16a34a;
  font-weight: 600;
  margin-left: auto;
}

.btn-pkg-add {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background .15s;
  margin-top: 4px;
}

.btn-pkg-add:hover { background: var(--tc); }

/* ══════════════════════════════════════════
   ADMIN — ADMINS TAB
   ══════════════════════════════════════════ */
.adm-admins-layout { max-width: 720px; }

.adm-invite-card {
  background: var(--adm-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 24px;
}

.adm-invite-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .pricing-steps { flex-direction: column; align-items: center; }
  .pricing-step-arrow { transform: rotate(90deg); }
  .includes-grid { grid-template-columns: 1fr; }
  .scale-card { grid-template-columns: 1fr; }
  .trust-stats { flex-direction: column; gap: 24px; }
  .trust-divider { display: none; }
  .help-contact { grid-template-columns: 1fr; }
  .adm-form-row { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
}
}
