/* ============================================================
   BAKERY BUSINESS STARTER — Main Styles
   ============================================================ */

:root {
  --cream:       #FDF6EE;
  --cream-dark:  #F5EAD8;
  --pink:        #F2A7B8;
  --pink-light:  #FDE8EE;
  --pink-deep:   #D4547A;
  --caramel:     #C8863A;
  --caramel-light: #FCEFD9;
  --cocoa:       #5C3D2E;
  --cocoa-mid:   #8B5E3C;
  --sage:        #7DAB8A;
  --sage-light:  #E3F0E6;
  --berry:       #8E4A7E;
  --berry-light: #F3E4F0;
  --peach:       #F5C5A3;
  --peach-light: #FEF0E7;
  --teal:        #00C2B3;
  --teal-light:  #E0F7F6;
  --white:       #FFFFFF;
  --text-dark:   #2C1810;
  --text-mid:    #5A3A28;
  --text-soft:   #8A6A58;
  --border:      #EDD9C8;
  --shadow:      rgba(92,61,46,0.10);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Inter', Arial, sans-serif;
  --transition:  0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: var(--pink-deep);
  color: var(--white);
  border-color: var(--pink-deep);
}
.btn-primary:hover { background: #b83d64; border-color: #b83d64; transform: translateY(-1px); }
.btn-secondary {
  background: var(--cream-dark);
  color: var(--cocoa);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--border); }
