/* Storefront — Lovable visitor tokens (Blade + Alpine) */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700;800&display=swap");

:root {
  --sf-primary: #c2185b;
  --sf-primary-fg: #fffafb;
  --sf-primary-glow: #e85a8a;
  --sf-bg: #fdf8fa;
  --sf-fg: #2a1520;
  --sf-muted: #7a6570;
  --sf-card: #ffffff;
  --sf-border: #f0e4ea;
  --sf-radius: 0.875rem;
  --sf-font: "Hind Siliguri", "Noto Sans Bengali", system-ui, sans-serif;
  --gradient-soft: linear-gradient(180deg, #fdf8fa 0%, #faf0f4 100%);
  --gradient-hero: linear-gradient(135deg, #c2185b 0%, #e85a8a 50%, #f0a07a 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #fff7fa 100%);
  --shadow-soft: 0 4px 20px -8px color-mix(in srgb, var(--sf-primary) 18%, transparent);
  --shadow-elegant: 0 10px 40px -12px color-mix(in srgb, var(--sf-primary) 25%, transparent);
  --shadow-glow: 0 0 60px color-mix(in srgb, var(--sf-primary-glow) 35%, transparent);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sf-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sf-font);
  color: var(--sf-fg);
  background: var(--gradient-soft);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.sf-page { min-height: 100vh; }

.sf-container {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.sf-container-sm { max-width: 48rem; }
.sf-container-xs { max-width: 36rem; }

.sf-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sf-primary);
  background: color-mix(in srgb, var(--sf-card) 70%, transparent);
  border: 1px solid color-mix(in srgb, var(--sf-primary) 18%, white);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(6px);
}
.sf-badge--plain {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.12s, background 0.15s, color 0.15s, box-shadow 0.15s;
}
.sf-btn:active { transform: scale(0.98); }
.sf-btn:disabled { opacity: 0.7; pointer-events: none; }

.sf-btn-primary {
  background: var(--sf-primary);
  color: var(--sf-primary-fg);
  box-shadow: var(--shadow-soft);
}
.sf-btn-primary:hover { opacity: 0.95; }

.sf-btn-outline {
  background: var(--sf-card);
  color: var(--sf-primary);
  border: 1px solid var(--sf-primary);
  border-radius: 0.375rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
}
.sf-btn-outline:hover {
  background: var(--sf-primary);
  color: var(--sf-primary-fg);
}

.sf-btn-ghost {
  background: color-mix(in srgb, var(--sf-card) 70%, transparent);
  color: var(--sf-primary);
  border: 1px solid var(--sf-border);
  backdrop-filter: blur(6px);
}
.sf-btn-ghost:hover { background: var(--sf-card); }

.sf-btn-card {
  background: var(--sf-card);
  color: var(--sf-primary);
  box-shadow: var(--shadow-soft);
  border: 0;
}
.sf-btn-card:hover { background: color-mix(in srgb, var(--sf-primary) 6%, white); }

.sf-btn-soft {
  background: var(--sf-card);
  color: var(--sf-fg);
  border: 1px solid var(--sf-border);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.sf-btn-soft:hover { background: color-mix(in srgb, var(--sf-primary) 5%, white); }

.sf-btn-details {
  border-radius: 0.375rem;
  border: 1px solid color-mix(in srgb, var(--sf-primary) 40%, transparent);
  background: color-mix(in srgb, var(--sf-primary) 5%, white);
  color: var(--sf-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
}
.sf-btn-details:hover {
  background: color-mix(in srgb, var(--sf-primary) 10%, white);
}

.sf-btn-block { width: 100%; }
.sf-btn-buy {
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.sf-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}
.sf-hero--simple {
  background: color-mix(in srgb, var(--sf-card) 60%, transparent);
  text-align: center;
}
.sf-hero--showcase {
  background: var(--sf-card);
  border-bottom: 1px solid var(--sf-border);
  text-align: center;
}

.sf-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0 4rem;
}
@media (min-width: 768px) {
  .sf-hero-grid { grid-template-columns: 1fr 0.9fr; padding: 3.5rem 0 5rem; }
}

.sf-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--sf-fg);
}
.sf-hero--simple h1,
.sf-hero--showcase h1 { color: var(--sf-primary); }
.sf-hero--showcase h1 { font-size: clamp(1.75rem, 4vw, 3rem); }

.sf-hero p {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--sf-muted);
  font-size: 1rem;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .sf-hero p { font-size: 1.125rem; }
}
.sf-hero--simple p,
.sf-hero--showcase p { margin-left: auto; margin-right: auto; }
.sf-hero--showcase p { font-size: 0.9rem; }
@media (min-width: 640px) {
  .sf-hero--showcase p { font-size: 1rem; }
}

.sf-hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.sf-hero--simple .sf-hero-actions,
.sf-hero--showcase .sf-hero-actions { justify-content: center; margin-top: 1.25rem; }

.sf-hero-media {
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--sf-border);
  background: var(--sf-card);
  box-shadow: var(--shadow-soft);
}
.sf-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--sf-border) 50%, white);
}

.sf-trust {
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}
.sf-trust--flush { margin-top: 0.25rem; }
@media (min-width: 640px) {
  .sf-trust--flush { margin-top: 0.5rem; }
}

.sf-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--sf-card);
  box-shadow: var(--shadow-soft);
  text-align: center;
}
@media (min-width: 640px) {
  .sf-trust-grid { gap: 1.5rem; padding: 1.5rem; }
}
.sf-trust-icon {
  width: 1.35rem;
  height: 1.35rem;
  margin: 0 auto;
  color: var(--sf-primary);
}
@media (min-width: 640px) {
  .sf-trust-icon { width: 1.5rem; height: 1.5rem; }
}
.sf-trust-label { margin-top: 0.4rem; font-size: 0.75rem; font-weight: 600; }
.sf-trust-sub { font-size: 0.65rem; color: var(--sf-muted); }
@media (min-width: 640px) {
  .sf-trust-label { font-size: 0.875rem; }
  .sf-trust-sub { font-size: 0.75rem; }
}

