/* ============================================================
   FRESH & BRIGHT INC. — Teal & Orange Design System v2
   ============================================================ */

:root {
  /* Color tokens — drawn from the brand logo */
  --teal:        #1c6f63;
  --teal-deep:   #124b43;
  --teal-light:  #e3f1ed;
  --teal-line:   #cfe4dd;
  --orange:      #ef8c3d;
  --orange-deep: #d4701f;
  --cream:       #fbf7ee;
  --cream-soft:  #f3ecdb;
  --ink:         #243430;
  --ink-soft:    #5b6863;
  --white:       #ffffff;

  --font-display: "Poppins", "Quicksand", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-script: "Caveat", cursive;

  --max-width: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--teal-deep);
}

h2 { font-size: clamp(28px, 4vw, 40px); text-align: center; }
h3 { font-size: clamp(19px, 2.2vw, 23px); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-deep);
  display: block;
  text-align: center;
}

.lede {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.section-head { max-width: 680px; margin: 0 auto 50px; text-align: center; }
.section-head h2 { margin-top: 10px; margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(239,140,61,0.35);
}
.btn-orange:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-teal-line {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: transparent;
}
.btn-teal-line:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white-line {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-white-line:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ---------- Header / Nav (symmetric, centered logo) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,247,238,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--teal-line);
}
.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  gap: 18px;
}
.nav-group { display: flex; gap: 30px; }
.nav-group.right { justify-content: flex-end; align-items: center; }
.nav-group a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-group a:hover, .nav-group a.active { color: var(--teal); border-color: var(--orange); }

.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.brand-center img { height: 56px; width: 56px; border-radius: 50%; }
.brand-center span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--teal-deep);
  white-space: nowrap;
}
.brand-center span em { color: var(--orange); font-style: normal; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--teal-line);
  color: var(--teal-deep);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 28px 26px;
  border-bottom: 1px solid var(--teal-line);
  background: var(--cream);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-body); font-weight: 600; color: var(--ink); }

@media (max-width: 880px) {
  .header-grid { grid-template-columns: auto 1fr auto; height: 78px; }
  .nav-group.left, .nav-group.right { display: none; }
  .brand-center { align-items: flex-start; }
  .nav-toggle { display: flex; margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--cream) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.hero-logo-badge { display: flex; justify-content: center; margin-bottom: 18px; }
.hero-logo-badge img { height: 96px; width: 96px; border-radius: 50%; box-shadow: 0 10px 30px rgba(28,111,99,0.18); }
.hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  max-width: 760px;
  margin: 0 auto 18px;
}
.hero h1 .accent { color: var(--orange); }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.hero-script { font-family: var(--font-script); font-size: 26px; color: var(--orange-deep); margin-top: 10px; }