.btn-outline {
  background: transparent;
  color: var(--pink-deep);
  border-color: var(--pink-deep);
}
.btn-outline:hover { background: var(--pink-light); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-danger { background: #e74c3c; color: #fff; border-color: #e74c3c; }
.btn-danger:hover { background: #c0392b; border-color: #c0392b; }
.btn-success { background: var(--sage); color: #fff; border-color: var(--sage); }
.btn-success:hover { background: #5d9368; }
.btn-caramel { background: var(--caramel); color: #fff; border-color: var(--caramel); }
.btn-caramel:hover { background: #a86e28; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,246,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cocoa);
  flex-shrink: 0;
  min-width: 0;
  overflow: hidden;
}
.nav-logo-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-logo-icon { color: var(--pink-deep); font-size: 1rem; flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--cream-dark); color: var(--cocoa); }
.nav-links a.nav-cta {
  background: var(--pink-deep);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links a.nav-cta:hover { background: #b83d64; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-dots {
  position: absolute;
  bottom: 28px;
  left: 8vw;
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}
.hero-dot.active {
  background: #fff;
  border-color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(28,18,10,0.88) 0%, rgba(44,28,16,0.72) 45%, rgba(28,18,10,0.35) 80%, rgba(28,18,10,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 0 0 8vw;
  padding: 80px 24px 80px 0;
  text-align: left;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 87, 0.15);
  border: 1px solid rgba(212, 168, 87, 0.5);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #E8C882;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  opacity: 1;
  color: #E8C882;
  text-shadow: 0 0 40px rgba(212,168,87,0.35);
}
.hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  opacity: 0.92;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
  color: rgba(255,255,255,0.95);
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-journey {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}
.journey-step {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.95;
  background: rgba(212, 168, 87, 0.15);
  border: 1px solid rgba(212, 168, 87, 0.4);
  color: #E8C882;
  padding: 5px 14px;
  border-radius: 50px;
}
.journey-arrow { opacity: 0.5; font-size: 0.9rem; color: #E8C882; }

/* ---- AUTOMATIONS SECTION ---- */
.automations {
  padding: 64px 0 56px;
  background: linear-gradient(180deg, var(--cream) 0%, #F9F1E6 100%);
}
.automations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.automation-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.automation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--caramel), var(--pink-deep));
  opacity: 0;
  transition: opacity var(--transition);
}
.automation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px var(--shadow);
}
.automation-card:hover::before { opacity: 1; }
.automation-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-block;
}
.automation-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.automation-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.automation-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--caramel);
  background: var(--caramel-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ---- FEATURES (REDESIGNED) ---- */
.features {
  position: relative;
  padding: 90px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  overflow: hidden;
}
.features-bg-deco {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}
.features-bg-deco::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -180px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-light) 0%, transparent 70%);
  opacity: 0.7;
}
.features-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.features-header .section-label { color: var(--pink-deep); }
.features-header .section-title { margin-bottom: 14px; }
.features-subtitle {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.feature-card {
  display: flex;
  flex-direction: column;
  padding: 36px 28px 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  position: relative;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(92,61,46,0.14);
  border-color: rgba(255,255,255,0.6);
}
.feature-card--pink   { background: linear-gradient(160deg, var(--pink-light) 0%, #FFF5F8 100%); }
.feature-card--caramel { background: linear-gradient(160deg, var(--caramel-light) 0%, #FFF8EE 100%); }
.feature-card--sage   { background: linear-gradient(160deg, var(--sage-light) 0%, #F4FBF6 100%); }
.feature-card--berry  { background: linear-gradient(160deg, var(--berry-light) 0%, #FAF2F8 100%); }
.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.feature-icon-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(92,61,46,0.10);
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon-ring {
  transform: scale(1.08) rotate(-4deg);
}
.feature-card--pink .feature-icon-ring   { box-shadow: 0 4px 14px rgba(212,84,122,0.18); }
.feature-card--sage .feature-icon-ring   { box-shadow: 0 4px 14px rgba(125,171,138,0.18); }
.feature-card--berry .feature-icon-ring  { box-shadow: 0 4px 14px rgba(142,74,126,0.18); }
.feature-card--caramel .feature-icon-ring { box-shadow: 0 4px 14px rgba(200,134,58,0.18); }
.feature-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(92,61,46,0.10);
  line-height: 1;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 22px;
}
.feature-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pink-deep);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.feature-card--sage .feature-link  { color: #3d7a4e; }
.feature-card--berry .feature-link { color: var(--berry); }
.feature-card--caramel .feature-link { color: var(--caramel); }
.feature-card:hover .feature-link { gap: 12px; }
.feature-arrow {
  transition: transform 0.2s ease;
}
.feature-card:hover .feature-arrow { transform: translateX(3px); }

/* ---- FEATURES CTA BANNER ---- */
.features-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 36px 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--cocoa) 0%, #3D2818 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.features-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,167,184,0.12) 0%, transparent 70%);
}
.features-cta-text { position: relative; z-index: 1; }
.features-cta-text h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.features-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
}
.features-cta-btn {
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* ---- JOURNEY SECTION ---- */
.journey-section {
  padding: 80px 0;
  background: var(--cream);
}
.journey-section .container { text-align: center; }
.journey-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.journey-card {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.journey-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.7;
  line-height: 1;
}
.journey-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--text-dark);
}
.journey-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
}
.journey-connector {
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-size: 1.3rem;
  opacity: 0.4;
}
.journey-connector::after { content: '→'; }

/* ---- LOVE NOTE ---- */
.love-note {
  padding: 80px 0;
  background: var(--cocoa);
  color: var(--white);
}
.love-note-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.love-note-text .section-label { color: var(--teal); }
.love-note-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  margin-bottom: 18px;
}
.love-note-text p {
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.97rem;
}
.love-note-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(8px);
}
.lnc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
}
.lnc-label { font-size: 0.9rem; opacity: 0.7; }
.lnc-val { font-weight: 600; font-size: 0.95rem; }
.lnc-divider { border-top: 1px solid rgba(255,255,255,0.15); margin: 10px 0; }
.lnc-row--total .lnc-label { font-weight: 700; opacity: 1; font-size: 1rem; }
.lnc-price { font-size: 1.6rem; font-family: var(--font-head); color: var(--teal); }
.lnc-row--per { opacity: 0.6; }
.lnc-message {
  text-align: center;
  font-size: 0.82rem;
  font-style: italic;
  opacity: 0.6;
  margin-top: 14px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand-name { color: var(--white); }
.footer-nav {
  display: flex;
  gap: 6px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--pink); }
.footer-copy { font-size: 0.82rem; opacity: 0.45; }