.sf-section { padding: 4rem 0; margin-top: 1.5rem; }
.sf-section--tight { padding: 3rem 0; margin-top: 0; }
.sf-section--flush { padding: 0 0 2.5rem; margin-top: 0; }
.sf-section-title {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.sf-section-title--sm { font-size: 1.25rem; }
.sf-section-sub {
  margin: 0 0 1.5rem;
  text-align: center;
  color: var(--sf-muted);
  font-size: 0.9rem;
}

.sf-grid-3 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) { .sf-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sf-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.sf-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .sf-grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .sf-grid-4 { grid-template-columns: repeat(4, 1fr); } }

.sf-grid-2 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .sf-grid-2 { grid-template-columns: repeat(2, 1fr); } }

.sf-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--sf-border);
  background: var(--sf-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.15s, box-shadow 0.15s;
  text-align: left;
}
.sf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}
.sf-card-compact {
  border-radius: 0.375rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.sf-card-compact:hover {
  transform: none;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}
.sf-card-showcase {
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.sf-card-showcase:hover { transform: none; box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1); }

.sf-card-badge {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  border-radius: 999px;
  background: var(--sf-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.15rem 0.6rem;
}
.sf-card-badge--amber { background: #f59e0b; }
.sf-card-discount {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
}
.sf-card-discount--left {
  left: 0;
  top: 0.5rem;
  border-radius: 0 0.375rem 0.375rem 0;
  background: var(--sf-primary);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.sf-card-media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--sf-border) 60%, white);
}
.sf-card-compact .sf-card-media,
.sf-card-showcase .sf-card-media { border-radius: 0; }
.sf-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.sf-card:hover .sf-card-media img { transform: scale(1.05); }
.sf-card-showcase:hover .sf-card-media img,
.sf-card-compact:hover .sf-card-media img { transform: scale(1.05); }

.sf-card-body { margin-top: 1rem; }
.sf-card-compact .sf-card-body {
  margin-top: 0;
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sf-card-showcase-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}
.sf-card-title { font-size: 1.125rem; font-weight: 700; line-height: 1.25; }
.sf-card-meta { margin-top: 0.25rem; font-size: 0.75rem; color: var(--sf-muted); line-height: 1.45; }
.sf-card-row {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
}
.sf-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--sf-primary);
  line-height: 1;
}
.sf-price-sm { font-size: 1rem; }
.sf-compare {
  font-size: 0.8rem;
  color: var(--sf-muted);
  text-decoration: line-through;
}
.sf-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--sf-muted);
}
.sf-rating-stars { display: flex; gap: 0.1rem; color: #fbbf24; }
.sf-rating-stars .off { color: color-mix(in srgb, var(--sf-muted) 30%, transparent); }
.sf-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
}
.sf-benefits li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.sf-benefits .check { color: var(--sf-primary); font-weight: 700; flex-shrink: 0; }

.sf-empty {
  border: 1px solid var(--sf-border);
  background: var(--sf-card);
  border-radius: 0.75rem;
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--sf-muted);
  font-size: 0.9rem;
}

/* Packages landing — flavors gallery (Lovable: 3-col flex, image cards) */
.sf-flavors-section {
  background: #fdf5f8;
  padding: 3rem 0 3.25rem;
  margin-top: 0;
}
.sf-flavors-title {
  margin: 0 0 0.75rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sf-fg);
  letter-spacing: -0.01em;
}
@media (min-width: 640px) {
  .sf-flavors-title { font-size: 1.35rem; }
}

.sf-hint {
  margin: 0 auto 1.25rem;
  max-width: 28rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--sf-muted) 80%, transparent);
  transition: all 0.3s;
}
.sf-hint.is-on {
  color: var(--sf-primary);
  background: color-mix(in srgb, var(--sf-primary) 10%, white);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  transform: scale(1.05);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  animation: sf-pulse 1s ease-in-out infinite;
}
@keyframes sf-pulse {
  50% { opacity: 0.75; }
}

.sf-flavors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .sf-flavors { gap: 1rem; }
}
.sf-flavor {
  width: calc(33.333% - 0.5rem);
  max-width: 10rem;
  border: 1px solid color-mix(in srgb, var(--sf-border) 70%, white);
  border-radius: 1rem;
  background: #fff;
  padding: 0.625rem;
  text-align: center;
  cursor: pointer;
  font: inherit;
  color: inherit;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .sf-flavor { width: 9rem; }
}
.sf-flavor:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}
.sf-flavor-media {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  background: color-mix(in srgb, #f1f5f9 80%, white);
}
.sf-flavor-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.sf-flavor-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--sf-primary) 55%, #94a3b8);
  background: linear-gradient(160deg, #fff, #f8eef3);
}
.sf-flavor-name {
  padding: 0.55rem 0.15rem 0.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sf-fg);
  word-break: break-word;
}
.sf-flavor-note {
  padding: 0 0.15rem 0.2rem;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--sf-muted);
}

.sf-details-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.sf-accordion-list { display: flex; flex-direction: column; gap: 0.625rem; }