/* ---------- Trust strip (symmetric 4-up) ---------- */
.trust-strip { background: var(--white); border-top: 1px solid var(--teal-line); border-bottom: 1px solid var(--teal-line); padding: 30px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-grid .icon { width: 50px; height: 50px; border-radius: 50%; background: var(--teal-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 22px; }
.trust-grid p { margin: 0; font-weight: 600; font-size: 14px; color: var(--teal-deep); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.bg-cream { background: var(--cream); }
.bg-soft { background: var(--cream-soft); }
.bg-teal { background: var(--teal); color: var(--white); }
.bg-teal h2, .bg-teal h3 { color: var(--white); }
.bg-teal .eyebrow { color: var(--orange); }
.bg-teal .lede { color: rgba(255,255,255,0.82); }

/* ---------- Symmetric grids ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .grid-4, .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(28,111,99,0.07);
  border: 1px solid var(--teal-line);
}
.card .icon-circle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 14px; }
.card .from {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange-deep);
  background: #fdf0e3;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- Process / trust steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { text-align: center; position: relative; }
.process-step .step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.process-step h4 { font-family: var(--font-display); font-size: 16.5px; color: var(--teal-deep); margin: 0 0 8px; }
.process-step p { font-size: 14px; color: var(--ink-soft); margin: 0; }

.agreement-banner {
  margin-top: 50px;
  background: var(--white);
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 760px;
  margin-inline: auto;
}
.agreement-banner .stamp {
  flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.agreement-banner h4 { font-family: var(--font-display); color: var(--teal-deep); margin: 0 0 4px; font-size: 17px; }
.agreement-banner p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 600px) { .agreement-banner { flex-direction: column; text-align: center; } }

/* ---------- Story section ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 50px rgba(28,111,99,0.18); }
.story-text { text-align: center; }
.story-text p { color: var(--ink-soft); font-size: 15.5px; margin: 0 0 16px; }

/* ---------- Pricing (simplified, no calculator) ---------- */
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--teal-line);
  padding: 30px 26px;
  text-align: center;
}
.price-card .icon-circle { width: 54px; height: 54px; border-radius: 50%; background: var(--teal-light); display:flex; align-items:center; justify-content:center; font-size:24px; margin:0 auto 14px; }
.price-card .from-price { font-family: var(--font-display); font-size: 30px; color: var(--teal-deep); font-weight: 700; margin: 6px 0 4px; }
.price-card .from-price span { font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 14px 0 0; text-align: left; font-size: 13.5px; color: var(--ink-soft); }
.price-card ul li { padding: 6px 0; border-bottom: 1px dashed var(--teal-line); display:flex; justify-content: space-between; gap: 10px; }
.price-card ul li b { color: var(--teal-deep); font-weight: 700; white-space: nowrap; }

.area-note {
  margin-top: 50px;
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 30px 34px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 820px;
  margin-inline: auto;
}
.area-note .icon-circle { background: var(--white); flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size:22px; }
.area-note h4 { font-family: var(--font-display); color: var(--teal-deep); margin: 0 0 6px; font-size: 16px; }
.area-note p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; text-align: center; border: 1px solid var(--teal-line); }
.offer-card .big { font-family: var(--font-display); font-size: 21px; color: var(--orange-deep); font-weight: 700; line-height: 1.3; }
.offer-card h4 { margin: 6px 0 8px; font-size: 16px; font-family: var(--font-display); color: var(--teal-deep); }
.offer-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; max-width: 820px; margin: 0 auto; }
@media (max-width: 700px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-grid li { list-style: none; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,0.25); font-size: 14.5px; }
.policy-grid li b { color: var(--orange); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.quick-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.quick-actions .btn { flex: 1; min-width: 110px; justify-content: center; padding: 13px 16px; font-size: 14px; }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-2px); }
.contact-line { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--teal-line); align-items: center; }
.contact-line .icon-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--teal-light); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.contact-line .lbl { font-weight: 700; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-deep); display: block; margin-bottom: 2px; }
.map-box { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--teal-line); }
.map-box iframe { width: 100%; height: 100%; border: 0; }

.contact-form .field { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 700; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 8px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--teal); }

/* ---------- Footer ---------- */
footer { background: var(--teal-deep); color: rgba(255,255,255,0.78); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; margin-bottom: 36px; text-align: center; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
footer h5 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--orange); margin: 0 0 14px; }
footer a:hover { color: var(--orange); }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 4px 0; font-size: 14px; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { height: 48px; width: 48px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }
@media (max-width: 760px) { .footer-bottom { justify-content: center; text-align: center; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  padding: 0 24px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-deep);
  padding: 18px 36px 18px 0;
  position: relative;
  font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 14px;
  font-size: 24px;
  line-height: 1;
  color: var(--orange);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 20px; line-height: 1.65; }

.sticky-cta {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 60;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(28,111,99,0.45));
  animation: squirrel-bob 2.6s ease-in-out infinite;
  transition: transform 0.2s ease;
}
.sticky-cta img { width: 100%; height: 100%; border-radius: 50%; background: var(--white); border: 3px solid var(--orange); }
.sticky-cta:hover { transform: scale(1.08); }
@keyframes squirrel-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { animation: none; }
}
@media (min-width: 880px) { .sticky-cta { width: 86px; height: 86px; } }

/* ---------- Detailed reference tables (light theme) ---------- */
.price-block { margin-bottom: 54px; }
.price-block-head { text-align: center; margin-bottom: 26px; }
.price-block-head .tag { display:block; font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; }
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 760px) { .price-cols { grid-template-columns: 1fr; } }

table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(28,111,99,0.06);
}
table.price-table th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 12px 14px;
}
table.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--teal-line);
  color: var(--ink);
}
table.price-table tr:last-child td { border-bottom: none; }
table.price-table td.price {
  text-align: right;
  font-weight: 700;
  color: var(--orange-deep);
  white-space: nowrap;
}
table.price-table tr.popular td:first-child::after {
  content: "MOST POPULAR";
  display: block;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--teal);
  font-weight: 700;
  margin-top: 3px;
}