/* ---- VIBE OTTER CREDIT ---- */
.vo-credit {
  margin-top: 14px;
}
.vo-credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0, 194, 179, 0.28);
  background: rgba(0, 194, 179, 0.08);
  font-size: 0.72rem;
  font-weight: 500;
  font-family: var(--font-body);
  color: rgba(0, 194, 179, 0.9);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.vo-credit-link .vo-otter {
  font-size: 0.95rem;
  line-height: 1;
}
.vo-credit-link:hover {
  background: rgba(0, 194, 179, 0.16);
  border-color: rgba(0, 194, 179, 0.55);
  color: #00C2B3;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: 0 6px 20px var(--shadow); }

/* ---- FORM ELEMENTS ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
}
.form-hint {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 3px;
}
.form-control {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-control:focus {
  outline: none;
  border-color: var(--pink-deep);
}
.form-control::placeholder { color: #BBA898; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A6A58' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ---- PILL SELECTORS ---- */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  padding: 7px 16px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.pill:hover, .pill.active {
  border-color: var(--pink-deep);
  color: var(--pink-deep);
  background: var(--pink-light);
}
.pill.active { font-weight: 700; }

/* ---- PROGRESS BAR ---- */
.progress-bar-wrap {
  background: var(--border);
  border-radius: 50px;
  height: 6px;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--pink-deep), var(--caramel));
  transition: width 0.4s ease;
}
.progress-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.progress-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.progress-step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  flex: 1;
  transition: color var(--transition);
}
.progress-step-label.active { color: var(--pink-deep); }

/* ---- TAGS / BADGES ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-pink   { background: var(--pink-light); color: var(--pink-deep); }
.badge-sage   { background: var(--sage-light); color: #3d7a4e; }
.badge-caramel { background: var(--caramel-light); color: var(--caramel); }
.badge-berry  { background: var(--berry-light); color: var(--berry); }

/* ---- ALERT / WARNING ---- */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.alert-warn { background: #FFF3CD; border: 1px solid #FFDC73; color: #7A5B00; }
.alert-danger { background: #FFE8E8; border: 1px solid #FFB3B3; color: #8B0000; }
.alert-success { background: var(--sage-light); border: 1px solid #a8d4b4; color: #2d6a3f; }
.alert-info { background: var(--pink-light); border: 1px solid var(--pink); color: #8B2244; }

/* ---- TABS ---- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
}
.tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--pink-deep); }
.tab-btn.active { color: var(--pink-deep); border-bottom-color: var(--pink-deep); font-weight: 700; }

/* ---- STEP WIZARD ---- */
.wizard-header { margin-bottom: 32px; }
.wizard-step-panel { display: none; }
.wizard-step-panel.active { display: block; }
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 12px;
}

/* ---- RESULT CARDS ---- */
.result-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
}
.result-card:hover { border-color: var(--pink-deep); box-shadow: 0 8px 24px var(--shadow); }
.result-card.selected { border-color: var(--pink-deep); background: var(--pink-light); }
.result-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* ---- TOOL LAYOUT ---- */
.tool-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 20px;
  align-items: start;
}
.tool-main { min-width: 0; }
.tool-sidebar {
  position: sticky;
  top: 84px;
}

/* ---- PRICE DISPLAY ---- */
.price-display {
  background: linear-gradient(135deg, var(--cocoa) 0%, var(--cocoa-mid) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.price-display h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0.8;
}
.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-row:last-of-type { border-bottom: none; }
.price-row-label { opacity: 0.65; }
.price-row-val { font-weight: 600; }
.price-divider { border-top: 1px solid rgba(255,255,255,0.2); margin: 12px 0; }
.price-big {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--peach);
  line-height: 1;
  text-align: center;
  padding: 16px 0 4px;
}
.price-per-serving {
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.55;
  margin-bottom: 20px;
}
.price-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}
.price-option {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 8px;
  text-align: center;
  transition: background var(--transition);
}
.price-option:hover { background: rgba(255,255,255,0.14); }
.price-option-label { font-size: 0.7rem; opacity: 0.55; margin-bottom: 4px; }
.price-option-val { font-size: 1.1rem; font-weight: 700; }