/* Lovable AccordionItem parity (+/−) */
.sf-accordion {
  border: 1px solid color-mix(in srgb, var(--sf-border) 80%, white);
  border-radius: 999px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  transition: border-radius 0.15s;
}
.sf-accordion.is-open {
  border-radius: 1rem;
}
.sf-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1.1rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sf-fg);
  text-align: left;
  cursor: pointer;
}
.sf-accordion-trigger:hover {
  background: color-mix(in srgb, var(--sf-primary) 4%, white);
}
.sf-accordion-trigger-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sf-accordion-ico {
  display: inline-flex;
  color: var(--sf-primary);
  flex-shrink: 0;
}
.sf-accordion-body {
  border-top: 1px solid var(--sf-border);
  padding: 0.75rem 1.1rem 1rem;
  color: var(--sf-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

/* Optional CMS video */
.sf-video-section {
  padding: 0 0 2.5rem;
}
.sf-video-sub {
  margin: -0.5rem auto 1rem;
  max-width: 36rem;
  text-align: center;
  color: var(--sf-muted);
  font-size: 0.875rem;
}
.sf-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--sf-border);
  background: #0f172a;
  aspect-ratio: 16 / 9;
  max-width: 40rem;
  margin: 0 auto;
}
.sf-video-frame iframe,
.sf-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.sf-video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #111;
}
.sf-video-poster img,
.sf-video-ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sf-video-ph { background: #1e293b; }
.sf-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--sf-primary) 92%, black);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.sf-footer {
  border-top: 1px solid var(--sf-border);
  background: color-mix(in srgb, var(--sf-card) 50%, transparent);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--sf-muted);
}
.sf-footer-socials {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.sf-footer-socials a:hover { color: var(--sf-primary); }

/* Sheets / dialogs */
.sf-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
@media (min-width: 640px) {
  .sf-overlay {
    align-items: center;
    padding: 1rem;
  }
}
.sf-sheet {
  width: 100%;
  max-width: 32rem;
  max-height: min(92vh, 40rem);
  overflow: auto;
  background: var(--sf-card);
  border-radius: 1.5rem 1.5rem 0.75rem 0.75rem;
  box-shadow: var(--shadow-elegant);
  padding: 0;
}
@media (min-width: 640px) {
  .sf-sheet { border-radius: 1.5rem; }
}
.sf-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding: 1rem 1.15rem 0;
}
.sf-sheet-head h3 { margin: 0; font-size: 1.1rem; }
.sf-chip-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0; }
.sf-chip {
  border: 1px solid var(--sf-border);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font: inherit;
  font-size: 0.8rem;
  cursor: pointer;
}
.sf-chip.is-on {
  border-color: var(--sf-primary);
  background: color-mix(in srgb, var(--sf-primary) 10%, white);
  color: var(--sf-primary);
  font-weight: 600;
}
.sf-close {
  border: 0;
  background: #f1f5f9;
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--sf-muted);
}

/* Buy / flavor selection sheet (Lovable ProductBuySheet) */
.sf-buy-sheet {
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 42rem);
  overflow: hidden;
}
.sf-buy-sheet-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--sf-border);
  background: var(--sf-card);
  position: sticky;
  top: 0;
  z-index: 2;
}
.sf-buy-sheet-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #f3eef1;
}
.sf-buy-sheet-titles { min-width: 0; flex: 1; }
.sf-buy-sheet-titles h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-buy-sheet-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
  max-height: 70vh;
}
.sf-buy-sheet-foot {
  padding: 0.85rem 1rem 1.25rem;
  border-top: 1px solid var(--sf-border);
  background: var(--sf-card);
  position: sticky;
  bottom: 0;
}
@media (max-width: 639px) {
  .sf-buy-sheet-foot { padding-bottom: 1.75rem; }
}
.sf-buy-flavor-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.sf-buy-flavor-bar h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
}
.sf-buy-count {
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  background: #f1f5f9;
  color: var(--sf-muted);
}
.sf-buy-count.is-done {
  background: #10b981;
  color: #fff;
}
.sf-buy-hint {
  margin-bottom: 0.75rem;
  border-radius: 0.55rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  background: #f1f5f9;
  color: var(--sf-muted);
}
.sf-buy-hint.is-done {
  background: #ecfdf5;
  color: #047857;
}
.sf-buy-flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.sf-buy-flavor-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--sf-border);
  border-radius: 0.75rem;
  background: var(--sf-card);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sf-buy-flavor-card.is-on {
  border-color: var(--sf-primary);
  box-shadow: 0 1px 4px rgba(194, 24, 91, 0.12);
}
.sf-buy-flavor-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f3eef1;
}
.sf-buy-flavor-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0.35rem;
  background: #f3eef1;
  color: var(--sf-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.25;
}
.sf-buy-flavor-name {
  padding: 0.3rem 0.4rem 0;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-buy-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  padding: 0.4rem;
}
.sf-stepper-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid var(--sf-border);
  background: #fff;
  color: var(--sf-fg);
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.sf-stepper-btn:disabled {
  opacity: 0.4;
  pointer-events: none;
}
.sf-stepper-btn--plus {
  border-color: var(--sf-primary);
  background: var(--sf-primary);
  color: var(--sf-primary-fg);
}
.sf-stepper-btn--plus:disabled {
  background: #f1f5f9;
  border-color: var(--sf-border);
  color: var(--sf-muted);
  opacity: 1;
}
.sf-stepper-val {
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sf-muted);
}
.sf-stepper-val.is-on { color: var(--sf-primary); }
.sf-buy-selected {
  margin-top: 0.75rem;
  border-radius: 0.55rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.7rem;
  background: #f1f5f9;
  color: var(--sf-muted);
}
.sf-buy-selected strong { color: var(--sf-primary); font-weight: 700; }
.sf-buy-empty {
  border: 1px dashed var(--sf-border);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--sf-muted);
  background: color-mix(in srgb, #f1f5f9 60%, white);
}
.sf-buy-error {
  margin: 0.75rem 0 0;
  color: #be123c;
  font-size: 0.8rem;
  font-weight: 600;
}
.sf-sheet-enter { transition: transform 0.2s ease, opacity 0.2s ease; }
.sf-sheet-enter-start { transform: translateY(1rem); opacity: 0.6; }
.sf-sheet-enter-end { transform: translateY(0); opacity: 1; }

.sf-img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  background: color-mix(in srgb, var(--sf-border) 50%, white);
  color: #94a3b8;
  font-size: 0.8rem;
}