.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 880px) { .bundle-grid { grid-template-columns: 1fr; } }
.bundle-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--teal-line); padding: 30px 26px; text-align: center; }
.bundle-card.featured { border: 2px solid var(--orange); background: #fff9f2; }
.bundle-card .tier { font-weight: 700; font-size: 12px; letter-spacing: 0.06em; color: var(--orange-deep); text-transform: uppercase; }
.bundle-card h4 { font-family: var(--font-display); color: var(--teal-deep); font-size: 19px; margin: 8px 0 16px; }
.bundle-card ul { list-style: none; padding: 0; margin: 0 0 18px; text-align: left; font-size: 14px; color: var(--ink-soft); }
.bundle-card ul li { padding: 6px 0; border-bottom: 1px dashed var(--teal-line); }
.bundle-card .was { text-decoration: line-through; color: var(--ink-soft); font-size: 13px; }
.bundle-card .now { font-family: var(--font-display); font-size: 26px; color: var(--teal-deep); font-weight: 700; }
.bundle-card .save { font-weight: 700; font-size: 12.5px; color: var(--teal); margin-top: 4px; }

.recurring-row { display: flex; gap: 18px; margin-top: 22px; flex-wrap: wrap; justify-content: center; }
.recurring-row > div { flex: 1; min-width: 150px; max-width: 200px; background: var(--white); border-radius: var(--radius); text-align: center; padding: 20px; border: 1px solid var(--teal-line); }
.recurring-row .pct { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--orange-deep); }
.recurring-row .freq { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; font-weight: 600; }

/* ---------- Get Your Price (zip-aware quote form) ---------- */
.quote-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
@media (max-width: 980px) { .quote-wrap { grid-template-columns: 1fr; } }

.quote-form .field { margin-bottom: 22px; }
.quote-form label { display: block; font-weight: 700; font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 8px; }
.quote-form select, .quote-form input[type=number], .quote-form input[type=text] {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--teal-line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
}
.quote-form .service-block { border-top: 1px dashed var(--teal-line); padding-top: 22px; margin-top: 4px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  border: 1px solid var(--teal-line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: all 0.15s;
}
.chip.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.toggle-row { display: flex; align-items: center; gap: 10px; }
.toggle-row input { width: 19px; height: 19px; accent-color: var(--orange); }
.toggle-row label { margin: 0; font-weight: 700; font-size: 16px; color: var(--teal-deep); letter-spacing: 0; text-transform: none; font-family: var(--font-display); }

.area-result {
  display: none;
  gap: 12px;
  align-items: flex-start;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--teal-deep);
}
.area-result.unknown { background: #fdf0e3; color: var(--orange-deep); }
.area-result .icon-circle { width: 32px; height: 32px; font-size: 16px; background: var(--white); flex-shrink: 0; border-radius: 50%; display:flex; align-items:center; justify-content:center; }

.u-item-row { display: grid; grid-template-columns: 1fr 64px 38px; gap: 8px; align-items: center; margin-bottom: 10px; }
.u-item-row select, .u-item-row input { margin-bottom: 0 !important; }
.u-item-remove {
  width: 38px; height: 38px;
  border: 1px solid var(--teal-line);
  background: var(--white);
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 15px;
}
.u-item-remove:hover { border-color: var(--orange); color: var(--orange-deep); }
.u-item-row:only-child .u-item-remove { visibility: hidden; }

.receipt {
  background: var(--white);
  color: var(--ink);
  position: sticky;
  top: 110px;
  padding: 28px 24px 20px;
  border-radius: var(--radius);
  font-size: 13.5px;
  box-shadow: 0 16px 40px rgba(28,111,99,0.16);
  border: 1px solid var(--teal-line);
}
.receipt h4 { font-family: var(--font-display); font-size: 18px; margin: 0 0 2px; color: var(--teal-deep); }
.receipt .sub { color: var(--orange-deep); font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.receipt-line { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px dashed var(--teal-line); }
.receipt-line small { color: var(--ink-soft); }
.receipt-line.empty { color: var(--ink-soft); font-style: italic; border-bottom: none; }
.receipt-line .muted { color: var(--ink-soft); font-style: italic; }
.receipt-total { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--teal); font-size: 18px; font-family: var(--font-display); font-weight: 700; }
.receipt-total b { color: var(--orange-deep); }
.receipt-note { font-size: 11.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }
.receipt .cta { margin-top: 16px; }