/* ---- INGREDIENT TABLE ---- */
.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.ingredient-table th {
  text-align: left;
  padding: 8px 10px;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--cream);
  border-bottom: 2px solid var(--border);
  font-size: 0.8rem;
}
.ingredient-table td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.ingredient-table .input-sm {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
}
.ingredient-table .input-sm:focus { outline: none; border-color: var(--pink-deep); }
.ingredient-table .cost-cell {
  font-weight: 700;
  color: var(--pink-deep);
  text-align: right;
  padding-right: 10px;
  white-space: nowrap;
}
.ingredient-table .del-btn {
  background: none;
  border: none;
  color: #CCC;
  font-size: 1.1rem;
  padding: 4px;
  cursor: pointer;
  transition: color var(--transition);
}
.ingredient-table .del-btn:hover { color: #e74c3c; }

/* ---- LOGO PREVIEW ---- */
.logo-preview-box {
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  gap: 10px;
  transition: all var(--transition);
}
.logo-preview-name {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  line-height: 1.2;
  text-align: center;
  word-break: break-word;
}
.logo-preview-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
  text-align: center;
}
.logo-preview-icon { font-size: 2.5rem; }

/* ---- QUOTE ---- */
.quote-doc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.9rem;
}
.quote-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 20px;
}
.quote-baker-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--cocoa);
}
.quote-meta { text-align: right; color: var(--text-soft); font-size: 0.82rem; line-height: 1.7; }
.quote-meta .quote-num { font-weight: 700; color: var(--text-dark); font-size: 1rem; }
.quote-section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 8px;
  margin-top: 24px;
}
.quote-line-table { width: 100%; border-collapse: collapse; margin-bottom: 12px; }
.quote-line-table th { text-align: left; padding: 8px 0; border-bottom: 2px solid var(--border); font-size: 0.8rem; color: var(--text-soft); }
.quote-line-table td { padding: 9px 0; border-bottom: 1px solid var(--cream-dark); }
.quote-line-table td:last-child { text-align: right; font-weight: 600; }
.quote-total-row { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-top: 2px solid var(--text-dark); margin-top: 6px; }
.quote-total-label { font-weight: 700; font-size: 1.05rem; }
.quote-total-val { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--pink-deep); }
.quote-closing { font-style: italic; color: var(--text-soft); text-align: center; margin-top: 28px; font-size: 0.88rem; }
.quote-terms { background: var(--cream); border-radius: var(--radius-sm); padding: 16px; margin-top: 20px; font-size: 0.8rem; line-height: 1.7; color: var(--text-soft); }

/* ---- MY BAKERY ---- */
.mybakery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.saved-item {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.saved-item-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--text-dark);
}
.saved-item-meta { font-size: 0.8rem; color: var(--text-soft); }
.saved-item-actions { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; padding-top: 10px; }
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-soft);
}
.empty-state-icon { font-size: 3rem; margin-bottom: 14px; opacity: 0.4; }
.empty-state h3 { font-family: var(--font-head); font-size: 1.2rem; color: var(--text-mid); margin-bottom: 8px; }
.empty-state p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }

/* ---- CELEBRATION BANNER ---- */
.celebration-banner {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--caramel) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 24px;
  text-align: center;
  animation: celebrationPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.celebration-banner h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 6px; }
.celebration-banner p { font-size: 0.9rem; opacity: 0.88; }