.sf-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5rem;
}

/* ========== Landing V3 (Lovable dark forest theme) ========== */
body.sf-v3-body {
  background: var(--v3-bg, #06291f);
  color: #fff;
}

.sf-v3 {
  min-height: 100vh;
  color: #fff;
  background: var(--v3-bg, #06291f);
  --v3-bg-light: color-mix(in srgb, var(--v3-bg, #06291f) 80%, white);
  --v3-bg-dark: color-mix(in srgb, var(--v3-bg, #06291f) 85%, black);
  --v3-gold: #ffd166;
  --v3-gold-hi: #ffe28a;
  --v3-orange: #ff8a3d;
  --v3-orange-deep: #ec6915;
  --v3-coral: #ff4d6d;
  --v3-coral-soft: #ff6b6b;
  --v3-emerald: #10b981;
  position: relative;
}

.sf-v3-section {
  position: relative;
  padding: 1.5rem 0;
}
@media (min-width: 640px) { .sf-v3-section { padding: 2rem 0; } }
@media (min-width: 768px) { .sf-v3-section { padding: 2.5rem 0; } }

.sf-v3-inner {
  position: relative;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.sf-v3-inner--wide { max-width: 72rem; }
.sf-v3-inner--form { max-width: 42rem; }

.sf-v3-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
}
.sf-v3-bg--hero {
  background:
    radial-gradient(80% 55% at 90% 0%, rgba(74,222,128,0.22) 0%, transparent 60%),
    radial-gradient(60% 45% at 0% 100%, rgba(255,209,102,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--v3-bg-light) 0%, var(--v3-bg-dark) 100%);
}
.sf-v3-bg--section {
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(74,222,128,0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--v3-bg-dark) 0%, var(--v3-bg-light) 100%);
}
.sf-v3-bg--soft {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(74,222,128,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--v3-bg-dark) 0%, var(--v3-bg-light) 100%);
}
.sf-v3-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* V3 Hero */
.sf-v3-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 3rem;
}
@media (min-width: 768px) {
  .sf-v3-hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    padding: 4rem 0 5rem;
  }
}
.sf-v3-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}
.sf-v3-eyebrow svg { color: var(--v3-gold); width: 0.9rem; height: 0.9rem; }

.sf-v3-hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sf-v3-hero-pre { display: block; color: #fff; }
.sf-v3-hero-hi {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--v3-gold-hi), #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf-v3-hero-hi::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0.2em;
  z-index: -1;
  height: 0.35em;
  border-radius: 2px;
  background: rgba(255,209,102,0.22);
}
.sf-v3-hero-body {
  margin: 1rem 0 0;
  max-width: 55ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 768px) {
  .sf-v3-hero-body { font-size: 1.05rem; margin-top: 1.25rem; }
}

.sf-v3-offer {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 1rem 1.15rem;
  backdrop-filter: blur(6px);
}
.sf-v3-offer-line {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--v3-gold);
  animation: lv3OfferGlow 1.8s ease-in-out infinite;
}
.sf-v3-offer-shimmer {
  background-image: linear-gradient(90deg, #ffd166 0%, #ffd166 40%, #fff 50%, #ffd166 60%, #ffd166 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lv3OfferShimmer 2.4s linear infinite;
}
.sf-v3-offer-sub {
  margin: 0.5rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
@keyframes lv3OfferGlow {
  0%, 100% { text-shadow: 0 0 0 rgba(255,209,102,0); }
  50% { text-shadow: 0 0 18px rgba(255,209,102,0.55); }
}
@keyframes lv3OfferShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .sf-v3-offer-line, .sf-v3-offer-shimmer { animation: none; }
}

.sf-v3-cta-row {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.sf-v3-cta-orange {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.9rem 1.75rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(180deg, var(--v3-orange), var(--v3-orange-deep));
  box-shadow: 0 8px 24px -8px rgba(236,105,21,0.7), inset 0 -2px 0 0 rgba(0,0,0,0.18);
  transition: transform 0.15s;
}
.sf-v3-cta-orange::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
}
.sf-v3-cta-orange:hover { transform: translateY(-2px); }
.sf-v3-cta-orange span { position: relative; }

.sf-v3-cta-emerald {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  overflow: hidden;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.9rem 2rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(180deg, #10b981, #047857);
  box-shadow: 0 10px 28px -10px rgba(16,185,129,0.7), inset 0 -2px 0 0 rgba(0,0,0,0.18);
  transition: transform 0.15s;
}
.sf-v3-cta-emerald::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
}
.sf-v3-cta-emerald:hover { transform: translateY(-2px); }
.sf-v3-cta-emerald > * { position: relative; }
.sf-v3-cta-emerald svg {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}
.sf-v3-cta-emerald:disabled { opacity: 0.65; cursor: wait; transform: none; }

.sf-v3-trust-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}
.sf-v3-trust-inline svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #6ee7b7; /* emerald-300 — matches Lovable ShieldCheck */
}