@keyframes celebrationPop {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

/* ---- ANIMATED FADE IN ---- */
.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-cta { flex-direction: column; text-align: center; padding: 28px 24px; }
  .love-note-inner { grid-template-columns: 1fr; gap: 36px; }
  .tool-layout { grid-template-columns: 1fr; }
  .tool-sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px var(--shadow);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { border-radius: var(--radius-sm); padding: 12px 14px; display: block; width: 100%; }
  .nav-links a.nav-cta { text-align: center; margin-top: 8px; }

  /* Nav logo — prevent overflow on small screens */
  .nav-logo-text { max-width: 180px; }

  /* Hero — fix left margin overflow on mobile */
  .hero-content {
    margin: 0;
    padding: 80px 20px 60px;
    max-width: 100%;
  }
  .hero-slide-dots { left: 20px; }

  .journey-steps { flex-direction: column; align-items: center; gap: 8px; }
  .journey-connector { width: 2px; height: 24px; display: flex; align-items: center; justify-content: center; }
  .journey-connector::after { content: '↓'; }

  .price-options { grid-template-columns: 1fr 1fr 1fr; }
  .quote-doc { padding: 24px 18px; }
  .quote-header { flex-direction: column; }
  .quote-meta { text-align: left; }

  /* Tool layout sidebar — unstick on mobile */
  .tool-layout { padding: 24px 16px; }

  /* Tables — allow horizontal scroll */
  .ingredient-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .features-cta { padding: 24px 20px; }
  .features-cta-text h3 { font-size: 1.25rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; }
  .hero-journey { gap: 6px; flex-wrap: wrap; }
  .wizard-nav { flex-wrap: wrap; }
  .wizard-nav .btn { flex: 1 1 auto; }
  .price-options { grid-template-columns: 1fr; }

  /* Page hero — reduce top padding for fixed nav */
  .page-hero { padding: 90px 0 36px; }

  /* Section padding reduction */
  .features { padding: 56px 0 44px; }
  .features-header { margin-bottom: 36px; }
  .features-grid { gap: 16px; }
  .features-cta { margin-top: 36px; gap: 16px; }
  .journey-section { padding: 48px 0; }
  .love-note { padding: 48px 0; }

  /* Love note card — prevent overflow */
  .love-note-inner { gap: 24px; }
  .love-note-card { padding: 20px 16px; }

  /* Quote doc — prevent table overflow */
  .quote-doc { padding: 20px 14px; }
  .quote-line-table { font-size: 0.82rem; }

  /* Ingredient table — horizontal scroll */
  .ingredient-table { min-width: 480px; }
  .ingredient-table-wrap, .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer nav — stack links */
  .footer-nav { flex-direction: column; align-items: center; gap: 8px; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 1.75rem; background: none !important; }
  .hero-sub { font-size: 0.92rem; }
  .hero-badge { font-size: 0.72rem; }
  .nav-logo-text { max-width: 140px; font-size: 0.9rem; }
  .container { padding: 0 14px; }
  .card { padding: 18px 14px; }
  .feature-card { padding: 26px 18px 22px; }
  .feature-icon-ring { width: 48px; height: 48px; font-size: 1.5rem; }
  .feature-num { font-size: 2rem; }
  .features-cta { padding: 22px 16px; }
  .features-cta-text h3 { font-size: 1.15rem; }
  .features-cta-btn { width: 100%; }
}

/* ---- NAV ACTIVE ---- */
.nav-links a.active {
  background: var(--cream-dark);
  color: var(--cocoa);
  font-weight: 600;
}

/* ---- SCROLL TO TOP ---- */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: white;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212,84,122,0.35);
  z-index: 900;
  transition: all 0.22s;
}
.scroll-top-btn:hover { background: #b83d64; transform: translateY(-2px); }
.scroll-top-btn.visible { display: flex; }

/* ---- TOOL CARD HOVER ---- */
#journeyShortcuts .card { transition: all 0.22s ease; }

/* ---- PRINT ---- */
@media print {
  .nav, .page-hero, .no-print { display: none !important; }
  body { background: white; font-size: 12pt; }
  .quote-doc { border: none; padding: 0; max-width: 100%; }
}
.vo-touchup-42 {
  background-color: #7DAB8A;

  color: #F2A7B8;
  border-radius: 9999px;
  border-width: 1px;
  border-style: solid;
  border-color: #d1d5db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);}
.vo-touchup-64 {
  color: #D4547A;
}
.vo-touchup-63 {
  color: #D4547A;
}

/* ---- VibeOtter Subtle Promo Card ---- */
.vo-subtle-promo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 16px 20px;
  max-width: 300px;
  z-index: 99990;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.vo-subtle-promo.show {
  opacity: 1;
  transform: translateX(0);
}
.vo-subtle-promo.hide {
  opacity: 0;
  transform: translateX(120%);
}
.vo-subtle-promo .vo-subtle-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.vo-subtle-promo .vo-subtle-text {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.4;
}
.vo-subtle-promo .vo-subtle-text strong {
  color: #2d2d2d;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 2px;
}
.vo-subtle-promo .vo-subtle-text a {
  color: #00C2B3;
  text-decoration: none;
  font-weight: 600;
}
.vo-subtle-promo .vo-subtle-text a:hover {
  text-decoration: underline;
}
.vo-subtle-promo .vo-subtle-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #bbb;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.vo-subtle-promo .vo-subtle-close:hover {
  color: #888;
}
@media (max-width: 480px) {
  .vo-subtle-promo {
    bottom: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
    transform: translateY(120%);
  }
  .vo-subtle-promo.show {
    transform: translateY(0);
  }
  .vo-subtle-promo.hide {
    transform: translateY(120%);
  }
}