.sf-v3-product {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
}
@media (min-width: 640px) { .sf-v3-product { max-width: 420px; } }
@media (min-width: 768px) { .sf-v3-product { max-width: none; } }
.sf-v3-product-glow {
  position: absolute;
  inset: 1rem;
  border-radius: 999px;
  filter: blur(48px);
  background: radial-gradient(circle, rgba(134,239,172,0.45) 0%, transparent 65%);
}
.sf-v3-product-ring {
  position: absolute;
  inset: 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
}
.sf-v3-product-ring--inner {
  inset: 2.5rem;
  border-color: rgba(255,255,255,0.05);
}
.sf-v3-product img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0,0,0,0.55));
}
.sf-v3-discount {
  position: absolute;
  right: -0.5rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: var(--v3-orange-deep);
  color: #fff;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
  box-shadow: 0 10px 24px -6px rgba(236,105,21,0.6);
  outline: 4px solid var(--v3-bg, #06291f);
}
@media (min-width: 640px) {
  .sf-v3-discount { right: -1rem; top: 1.5rem; width: 6rem; height: 6rem; font-size: 0.75rem; }
}

/* V3 titles */
.sf-v3-title-wrap { text-align: center; }
.sf-v3-rule {
  display: block;
  margin-inline: auto;
  width: 7rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.8); /* emerald-400/80 */
}
@media (min-width: 640px) { .sf-v3-rule { width: 10rem; } }
/* Tight separator↔text gap (Lovable reads ~0.5–0.75rem under large display type) */
.sf-v3-title-wrap > .sf-v3-rule:first-child { margin-top: 0; margin-bottom: 0.5rem; }
.sf-v3-title-wrap > .sf-v3-rule:last-child { margin-top: 0.5rem; margin-bottom: 0; }
.sf-v3-title-wrap h2 {
  margin: 0;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem); /* ~26px → 40px */
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.sf-v3-title-green { color: #6ee7b7; }
.sf-v3-title-red { color: var(--v3-coral-soft); }
.sf-v3-title-white { color: #fff; }
.sf-v3-title-grad {
  background: linear-gradient(90deg, #ffe28a, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf-v3-stars {
  color: #ffd166;
  letter-spacing: 0.08em;
  margin-inline: 0.2em;
  white-space: nowrap;
}

/* Fivestar / social-proof heading */
.sf-v3-fivestar-head { text-align: center; }
.sf-v3-loved {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  border: 1px solid rgba(252, 211, 77, 0.3); /* amber-300/30 */
  background: rgba(252, 211, 77, 0.08);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem; /* 11px */
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fde68a; /* amber-200 */
  backdrop-filter: blur(6px);
}
@media (min-width: 640px) {
  .sf-v3-loved { font-size: 0.75rem; }
}
.sf-v3-fivestar-title {
  margin: 0.5rem 0 0;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.sf-v3-fivestar-links {
  margin-top: 1.25rem;
  text-align: left;
}

.sf-v3-video {
  margin-top: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  aspect-ratio: 9 / 16;
  max-height: 32rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 22rem;
}
.sf-v3-video video,
.sf-v3-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.sf-v3-cta-center {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

/* Info cards (white dashed coral) */
.sf-v3-info-wrap { position: relative; margin-top: 2rem; }
.sf-v3-info-glow {
  position: absolute;
  inset: -0.5rem;
  border-radius: 28px;
  filter: blur(24px);
  background: radial-gradient(60% 50% at 50% 0%, rgba(255,107,107,0.18) 0%, transparent 70%);
}
.sf-v3-info {
  position: relative;
  border-radius: 1.5rem;
  border: 2px dashed color-mix(in srgb, var(--v3-coral-soft) 70%, transparent);
  background: #fff;
  padding: 1rem;
  color: #334155;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.45);
}
@media (min-width: 640px) { .sf-v3-info { padding: 1.25rem; } }
.sf-v3-info-pill {
  margin: -2.25rem auto 1rem;
  width: fit-content;
  max-width: 95%;
  border-radius: 1rem;
  border: 2px dashed var(--v3-coral-soft);
  background: #ffe9e9;
  padding: 0.5rem 1.25rem;
  box-shadow: 0 8px 18px -8px rgba(230,57,70,0.5);
}
.sf-v3-info-pill h3 {
  margin: 0;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--v3-coral), var(--v3-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf-v3-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}
.sf-v3-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}
.sf-v3-check {
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(16,185,129,0.15);
  box-shadow: inset 0 0 0 1px rgba(16,185,129,0.4);
  color: #059669;
  font-size: 0.75rem;
  font-weight: 800;
}
.sf-v3-detail-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border-radius: 0.75rem;
  background: rgba(16,185,129,0.08);
  padding: 0.65rem 0.75rem;
  box-shadow: inset 0 0 0 1px rgba(16,185,129,0.15);
}
.sf-v3-detail-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: var(--v3-emerald);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 4px 10px -2px rgba(16,185,129,0.5);
}

/* Reviews carousel */
.sf-v3-review-stage {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 0.25rem;
}
@media (min-width: 640px) { .sf-v3-review-stage { min-height: 300px; } }
.sf-v3-review-stage img {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  border-radius: 0.75rem;
  object-fit: contain;
  box-shadow: 0 10px 30px -12px rgba(0,0,0,0.25);
  outline: 1px solid #e2e8f0;
}
.sf-v3-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--v3-coral);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  outline: 2px solid #fff;
}
.sf-v3-nav--prev { left: -0.5rem; }
.sf-v3-nav--next { right: -0.5rem; }
@media (min-width: 640px) {
  .sf-v3-nav { width: 2.5rem; height: 2.5rem; }
  .sf-v3-nav--prev { left: -1rem; }
  .sf-v3-nav--next { right: -1rem; }
}
.sf-v3-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}
.sf-v3-dot {
  height: 0.375rem;
  width: 0.375rem;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: width 0.15s, background 0.15s;
}
.sf-v3-dot.is-on { width: 1.5rem; background: var(--v3-coral); }

.sf-v3-contact {
  margin-top: 1.5rem;
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
}
.sf-v3-contact a {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--v3-gold);
}
.sf-v3-offer-strip {
  margin-top: 1.25rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.sf-v3-offer-strip strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.15rem;
  color: var(--v3-gold);
}

/* Order form */
.sf-v3-form-title {
  margin-bottom: 1.5rem;
  text-align: center;
}
.sf-v3-form-title h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 800;
  color: #fff;
}
.sf-v3-form-title .hi {
  background: linear-gradient(90deg, var(--v3-coral), var(--v3-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sf-v3-form-deco {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sf-v3-form-deco span.line {
  height: 1px;
  width: 4rem;
  background: rgba(52,211,153,0.4);
}
.sf-v3-form-deco span.dot {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--v3-emerald);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 6px 14px -4px rgba(16,185,129,0.7);
}

.sf-v3-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #fff;
  padding: 1rem 1rem 1.25rem 1.25rem;
  color: #1e293b;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
}
@media (min-width: 640px) { .sf-v3-form-card { padding: 1.5rem 1.5rem 1.5rem 1.75rem; } }
.sf-v3-form-card::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 0.375rem;
  background: linear-gradient(180deg, var(--v3-coral), var(--v3-orange));
}

.sf-v3-pkg {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  padding: 0.75rem;
  cursor: pointer;
  margin-top: 0.75rem;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}
.sf-v3-pkg.is-on {
  border-color: var(--v3-emerald);
  background: #fff7ed;
  box-shadow: 0 8px 20px -12px rgba(16,185,129,0.6);
}
.sf-v3-pkg-radio {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  background: #fff;
}
.sf-v3-pkg.is-on .sf-v3-pkg-radio {
  border-color: #059669;
}
.sf-v3-pkg.is-on .sf-v3-pkg-radio::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--v3-coral);
}
.sf-v3-pkg-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
  flex-shrink: 0;
  outline: 1px solid #e2e8f0;
  background: #f1f5f9;
}
.sf-v3-pkg-body { flex: 1; min-width: 0; }
.sf-v3-pkg-name { font-size: 0.95rem; font-weight: 700; color: #1e293b; }
.sf-v3-pkg-price {
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: #059669;
  text-align: right;
}
.sf-v3-pkg-badge {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(90deg, var(--v3-coral), var(--v3-orange));
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  outline: 2px solid #fff;
  animation: sf-pulse 1.5s ease-in-out infinite;
}

.sf-v3-info-heading {
  margin: 1.75rem 0 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
}
.sf-v3-field {
  display: block;
  margin-top: 0.85rem;
  border-radius: 0.75rem;
  border: 2px solid color-mix(in srgb, var(--v3-emerald) 80%, transparent);
  background: #fff;
  padding: 0.5rem 0.75rem 0.55rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.sf-v3-field:focus-within {
  border-color: #059669;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}
.sf-v3-field span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
}
.sf-v3-field span em {
  color: var(--v3-coral);
  font-style: normal;
}
.sf-v3-field input,
.sf-v3-field textarea {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1e293b;
  padding: 0.15rem 0 0;
  resize: vertical;
}
.sf-v3-field textarea { min-height: 72px; }
.sf-v3-field-error {
  margin: 0.35rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e11d48;
}

/* Shipping */
.sf-v3-ship-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 1.15rem;
}
.sf-v3-ship-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sf-v3-ship-label {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--v3-gold);
}
.sf-v3-ship-sub { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.sf-v3-ship-badge {
  border-radius: 999px;
  background: var(--v3-emerald);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  letter-spacing: 0.04em;
}
.sf-v3-zone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  background: rgba(0,0,0,0.15);
  transition: border-color 0.15s, background 0.15s;
}
.sf-v3-zone.is-on {
  border-color: var(--v3-gold);
  background: rgba(255,209,102,0.12);
}
.sf-v3-zone input { accent-color: var(--v3-gold); }

/* Summary */
.sf-v3-summary-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  padding: 1.15rem;
}
.sf-v3-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.45rem 0;
  font-size: 0.95rem;
}
.sf-v3-total {
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sf-v3-pay {
  margin-top: 1rem;
  border-radius: 0.75rem;
  background: rgba(0,0,0,0.2);
  padding: 0.85rem;
}
.sf-v3-pay strong { display: block; margin-bottom: 0.2rem; }
.sf-v3-privacy {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
}
.sf-v3-trusts {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.sf-v3-trusts > div {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sf-v3-trusts svg {
  width: 0.9rem;
  height: 0.9rem;
  color: #6ee7b7;
  flex-shrink: 0;
}
.sf-v3-muted { opacity: 0.75; font-size: 0.9rem; line-height: 1.5; }
.sf-v3-footer {
  opacity: 0.7;
  text-align: center;
  font-size: 0.75rem;
  padding: 1.5rem 1.25rem 2.5rem;
}

.sf-v3-fivestar-img {
  margin: 1.75rem auto 0;
  max-width: 28rem;
  position: relative;
}
.sf-v3-fivestar-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.sf-v3-fivestar-frame > img,
.sf-v3-fivestar-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: contain;
  border-radius: 1.1rem;
  background: rgba(0,0,0,0.1);
}
.sf-v3-fivestar-fade {
  pointer-events: none;
  position: absolute;
  inset-inline: 0.25rem;
  bottom: 0.25rem;
  height: 33%;
  border-radius: 0 0 1.1rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}
.sf-v3-links {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}
.sf-v3-link-card {
  margin-top: 0;
  border-radius: 1rem;
  border: 2px dashed color-mix(in srgb, #ff6b6b 70%, transparent);
  background: rgba(255,107,107,0.06);
  padding: 0;
  text-align: left;
  color: #ffd1d1;
  width: 100%;
  font: inherit;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}
.sf-v3-link-card.is-open,
.sf-v3-link-card:hover {
  border-color: #ff6b6b;
  background: rgba(255,107,107,0.1);
}
.sf-v3-link-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}
.sf-v3-link-ico {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255,107,107,0.15);
  color: #ff8a8a;
  box-shadow: inset 0 0 0 1px rgba(255,107,107,0.3);
}
.sf-v3-link-text { flex: 1; min-width: 0; line-height: 1.35; }
.sf-v3-link-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: #ffd1d1; }
.sf-v3-link-text span { display: block; margin-top: 0.15rem; font-size: 0.8rem; color: rgba(255,209,209,0.8); }
.sf-v3-link-chev {
  flex-shrink: 0;
  color: #ff8a8a;
  transition: transform 0.2s;
}
.sf-v3-link-chev.is-open { transform: rotate(180deg); color: #fff; }
.sf-v3-link-body {
  margin: 0;
  border-top: 1px dashed rgba(255,107,107,0.4);
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.sf-v3-link-body p { margin: 0 0 0.75rem; }
.sf-v3-link-body p:last-child { margin-bottom: 0; }

.sf-v3-reviews-title {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}
.sf-ico--gold { color: #ffb703; fill: #ffb703; }

.sf-v3-contact-card,
.sf-v3-offer-card {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  border-radius: 1.5rem;
  border: 2px dashed color-mix(in srgb, #ff6b6b 70%, transparent);
  background: #fff;
  padding: 1rem 1.25rem;
  text-align: center;
  text-decoration: none;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 20px 50px -25px rgba(0,0,0,0.45);
}
.sf-v3-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ff4d6d;
  font-weight: 800;
}
.sf-v3-offer-hi {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #ff4d6d;
}
.sf-v3-offer-hi strong {
  background: linear-gradient(90deg, #ff4d6d, #ff8a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}
.sf-v3-offer-hi svg { color: #ff4d6d; }

.sf-v3-trusts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}
.sf-v3-trusts > div {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.sf-v3-trusts svg {
  width: 0.9rem;
  height: 0.9rem;
  color: #6ee7b7;
  flex-shrink: 0;
}

/* ===== Shared icons / hero pad ===== */
.sf-ico {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
}
.sf-ico--primary { color: var(--sf-primary); }
.sf-btn .sf-ico,
.sf-badge .sf-ico,
.sf-btn svg,
.sf-badge svg {
  flex-shrink: 0;
}
.sf-btn,
.sf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.sf-hero-pad { padding-top: 2rem; padding-bottom: 2rem; text-align: center; }
.sf-hero-pad--lg { padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 640px) {
  .sf-hero-pad { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .sf-hero-pad--lg { padding-top: 3rem; padding-bottom: 3rem; }
}
@media (min-width: 768px) {
  .sf-hero-pad--lg { padding-top: 4rem; padding-bottom: 3.5rem; }
}

/* Showcase details dialog */
.sf-overlay--dialog { align-items: center; }
.sf-dialog {
  width: min(32rem, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  background: var(--sf-card);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
  overflow: hidden;
}
.sf-dialog-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid var(--sf-border);
}
.sf-dialog-title {
  margin: 0;
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  padding-right: 0.5rem;
}
.sf-dialog-body {
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}
.sf-dialog-media {
  overflow: hidden;
  border-radius: 0.75rem;
  background: #f1f5f9;
}
.sf-dialog-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.sf-dialog-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sf-dialog-disc {
  border-radius: 999px;
  background: rgba(16,185,129,0.15);
  color: #047857;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
}
.sf-dialog-desc { margin: 0; font-size: 0.875rem; color: var(--sf-muted); line-height: 1.5; }
.sf-dialog-long {
  white-space: pre-line;
  border-radius: 0.5rem;
  background: color-mix(in srgb, #f1f5f9 70%, white);
  padding: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #334155;
}
.sf-dialog-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.sf-dialog-gallery img {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 0.35rem;
  object-fit: cover;
}
.sf-dialog-foot {
  border-top: 1px solid var(--sf-border);
  padding: 0.85rem 1rem 1.25rem;
  background: var(--sf-card);
}

/* Combo sheet item blocks */
.sf-combo-item { margin-top: 1.15rem; }
.sf-combo-item:first-child { margin-top: 0.5rem; }
.sf-combo-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.sf-combo-item-title {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===== Checkout (Lovable parity) ===== */
.co-page { min-height: 100vh; background: var(--gradient-soft); }
.co-header {
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid var(--sf-border);
  background: color-mix(in srgb, var(--sf-card) 90%, transparent);
  backdrop-filter: blur(8px);
}
.co-header-inner {
  max-width: 42rem; margin: 0 auto;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
}
.co-back {
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem;
  border: 0; background: transparent; cursor: pointer; padding: 0;
  border-radius: 999px; font-size: 1.1rem; font-weight: 700;
  color: var(--sf-fg);
}
.co-back:hover { background: color-mix(in srgb, var(--sf-primary) 8%, white); }
.co-header-title { font-size: 0.9rem; font-weight: 700; }
.co-header-sub { font-size: 0.75rem; color: var(--sf-muted); }
.co-wrap { max-width: 42rem; margin: 0 auto; padding: 1.25rem 1rem 2rem; }
.co-form { display: flex; flex-direction: column; gap: 1.25rem; padding-bottom: 4rem; }
.co-card {
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.co-card-title { margin: 0 0 0.75rem; font-size: 0.9rem; font-weight: 700; }
.co-order-box {
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--sf-primary) 4%, #f8fafc);
  padding: 0.75rem;
}
.co-order-row { display: flex; justify-content: space-between; gap: 0.75rem; align-items: center; }
.co-order-name { font-weight: 700; font-size: 0.9rem; }
.co-order-price { font-weight: 800; color: var(--sf-primary); }
.co-qty-row {
  margin-top: 0.75rem; padding-top: 0.75rem;
  border-top: 1px solid var(--sf-border);
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
}
.co-qty-meta { font-size: 0.75rem; color: var(--sf-muted); }
.co-stepper { display: flex; align-items: center; gap: 0.5rem; }
.co-step {
  width: 2rem; height: 2rem; border-radius: 999px;
  border: 2px solid var(--sf-border); background: #fff;
  font-size: 1rem; font-weight: 700; cursor: pointer; color: var(--sf-fg);
}
.co-step--on { border-color: var(--sf-primary); background: var(--sf-primary); color: #fff; }
.co-step:disabled { opacity: 0.4; cursor: not-allowed; }
.co-step-val { min-width: 2rem; text-align: center; font-weight: 800; }
.co-flavor-prefill {
  margin-top: 0.5rem; padding-top: 0.5rem;
  border-top: 1px solid var(--sf-border);
  font-size: 0.75rem; color: var(--sf-muted);
}
.co-link { margin-left: 0.35rem; color: var(--sf-primary); text-decoration: underline; text-underline-offset: 2px; }
.co-strong { font-weight: 700; color: var(--sf-fg); }
.co-flavor-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem;
}
@media (min-width: 640px) { .co-flavor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.co-flavor {
  position: relative; overflow: hidden;
  border-radius: 0.75rem; border: 2px solid var(--sf-border);
  background: #fff; padding: 0; text-align: left; cursor: pointer; font: inherit;
}
.co-flavor.is-on { border-color: var(--sf-primary); box-shadow: var(--shadow-soft); }
.co-flavor img, .co-flavor-ph {
  display: block; width: 100%; aspect-ratio: 1; object-fit: cover;
}
.co-flavor-ph {
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--sf-primary) 8%, #fff);
  font-size: 2rem;
}
.co-flavor-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.45rem 0.5rem; font-size: 0.75rem; font-weight: 600;
}
.co-flavor-badge {
  position: absolute; top: 0.4rem; right: 0.4rem;
  width: 1.4rem; height: 1.4rem; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--sf-primary); color: #fff; font-size: 0.7rem; font-weight: 800;
}
.co-selected-hint {
  margin-top: 0.75rem; border-radius: 0.55rem;
  background: color-mix(in srgb, var(--sf-primary) 5%, #f8fafc);
  padding: 0.5rem 0.75rem; font-size: 0.75rem;
}
.co-fields { display: flex; flex-direction: column; gap: 0.75rem; }
.co-label { display: block; font-weight: 600; margin: 0 0 0.35rem; font-size: 0.85rem; }
.co-input {
  width: 100%; box-sizing: border-box;
  border: 1px solid #cbd5e1; border-radius: 0.55rem;
  padding: 0.7rem 0.8rem; font: inherit; font-size: 0.9rem;
  background: #fff; color: var(--sf-fg);
}
.co-input:focus { outline: none; border-color: var(--sf-primary); }
.co-input.is-invalid { border-color: #dc2626; }
textarea.co-input { resize: vertical; min-height: 5rem; }
.co-field-error { margin: 0.35rem 0 0; font-size: 0.75rem; color: #dc2626; }
.co-zones { display: flex; flex-direction: column; gap: 0.5rem; }
.co-zone {
  display: flex; justify-content: space-between; align-items: center;
  border: 2px solid var(--sf-border); border-radius: 0.55rem;
  padding: 0.65rem 0.75rem; cursor: pointer; font-size: 0.9rem;
}
.co-zone.is-on { border-color: var(--sf-primary); background: color-mix(in srgb, var(--sf-primary) 6%, white); }
.co-zone-right { display: flex; align-items: center; gap: 0.5rem; }
.co-zone input { accent-color: var(--sf-primary); }
.co-hint {
  border-radius: 0.55rem; padding: 0.5rem 0.75rem;
  background: #fffbeb; color: #b45309; font-size: 0.75rem;
}
.co-free-box {
  border: 2px solid color-mix(in srgb, #22c55e 40%, white);
  background: #f0fdf4; border-radius: 0.75rem;
  padding: 0.85rem 1rem; text-align: center;
}
.co-free-title { font-weight: 800; color: #15803d; font-size: 0.9rem; }
.co-free-sub { margin-top: 0.25rem; font-size: 0.75rem; color: color-mix(in srgb, #15803d 80%, black); }
.co-summary { display: flex; flex-direction: column; gap: 0.65rem; }
.co-sum-line { display: flex; gap: 0.65rem; align-items: flex-start; }
.co-sum-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 999px;
  display: grid; place-items: center; font-size: 0.85rem; flex-shrink: 0; margin-top: 0.1rem;
}
.co-sum-icon--pink { background: color-mix(in srgb, var(--sf-primary) 12%, white); }
.co-sum-icon--blue { background: #dbeafe; }
.co-sum-body { flex: 1; min-width: 0; }
.co-sum-top { display: flex; justify-content: space-between; gap: 0.5rem; font-size: 0.9rem; }
.co-sum-sub { margin: 0.15rem 0 0; font-size: 0.7rem; color: var(--sf-muted); line-height: 1.35; word-break: break-word; }
.co-sum-divider { border-top: 1px solid var(--sf-border); margin: 0.15rem 0; }
.co-sum-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 800; padding-top: 0.15rem;
}
.co-total { font-size: 1.15rem; color: var(--sf-primary); }
.co-coupon-stub {
  margin: 0.35rem 0 0; font-size: 0.75rem; color: var(--sf-muted);
  border: 1px dashed var(--sf-border); border-radius: 0.45rem;
  padding: 0.45rem 0.65rem;
}
.co-submit {
  margin-top: 0.25rem;
  border-radius: 999px !important;
  padding: 0.9rem 1rem !important;
  font-weight: 800 !important;
  box-shadow: var(--shadow-elegant);
}
.co-trust {
  border-radius: 1rem; border: 1px solid var(--sf-border);
  background: color-mix(in srgb, var(--sf-card) 70%, transparent);
  padding: 1rem; text-align: center; font-size: 0.75rem; color: var(--sf-muted);
}
.co-trust-main { font-weight: 600; color: var(--sf-fg); margin-bottom: 0.5rem; }
.co-trust-feats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem 1rem;
  margin-bottom: 0.5rem;
}
.co-trust-help a { color: var(--sf-primary); font-weight: 700; }
.co-error {
  background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca;
  padding: 0.75rem; border-radius: 0.75rem; margin-bottom: 0.5rem; font-size: 0.9rem;
}
