@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Modern Summer Vibes Design Variables */
:root {
  --primary-coral: #ff4e50;
  --primary-coral-hover: #e63946;
  --primary-coral-light: rgba(255, 78, 80, 0.1);
  --ocean-teal: #118ab2;
  --ocean-teal-hover: #0e7397;
  --ocean-teal-light: rgba(17, 138, 178, 0.1);
  --teal-accent: #118ab2; /* was undefined; inline styles reference it */
  --ocean-blue: #118ab2;
  --sunny-yellow: #ffd166;
  
  --bg-sand: #fdfbf7;
  --bg-mist: #f0f7f7;
  --text-charcoal: #2b3a42;
  --text-gray: #657780;
  --border-sand: #e9e4db;
  --surface-card: #ffffff; /* card/panel surfaces (was hardcoded white) */
  --surface-glass: rgba(253, 251, 247, 0.94); /* sticky navbar */
  --footer-bg: #2b3a42; /* footer stays dark in BOTH themes (white text) */
  --btn-teal: #118ab2;  /* teal button bg — white label needs this depth */
  --btn-teal-hover: #0e7397;
  --hero-wash-strong: rgba(253, 251, 247, 0.92); /* hero overlay over photos */
  --hero-wash-mid: rgba(253, 251, 247, 0.74);
  --hero-wash-faint: rgba(253, 251, 247, 0.12);
  --mist-wash: rgba(240, 247, 247, 0.9);
  
  --font-summer: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-summer: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-light: 0 4px 15px rgba(43, 58, 66, 0.03);
  --shadow-medium: 0 10px 25px rgba(43, 58, 66, 0.06);
  --shadow-premium: 0 20px 40px rgba(43, 58, 66, 0.1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-summer);
  background-color: var(--bg-sand);
  color: var(--text-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  color: var(--text-charcoal);
  line-height: 1.2;
}

a {
  color: var(--primary-coral);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-coral-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

.bg-mist {
  background-color: var(--bg-mist);
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }

.badge {
  background-color: var(--border-sand);
  color: var(--text-charcoal);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Typography & Titles */
.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
  position: relative;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 780px;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-summer);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.8px;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary-coral);
  color: white;
  border-color: var(--primary-coral);
  box-shadow: 0 6px 15px rgba(255, 78, 80, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-coral-hover);
  border-color: var(--primary-coral-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 78, 80, 0.35);
}

.btn-secondary {
  background-color: var(--btn-teal);
  color: white;
  border-color: var(--btn-teal);
  box-shadow: 0 6px 15px rgba(6, 214, 160, 0.25);
}

.btn-secondary:hover {
  background-color: var(--btn-teal-hover);
  border-color: var(--btn-teal-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(6, 214, 160, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-coral);
  border-color: var(--primary-coral);
}

.btn-outline:hover {
  background-color: var(--primary-coral);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 78, 80, 0.15);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
  border-radius: 6px;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Shared One Zorro's Experience */
.zorro-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 20px;
}

.zorro-feature-card {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 12px;
  padding: 22px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  box-shadow: var(--shadow-light);
}

.zorro-feature-card .btn {
  margin-top: auto;
  width: 100%;
  padding: 12px 18px;
}

.zorro-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--primary-coral-light);
  font-size: 1.45rem;
}

.zorro-feature-body {
  display: grid;
  gap: 8px;
}

.zorro-feature-body h3 {
  font-size: 1.15rem;
  margin: 0;
}

.zorro-feature-body p {
  color: var(--text-gray);
  font-size: 0.94rem;
  margin: 0;
}

.zorro-feature-group {
  color: var(--ocean-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zorro-feature-list {
  display: grid;
  gap: 9px;
}

.zorro-feature-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border-sand);
  border-radius: 14px;
  background: var(--surface-card);
  color: var(--text-charcoal);
}

.zorro-feature-row .zorro-feature-icon {
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.zorro-feature-row .zorro-feature-body {
  gap: 3px;
}

.zorro-feature-row .zorro-feature-body h3 {
  font-size: 0.92rem;
}

.zorro-feature-row .zorro-feature-body p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.zorro-feature-action {
  color: var(--primary-coral);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .zorro-feature-grid {
    grid-template-columns: 1fr;
  }

  .zorro-feature-card {
    min-height: auto;
  }
}

/* Clean Header & Sticky Navbar */
.navbar {
  background-color: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(43, 58, 66, 0.08);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-smooth);
}

.logo:hover img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--text-charcoal);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--primary-coral);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--primary-coral);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Between full desktop and the hamburger breakpoint the row is tight:
   tighten gaps instead of letting labels wrap. */
@media (max-width: 1280px) {
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 0.76rem;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-account-btn {
  margin-right: 0;
  padding: 10px 16px;
  font-size: 0.78rem;
}

/* Hamburger Responsive Menu Button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  outline: none;
}

/* Keyboard users still need a visible focus indicator (WCAG 2.4.7) */
.hamburger-btn:focus-visible {
  outline: 3px solid #118ab2;
  outline-offset: 2px;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-charcoal);
  margin-bottom: 5px;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn span:last-child {
  margin-bottom: 0;
}

/* Mobile Sidebar Drawer */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-sand);
  box-shadow: -10px 0 30px rgba(43, 58, 66, 0.1);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.mobile-menu-drawer.active {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  color: var(--text-charcoal);
  line-height: 1;
  margin-bottom: 20px;
}

.mobile-logo img {
  height: 60px;
  margin-bottom: 40px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-nav-links a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-charcoal);
}

.mobile-nav-links a:hover {
  color: var(--primary-coral);
  padding-left: 10px;
}

/* Production Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  background: var(--bg-mist);
  padding: 38px 0 82px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--hero-wash-strong) 0%, var(--hero-wash-mid) 44%, var(--hero-wash-faint) 100%),
    radial-gradient(circle at 80% 20%, rgba(255, 78, 80, 0.14), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(6, 214, 160, 0.14), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 2;
}

.hero-text {
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tag {
  display: inline-block;
  background-color: var(--primary-coral-light);
  color: var(--primary-coral);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: -0.04em;
  color: var(--text-charcoal);
  line-height: 0.96;
  max-width: 880px;
}

.hero p {
  font-size: 1.06rem;
  color: var(--text-gray);
  margin-bottom: 1.35rem;
  max-width: 620px;
}

.hero-info-row,
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-info-row span,
.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  color: var(--text-charcoal);
  font-size: 0.92rem;
  padding: 8px 10px;
}

.hero-info-row a {
  color: var(--primary-coral);
  font-weight: 800;
  text-decoration: none;
}

.hero-trust-row {
  margin-top: 18px;
  margin-bottom: 0;
}

.hero-trust-row span {
  background: var(--bg-sand);
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 750;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 20px;
  white-space: nowrap;
}

.hero-image {
  height: min(54vh, 480px);
  min-height: 360px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 0;
  transform: none;
  transition: var(--transition-smooth);
}

.hero-image:hover {
  transform: scale(1.01);
}

.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 24px;
  max-width: 690px;
}

.hero-proof span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(43, 58, 66, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-charcoal);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

/* Wave Divider */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

.wave-container svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
}

/* Beach Banner */
.banner {
  background: #111820;
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  animation: none;
}

.sms-order-banner {
  background: var(--text-charcoal);
  color: white;
  padding: 14px 0;
  text-align: center;
}

.sms-order-banner p {
  margin: 0;
  font-weight: 600;
}

.sms-order-banner a {
  color: var(--sunny-yellow);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sms-order-banner a:hover {
  color: white;
}

.sms-fallback {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(360px, calc(100vw - 36px));
  padding: 16px 44px 16px 18px;
  color: white;
  background: var(--text-charcoal);
  border: 2px solid var(--sunny-yellow);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.sms-fallback[hidden] {
  display: none;
}

.sms-fallback strong {
  color: var(--sunny-yellow);
  font-size: 1rem;
}

.sms-fallback span {
  line-height: 1.4;
}

.sms-fallback-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  color: white;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.sms-fallback-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Interactive Beach Finder Widget */
.beach-finder-bar {
  background-color: var(--bg-sand);
  border-bottom: 1px solid var(--border-sand);
  padding: 35px 0;
  position: relative;
  z-index: 10;
}

.finder-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: var(--surface-card);
  border: 2px solid var(--border-sand);
  padding: 25px 35px;
  border-radius: var(--radius-summer);
  box-shadow: var(--shadow-light);
}

.finder-header {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1.2;
}

.finder-icon {
  font-size: 2.5rem;
}

.finder-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-charcoal);
  margin-bottom: 3px;
}

.finder-header p {
  font-size: 0.9rem;
  color: var(--text-gray);
}

.finder-controls {
  flex: 0.8;
}

.finder-select {
  border: 2px solid var(--border-sand);
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-charcoal);
  cursor: pointer;
}

.finder-select:focus {
  border-color: var(--ocean-teal);
}

.finder-results-box {
  flex: 1.2;
  background-color: var(--bg-mist);
  padding: 15px 25px;
  border-radius: 8px;
  border-left: 4px solid var(--ocean-teal);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finder-results-box .placeholder-text {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
  text-align: center;
}

.real-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.4s ease;
}

.shipping-calculator-card {
  flex: 1 1 100%;
  width: 100%;
  border-top: 1px solid var(--border-sand);
  padding-top: 24px;
}

.shipping-calculator-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.shipping-icon {
  font-size: 2rem;
}

.shipping-calculator-header h3 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--text-charcoal);
}

.shipping-calculator-header p {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.shipping-form-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr 0.8fr;
  gap: 14px;
  align-items: end;
}

.shipping-preset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.shipping-preset-btn {
  border: 1px solid var(--border-sand);
  background: var(--surface-card);
  color: var(--text-charcoal);
  border-radius: 8px;
  padding: 8px 11px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.shipping-preset-btn:hover {
  border-color: var(--ocean-teal);
  color: var(--ocean-teal);
  transform: translateY(-1px);
}

.shipping-result-box {
  margin-top: 16px;
  background-color: var(--bg-mist);
  border: 1px solid var(--border-sand);
  border-left: 4px solid var(--ocean-teal);
  border-radius: 8px;
  padding: 14px 18px;
}

.shipping-result-box .placeholder-text {
  margin: 0;
  color: var(--text-gray);
  font-style: italic;
  text-align: center;
}

.shipping-result {
  display: grid;
  gap: 5px;
  color: var(--text-charcoal);
}

.shipping-result.success strong {
  color: var(--ocean-teal);
}

.shipping-result.warning strong {
  color: var(--primary-coral);
}

.shipping-result small {
  color: var(--text-gray);
}

.result-details {
  font-size: 0.9rem;
  color: var(--text-charcoal);
}

.result-details p {
  margin-bottom: 4px;
}

.result-details p:last-child {
  margin-bottom: 0;
}

.result-details strong {
  font-weight: 800;
}

/* Service Grid Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split-layout > div {
  flex: 1;
}

.category-card {
  border: 1px solid var(--border-sand);
  background-color: var(--bg-sand);
  text-align: center;
  padding: 45px 35px;
  border-radius: var(--radius-summer);
  box-shadow: var(--shadow-light);
  border-bottom: 5px solid var(--ocean-teal);
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  transition: var(--transition-smooth);
}

.category-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
}

.category-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

/* Production System Cards */
.production-section {
  border-top: 1px solid rgba(43, 58, 66, 0.08);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.production-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid rgba(43, 58, 66, 0.1);
  border-radius: 6px;
  background: var(--surface-card);
  box-shadow: var(--shadow-light);
}

.production-card h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.production-card p {
  color: var(--text-gray);
  margin: 0 0 22px;
  font-size: 0.98rem;
}

.production-card .btn {
  margin-top: auto;
  width: 100%;
}

.production-card-dark {
  background: #101820;
  border-color: #101820;
  color: #fff;
}

.production-card-dark h3,
.production-card-dark p {
  color: #fff;
}

.production-card-dark p {
  opacity: 0.78;
}

.production-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-coral);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-card-dark .production-kicker {
  color: var(--sunny-yellow);
}

.production-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(43, 58, 66, 0.1);
  border-radius: 6px;
  background: rgba(43, 58, 66, 0.1);
}

.production-metrics div {
  display: grid;
  gap: 4px;
  min-height: 105px;
  padding: 22px;
  background: var(--surface-card);
}

.production-metrics strong {
  color: var(--text-charcoal);
  font-size: 1.55rem;
  line-height: 1;
}

.production-metrics span {
  color: var(--text-gray);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(43, 58, 66, 0.1);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--surface-card) 0%, var(--bg-mist) 100%);
}

.trust-strip h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.trust-strip p {
  margin: 0;
  color: var(--text-gray);
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quick-action-card {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(43, 58, 66, 0.1);
  border-radius: 6px;
  background: var(--surface-card);
  color: var(--text-charcoal);
  box-shadow: var(--shadow-light);
}

.quick-action-card:hover {
  color: var(--text-charcoal);
  border-color: rgba(255, 78, 80, 0.32);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.quick-action-card strong {
  font-size: 0.95rem;
}

.quick-action-card span {
  color: var(--text-gray);
  font-size: 0.84rem;
  line-height: 1.35;
}

.platform-section {
  border-top: 1px solid rgba(43, 58, 66, 0.08);
}

.platform-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.platform-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(43, 58, 66, 0.12);
  border-radius: 8px;
  background: var(--surface-card);
  color: var(--text-charcoal);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(43, 58, 66, 0.07);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.platform-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 58, 66, 0.28);
  box-shadow: 0 18px 38px rgba(43, 58, 66, 0.11);
}

.platform-card-primary {
  background: var(--text-charcoal);
  color: #fff;
}

.platform-label {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(34, 135, 127, 0.12);
  color: var(--ocean-teal);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.platform-card-primary .platform-label {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.platform-card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.platform-card p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.45;
}

.platform-card-primary p {
  color: rgba(255,255,255,.74);
}

.platform-card strong {
  margin-top: auto;
  color: var(--primary-coral);
}

.platform-card-primary strong {
  color: var(--butter-yellow);
}

/* Menu Showcase Tabs */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  color: var(--text-charcoal);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-coral);
}

.tab-btn.active {
  background-color: var(--primary-coral);
  color: white;
  border-color: var(--primary-coral);
  box-shadow: 0 4px 15px rgba(255, 78, 80, 0.3);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
  display: block;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.menu-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-summer);
  padding: 35px;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.menu-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.menu-tag.popular {
  background-color: var(--sunny-yellow);
  color: #8c6800;
}

.menu-tag.gourmet {
  background-color: var(--primary-coral-light);
  color: var(--primary-coral);
}

.menu-tag.artisan {
  background-color: var(--ocean-teal-light);
  color: var(--ocean-teal);
}

.menu-tag.fresh {
  background-color: rgba(17, 138, 178, 0.1);
  color: var(--ocean-blue);
}

.menu-card h4 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  padding-right: 80px;
}

.menu-price {
  font-weight: 800;
  color: var(--primary-coral);
  font-size: 1.15rem;
  margin-bottom: 15px;
  display: block;
}

.menu-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 25px;
  flex-grow: 1;
}

.menu-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.menu-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-card-actions .btn {
  margin-top: 0;
  align-self: auto;
}

/* Image Frame blocks */
.image-block {
  border-radius: 16px;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.image-block img,
.image-block video {
  width: 100%;
  transition: transform 0.6s ease;
}

.image-block:hover img {
  transform: scale(1.05);
}

/* Kitchen Gallery Grid Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: var(--shadow-medium);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 58, 66, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  color: white;
  background-color: var(--primary-coral);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Dynamic Gallery Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 58, 66, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-card {
  width: 90%;
  max-width: 650px;
  background-color: var(--bg-sand);
  border-radius: var(--radius-summer);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-sand);
}

.lightbox-overlay.active .lightbox-card {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.5rem;
  color: white;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--primary-coral);
}

.lightbox-img-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #000;
  overflow: hidden;
}

.lightbox-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-caption {
  padding: 25px 30px;
}

.lightbox-caption h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text-charcoal);
}

.lightbox-caption p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Catering Planner Tool Card */
.planner-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-summer);
  padding: 30px;
  margin-top: 35px;
  box-shadow: var(--shadow-medium);
  border-top: 5px solid var(--ocean-teal);
}

.planner-card h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.planner-sub {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.planner-input-group {
  margin-bottom: 20px;
}

.planner-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 8px;
}

.planner-labels .badge {
  background-color: var(--ocean-teal-light);
  color: var(--ocean-teal);
}

.planner-results {
  background-color: var(--bg-mist);
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.planner-results p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.planner-list {
  list-style: none;
  padding-left: 0;
}

.planner-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text-charcoal);
  font-weight: 600;
}

.planner-list li::before {
  content: '👉';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

.planner-prefs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.planner-prefs .planner-labels {
  width: 100%;
  margin-bottom: 2px;
}

.pref-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border-sand);
  border-radius: 20px;
  background: var(--surface-card);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-charcoal);
  cursor: pointer;
  user-select: none;
}

.pref-chip:has(input:checked) {
  border-color: var(--primary-coral);
  background: rgba(255, 111, 97, 0.08);
}

.pref-chip input {
  accent-color: var(--primary-coral);
}

.planner-list li.planner-estimate {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border-sand);
  font-weight: 700;
}

.planner-list li.planner-estimate::before {
  content: '💰';
}

.planner-list li.planner-budget-note::before {
  content: '🎯';
}

/* B2B Wholesale specs catalog */
.b2b-specs-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-summer);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-medium);
  border-top: 5px solid var(--primary-coral);
}

.b2b-specs-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.specs-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-sand);
  margin-bottom: 15px;
}

.spec-tab-btn {
  background: none;
  border: none;
  padding: 10px 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.spec-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: var(--transition-smooth);
}

.spec-tab-btn:hover {
  color: var(--primary-coral);
}

.spec-tab-btn.active {
  color: var(--primary-coral);
}

.spec-tab-btn.active::after {
  background-color: var(--primary-coral);
}

.spec-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.spec-content.active {
  display: block;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table td {
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--bg-mist);
  color: var(--text-charcoal);
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table td:first-child {
  font-weight: 700;
  color: var(--text-gray);
  width: 40%;
}

.spec-table td:last-child {
  font-weight: 600;
  text-align: right;
}

/* Check Lists */
.check-list {
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-charcoal);
  font-weight: 500;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ocean-teal);
  font-weight: 900;
  font-size: 1.3rem;
}

/* Form Styling & Accents */
.form-panel {
  background-color: var(--bg-sand);
  border: 1px solid var(--border-sand);
  padding: 45px;
  border-radius: 16px;
  box-shadow: var(--shadow-premium);
  position: relative;
}

.form-panel.accent-teal {
  border-top: 8px solid var(--ocean-teal);
}

.form-panel.accent-coral {
  border-top: 8px solid var(--primary-coral);
}

.form-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-sand);
}

.form-group {
  margin-bottom: 22px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-charcoal);
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-sand);
  border-radius: 8px;
  font-family: var(--font-summer);
  font-size: 1rem;
  background-color: var(--surface-card);
  color: var(--text-charcoal);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--ocean-teal);
  box-shadow: 0 0 0 4px rgba(6, 214, 160, 0.15);
}

.form-panel.accent-coral .form-control:focus {
  border-color: var(--primary-coral);
  box-shadow: 0 0 0 4px rgba(255, 78, 80, 0.15);
}

/* B2B Wholesale Pricing calculator */
.calculator-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-summer);
  padding: 30px;
  margin-top: 35px;
  box-shadow: var(--shadow-medium);
}

.calculator-card h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--text-charcoal);
}

.calc-sub {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.calc-range-group {
  margin-bottom: 22px;
}

.calc-labels {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.calc-labels .badge {
  background-color: var(--primary-coral-light);
  color: var(--primary-coral);
}

.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-sand);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-coral);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--primary-coral);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

#pizza-range::-webkit-slider-thumb {
  background: var(--ocean-teal);
}
#pizza-range::-moz-range-thumb {
  background: var(--ocean-teal);
}

#guests-slider::-webkit-slider-thumb {
  background: var(--ocean-teal);
}
#guests-slider::-moz-range-thumb {
  background: var(--ocean-teal);
}

.calc-results {
  background-color: var(--bg-mist);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-coral);
  margin-top: 25px;
}

.calc-result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.calc-result-item:last-child {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(43, 58, 66, 0.1);
}

.calc-result-item strong {
  font-weight: 800;
}

.text-coral { color: var(--primary-coral); }
.text-teal { color: var(--ocean-teal); }

/* Review Grid & Cards */
.review-grid {
  margin-top: 20px;
}

.review-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius-summer);
  padding: 35px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.review-stars {
  color: var(--sunny-yellow);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-charcoal);
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Success Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 58, 66, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-sand);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border-sand);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--text-charcoal);
}

.modal-header {
  text-align: center;
  margin-bottom: 25px;
}

.success-icon-circle {
  width: 70px;
  height: 70px;
  background-color: var(--ocean-teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-icon-circle svg {
  width: 35px;
  height: 35px;
  color: var(--ocean-teal);
}

.modal-header h3 {
  font-size: 1.8rem;
  color: var(--text-charcoal);
  letter-spacing: -0.5px;
}

.modal-body {
  margin-bottom: 30px;
}

#modal-desc {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 20px;
  font-size: 1rem;
}

.modal-summary-box {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg-mist);
  font-size: 0.95rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--text-gray);
  font-weight: 500;
}

.summary-row strong {
  color: var(--text-charcoal);
  font-weight: 700;
  max-width: 60%;
  text-align: right;
}

.inquiry-received-note {
  background-color: var(--ocean-teal-light);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.note-badge {
  background-color: var(--btn-teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.inquiry-received-note p {
  font-size: 0.85rem;
  color: var(--text-charcoal);
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.modal-footer .btn {
  padding: 14px 0;
}

/* Summer Footer */
.footer {
  background-color: var(--footer-bg);
  color: #fff;
  padding: 100px 0 40px;
}

.footer a {
  color: #c5d3dc;
}

.footer a:hover {
  color: var(--sunny-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.footer-col p {
  color: #9cb1bc;
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #3c4e57;
  padding-top: 35px;
  color: #7d939e;
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bannerGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Custom B2B Class */
.font-b2b {
  border-bottom-color: var(--primary-coral) !important;
}

/* Responsive Rules */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 0;
  }
  .hero-image {
    width: 100%;
    height: 420px;
    min-height: 360px;
  }
  .hero-text {
    width: 100%;
    padding: 0;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .production-grid,
  .production-metrics,
  .trust-strip,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-strip .btn {
    grid-column: 1 / -1;
  }
  .quick-action-grid {
    grid-column: 1 / -1;
  }
  .split-layout {
    flex-direction: column;
    gap: 50px;
  }
  .nav-links {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .finder-container {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }
  .finder-header {
    text-align: center;
    flex-direction: column;
  }
  .finder-controls, .finder-results-box {
    width: 100%;
  }
  .shipping-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .hero {
    min-height: auto;
    padding: 34px 0 74px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .hero-proof,
  .production-grid,
  .production-metrics,
  .trust-strip,
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .quick-action-grid {
    grid-template-columns: 1fr;
  }
  .hero-proof {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn,
  .hero-info-row span,
  .hero-trust-row span {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .form-panel {
    padding: 25px;
  }
  .nav-actions {
    gap: 8px;
  }
  .nav-actions .btn {
    padding: 11px 14px;
    font-size: 0.72rem;
  }
  .logo img {
    height: 34px;
  }
}

/* Phone-width header overflow (website certifier WEB-P1-1, 2026-07-24).
   At 375px the action row (language + Log In + Order Online + theme +
   hamburger) measured 364px starting at x=43 — it ran to 407px, pushing the
   hamburger and theme toggle off-screen entirely and giving the document a
   32px horizontal scroll. The drawer already carries language, theme, My
   Account and Order Online, so on phones the header keeps only the primary
   CTA plus the hamburger; nothing becomes unreachable. Inline styles on those
   buttons set padding/margin, not display, so these rules win. */
@media (max-width: 600px) {
  .nav-actions {
    gap: 6px;
    flex-shrink: 0;
  }
  .nav-actions .lang-toggle-btn,
  .nav-actions .nav-account-btn,
  .nav-actions .theme-toggle {
    display: none;
  }
  .nav-actions .btn {
    padding: 10px 12px;
    font-size: 0.7rem;
    white-space: nowrap;
  }
  .hamburger-btn {
    padding: 8px 4px;
  }
}

/* Belt-and-braces: a future header addition must not reintroduce a page-wide
   sideways scroll on phones (the visible symptom customers hit). */
@media (max-width: 600px) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* Sticky Sales Assistant Chat Widget Styling (New!) */
.chat-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  font-family: var(--font-summer);
}

.chat-toggle-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-coral) 0%, #ff7e5f 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 78, 80, 0.35);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
}

.chat-toggle-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 78, 80, 0.45);
}

.chat-icon-avatar {
  font-size: 1.5rem;
}

.chat-badge-pulse {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: var(--ocean-teal);
  border-radius: 50%;
  border: 2px solid white;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
  100% { transform: scale(0.9); opacity: 1; }
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  /* Cap to the viewport: the container sits 30px up and the window 80px above
     it, so anything taller than 100vh - 130px clips off-screen. */
  height: min(620px, calc(100vh - 130px));
  background-color: var(--bg-sand);
  border: 1px solid var(--border-sand);
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(43, 58, 66, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.chat-window.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-header {
  background: linear-gradient(135deg, var(--text-charcoal) 0%, #3e525d 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chat-header-avatar {
  font-size: 2rem;
  margin-right: 12px;
}

.chat-header .pm-h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.status-online {
  font-size: 0.75rem;
  color: var(--ocean-teal);
  font-weight: 600;
}

.chat-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.chat-language-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 800;
  cursor: pointer;
}

.chat-close-btn:hover {
  color: white;
}

.chat-body {
  flex: 1;
  /* Keep the conversation readable: without a floor, the fixed-height rows
     below squeeze the message area to ~40px (bug: welcome bubble clipped). */
  min-height: 100px;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--bg-sand);
}

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  animation: messageIn 0.3s ease-out;
}

.chat-message.assistant {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  color: var(--text-charcoal);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.chat-message.customer {
  background-color: var(--primary-coral);
  color: white;
  align-self: flex-end;
  border-top-right-radius: 0;
}

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

.chat-options-grid {
  padding: 15px 20px;
  background-color: var(--surface-card);
  border-top: 1px solid var(--border-sand);
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* Six stacked buttons are ~311px tall — cap and scroll them on desktop
     (mobile breakpoints already do this) so messages stay visible. */
  max-height: 190px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex-shrink: 0;
}

.chat-opt-btn {
  background-color: var(--bg-mist);
  color: var(--text-charcoal);
  border: 1px solid var(--border-sand);
  padding: 10px 14px;
  border-radius: 8px;
  font-family: var(--font-summer);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.chat-opt-btn:hover {
  background-color: var(--primary-coral-light);
  border-color: var(--primary-coral);
  color: var(--primary-coral);
}

.chat-footer {
  background-color: var(--bg-sand);
  flex-shrink: 0;
  padding: 10px 20px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-gray);
  border-top: 1px solid var(--border-sand);
}

.chat-input-container {
  display: flex;
  flex-shrink: 0;
  padding: 10px 15px;
  background-color: var(--surface-card);
  border-top: 1px solid var(--border-sand);
  gap: 8px;
}

#chat-user-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-sand);
  border-radius: 20px;
  font-family: var(--font-summer);
  font-size: 0.85rem;
  outline: none;
  background-color: var(--bg-sand);
  transition: var(--transition-smooth);
}

#chat-user-input:focus {
  border-color: var(--primary-coral);
  background-color: var(--surface-card);
  box-shadow: 0 0 5px rgba(255, 78, 80, 0.15);
}

#chat-submit-btn {
  background-color: var(--primary-coral);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 0.85rem;
}

#chat-mic-btn {
  background: var(--bg-mist);
  border: 1px solid var(--border-sand);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}

#chat-mic-btn.recording { background: var(--primary-coral); color: white; }

#chat-submit-btn:hover {
  background-color: #e04446;
  transform: scale(1.05);
}

/* Chat Product Card styling */
.chat-product-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  animation: cardScaleIn 0.3s ease-out;
  width: 100%;
}

@keyframes cardScaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.chat-product-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.chat-product-badge {
  display: inline-block;
  background-color: var(--primary-coral);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 10px 10px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chat-product-info {
  padding: 10px;
}

.chat-product-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-charcoal);
  margin-bottom: 2px;
}

.chat-product-price {
  font-size: 0.85rem;
  color: var(--ocean-teal);
  font-weight: 700;
  margin-bottom: 6px;
}

.chat-product-pitch {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.35;
  margin-bottom: 10px;
}

.chat-product-actions {
  display: flex;
  gap: 8px;
}

.chat-card-btn {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-family: var(--font-summer);
}

.chat-card-btn.primary-btn {
  background: linear-gradient(135deg, var(--primary-coral) 0%, #ff7e5f 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 10px rgba(255, 78, 80, 0.2);
}

.chat-card-btn.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 78, 80, 0.3);
}

.chat-card-btn.secondary-btn {
  background-color: var(--surface-card);
  color: var(--text-charcoal);
  border: 1px solid var(--border-sand);
}

.chat-card-btn.secondary-btn:hover {
  background-color: var(--bg-mist);
  border-color: var(--text-charcoal);
}

/* Chat Cart Summary (backend chat) */
.chat-cart-summary {
  background-color: var(--bg-mist);
  border: 1px solid var(--border-sand);
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
}

.chat-cart-summary ul {
  list-style: none;
  padding: 0;
  margin: 6px 0;
}

.chat-cart-summary ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 3px 0;
}

/* =============================================
   CHAT WIDGET — RESPONSIVE / MOBILE
   ============================================= */

/* Tablets & small laptops */
@media (max-width: 768px) {
  .chat-widget-container {
    bottom: 16px;
    right: 16px;
  }

  .chat-toggle-btn {
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .chat-window {
    width: 340px;
    height: 480px;
    bottom: 70px;
  }

  .chat-options-grid {
    max-height: 160px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 15px;
  }

  .chat-opt-btn {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .chat-message {
    max-width: 88%;
    font-size: 0.9rem;
  }

  .chat-product-img {
    height: 90px;
  }

  .chat-product-pitch {
    font-size: 0.75rem;
  }

  .chat-product-actions {
    flex-direction: column;
    gap: 6px;
  }
}

/* Phones — full-screen takeover */
@media (max-width: 480px) {
  .chat-widget-container {
    bottom: 12px;
    right: 12px;
    left: auto;
  }

  /* Collapse toggle to icon-only on very small screens */
  .chat-toggle-btn {
    padding: 14px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .chat-toggle-text {
    display: none;
  }

  .chat-icon-avatar {
    font-size: 1.6rem;
    margin: 0;
  }

  .chat-badge-pulse {
    top: -1px;
    right: -1px;
    width: 10px;
    height: 10px;
  }

  /* Full-screen chat window */
  .chat-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    z-index: 10001;
  }

  .chat-header {
    padding: 16px;
    border-radius: 0;
  }

  .chat-header-avatar {
    font-size: 1.6rem;
    margin-right: 10px;
  }

  .chat-header .pm-h4 {
    font-size: 0.95rem;
  }

  .chat-close-btn {
    font-size: 2rem;
    padding: 4px 8px;
  }

  .chat-body {
    padding: 14px;
    gap: 12px;
  }

  .chat-message {
    max-width: 92%;
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  /* Scrollable quick-option buttons so they don't push input off-screen */
  .chat-options-grid {
    max-height: 140px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 14px;
    gap: 6px;
  }

  .chat-opt-btn {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  /* Input bar */
  .chat-input-container {
    padding: 10px 12px;
    gap: 8px;
  }

  #chat-user-input {
    font-size: 1rem;
    padding: 10px 14px;
  }

  #chat-submit-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  /* Product cards inside messages */
  .chat-product-card {
    border-radius: 10px;
  }

  .chat-product-img {
    height: 100px;
  }

  .chat-product-info {
    padding: 8px;
  }

  .chat-product-name {
    font-size: 0.88rem;
  }

  .chat-product-price {
    font-size: 0.8rem;
  }

  .chat-product-pitch {
    font-size: 0.72rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .chat-product-actions {
    flex-direction: column;
    gap: 6px;
  }

  .chat-card-btn {
    padding: 10px 8px;
    font-size: 0.78rem;
  }

  /* Footer */
  .chat-footer {
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  /* Cart summary in backend chat replies */
  .chat-cart-summary {
    padding: 10px;
  }

  .chat-cart-summary ul li {
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   CUSTOMER ACCOUNT PORTAL & MODALS STYLING
   ========================================================================== */

/* Auth Modal Specifics */
.auth-card {
  max-width: 440px !important;
  padding: 35px 30px !important;
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--border-sand);
  margin-bottom: 25px;
}

.auth-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 12px;
  font-family: var(--font-summer);
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-gray);
  cursor: pointer;
  position: relative;
  transition: var(--transition-smooth);
}

.auth-tab-btn:hover {
  color: var(--primary-coral);
}

.auth-tab-btn.active {
  color: var(--primary-coral);
}

.auth-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-coral);
  border-radius: 3px;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.auth-helper-text {
  font-size: 0.85rem;
}

.auth-feedback-msg {
  padding: 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  animation: fadeIn 0.3s ease;
}

.auth-feedback-msg.error {
  background-color: rgba(230, 57, 70, 0.1);
  color: #e63946;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.auth-feedback-msg.success {
  background-color: rgba(6, 214, 160, 0.1);
  color: #05c08f;
  border: 1px solid rgba(6, 214, 160, 0.2);
}

/* Sliding Account Drawer Overlay */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(43, 58, 66, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: flex-end;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-card {
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background-color: var(--bg-sand);
  border-left: 1px solid var(--border-sand);
  box-shadow: -10px 0 30px rgba(43, 58, 66, 0.1);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active .drawer-card {
  transform: translateX(0);
}

.drawer-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-gray);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition-smooth);
}

.drawer-close-btn:hover {
  color: var(--primary-coral);
}

.drawer-tabs {
  display: flex;
  background-color: var(--bg-mist);
  border-bottom: 1px solid var(--border-sand);
}

.drawer-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 10px;
  font-family: var(--font-summer);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
  border-bottom: 2px solid transparent;
}

.drawer-tab-btn:hover {
  color: var(--primary-coral);
}

.drawer-tab-btn.active {
  color: var(--primary-coral);
  background-color: var(--surface-card);
  border-bottom-color: var(--primary-coral);
}

.drawer-body {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.drawer-tab-content {
  display: none;
}

.drawer-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Saved Orders Card Styling */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.order-item-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 10px;
  padding: 15px;
  box-shadow: var(--shadow-light);
}

.order-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.order-id {
  font-weight: 800;
  color: var(--primary-coral);
}

.order-date {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.order-details {
  font-size: 0.85rem;
  color: var(--text-charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.order-price-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--border-sand);
  padding-top: 10px;
}

.order-total {
  font-weight: 800;
  color: var(--text-charcoal);
  font-size: 0.95rem;
}

.badge-success {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  background-color: rgba(6, 214, 160, 0.1);
  color: #05c08f;
  padding: 3px 8px;
  border-radius: 4px;
}

.badge-warning {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  background-color: rgba(255, 179, 0, 0.1);
  color: #ffb300;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Upload Dropzone Container */
.upload-dropzone {
  border: 2px dashed var(--border-sand);
  background-color: var(--surface-card);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--primary-coral);
  background-color: rgba(255, 78, 80, 0.02);
}

.upload-text {
  display: block;
  font-size: 0.85rem;
  color: var(--text-charcoal);
}

.uploaded-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  padding: 10px 15px;
  margin-top: 10px;
  box-shadow: var(--shadow-light);
  animation: fadeIn 0.3s ease;
}

.file-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.file-name {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-charcoal);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drawer-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--border-sand);
  background-color: var(--bg-mist);
}

/* ==========================================================================
   SELF-SERVICE ORDER KIOSK STYLING (New!)
   ========================================================================== */

.kiosk-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.kiosk-header {
  height: 75px;
  background-color: var(--surface-card);
  border-bottom: 1px solid var(--border-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(43, 58, 66, 0.05);
}

.kiosk-body button:focus-visible,
.kiosk-body a:focus-visible,
.kiosk-body input:focus-visible {
  outline: 3px solid rgba(17, 138, 178, 0.35);
  outline-offset: 2px;
}

.kiosk-header-left, .kiosk-header-right {
  display: flex;
  align-items: center;
}

.back-home-btn {
  font-family: var(--font-summer);
  font-weight: 700;
  border-radius: 30px;
}

.kiosk-logo-icon {
  font-size: 1.8rem;
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.kiosk-main-container {
  display: flex;
  flex: 1;
  height: calc(100vh - 75px);
  overflow: hidden;
}

/* Left Sidebar Categories */
.kiosk-sidebar {
  width: 132px;
  background-color: var(--surface-card);
  border-right: 1px solid var(--border-sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 10px;
  overflow-y: auto;
}

.kiosk-category-btn {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--bg-sand);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.kiosk-category-btn:hover {
  border-color: var(--primary-coral);
  background-color: var(--primary-coral-light);
  transform: translateY(-2px);
}

.kiosk-category-btn.active {
  background: var(--primary-coral);
  border-color: var(--primary-coral);
  box-shadow: 0 8px 20px rgba(255, 78, 80, 0.25);
}

.kiosk-category-btn .category-icon {
  font-size: 1.55rem;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.kiosk-category-btn:hover .category-icon {
  transform: scale(1.15) rotate(5deg);
}

.kiosk-category-btn.active .category-icon {
  transform: scale(1.1);
}

.kiosk-category-btn .category-name {
  font-family: var(--font-summer);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  color: var(--text-charcoal);
  line-height: 1.2;
}

.kiosk-category-btn.active .category-name {
  color: white;
}

/* Center Product Grid */
.kiosk-products-container {
  flex: 1;
  background-color: var(--bg-sand);
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.kiosk-section-header {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.kiosk-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}

.kiosk-product-card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.kiosk-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-coral);
}

.kiosk-product-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background-color: #f7f7f7;
}

.kiosk-product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kiosk-product-card:hover .kiosk-product-img-wrapper img {
  transform: scale(1.08);
}

.kiosk-product-placeholder,
.modifier-product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff8ed 0%, #eefaf7 100%);
  color: var(--text-charcoal);
  text-align: center;
  border: 1px solid rgba(43, 58, 66, 0.06);
}

.kiosk-product-placeholder .placeholder-icon,
.modifier-product-placeholder .placeholder-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--surface-card);
  box-shadow: var(--shadow-light);
  font-size: 1.45rem;
  line-height: 1;
}

.kiosk-product-placeholder .placeholder-label,
.modifier-product-placeholder .placeholder-label {
  max-width: 86%;
  color: var(--text-gray);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kiosk-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--primary-coral);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.kiosk-product-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kiosk-product-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-charcoal);
  margin-bottom: 6px;
}

.kiosk-product-description {
  font-size: 0.8rem;
  color: var(--text-gray);
  line-height: 1.4;
  margin-bottom: 15px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kiosk-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.kiosk-product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ocean-teal);
}

.kiosk-add-btn {
  background-color: var(--primary-coral-light);
  color: var(--primary-coral);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.kiosk-product-card:hover .kiosk-add-btn {
  background-color: var(--primary-coral);
  color: white;
  transform: scale(1.1);
}

/* Right Cart Sidebar */
.kiosk-cart-sidebar {
  width: 360px;
  background-color: var(--surface-card);
  border-left: 1px solid var(--border-sand);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kiosk-cart-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-sand);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-sand);
}

.kiosk-cart-count {
  background-color: var(--primary-coral-light);
  color: var(--primary-coral);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
}

.kiosk-cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.empty-cart-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0.7;
}

.kiosk-cart-item {
  background-color: var(--bg-sand);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.kiosk-cart-item-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.kiosk-cart-item-details {
  flex: 1;
  padding-right: 15px;
}

.kiosk-cart-item-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-charcoal);
  margin-bottom: 3px;
}

.kiosk-cart-item-modifiers {
  font-size: 0.75rem;
  color: var(--text-gray);
  line-height: 1.3;
  font-style: italic;
}

.kiosk-cart-item-price {
  font-weight: 800;
  color: var(--ocean-teal);
  font-size: 0.95rem;
}

.kiosk-cart-item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.kiosk-qty-controls {
  display: flex;
  align-items: center;
  background-color: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 20px;
  padding: 2px;
}

.kiosk-qty-btn {
  background: none;
  border: none;
  width: 26px;
  height: 26px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: var(--transition-smooth);
}

.kiosk-qty-btn:hover {
  color: var(--primary-coral);
}

.kiosk-qty-val {
  font-weight: 800;
  font-size: 0.9rem;
  width: 25px;
  text-align: center;
  color: var(--text-charcoal);
}

.kiosk-item-delete {
  background: none;
  border: none;
  color: #ff4e50;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px;
  transition: var(--transition-smooth);
}

.kiosk-item-delete:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.kiosk-cart-summary {
  padding: 20px 22px;
  border-top: 1px solid var(--border-sand);
  background-color: var(--bg-sand);
}

.kiosk-cart-summary .summary-row {
  border-bottom: none;
  padding: 6px 0;
}

.kiosk-cart-summary .summary-row span {
  font-weight: 700;
}

/* Kiosk virtual menu assistant */
.kiosk-assistant-panel {
  position: fixed;
  right: calc(360px + 24px);
  bottom: 24px;
  z-index: 1200;
  font-family: var(--font-main);
}

.kiosk-assistant-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(35, 42, 50, 0.14);
  border-radius: 8px;
  background: var(--charcoal-primary);
  color: white;
  box-shadow: 0 14px 35px rgba(35, 42, 50, 0.22);
  font-weight: 900;
  cursor: pointer;
}

.assistant-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-coral);
  color: white;
}

.kiosk-assistant-window {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: min(390px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 120px));
  display: none;
  grid-template-rows: auto minmax(180px, 1fr) auto auto;
  border: 1px solid rgba(35, 42, 50, 0.14);
  border-radius: 8px;
  background: var(--surface-card);
  box-shadow: 0 22px 60px rgba(35, 42, 50, 0.26);
  overflow: hidden;
}

.kiosk-assistant-panel.active .kiosk-assistant-window {
  display: grid;
}

.kiosk-assistant-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  background: var(--surface-card);
  border-bottom: 1px solid var(--border-sand);
}

.kiosk-assistant-header h3 {
  margin: 0;
  color: var(--charcoal-primary);
  font-size: 1.05rem;
  font-weight: 900;
}

.kiosk-assistant-header p {
  margin: 3px 0 0;
  color: var(--text-gray);
  font-size: 0.78rem;
  line-height: 1.35;
}

.kiosk-assistant-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  background: var(--bg-sand);
  color: var(--charcoal-primary);
  font-size: 1.35rem;
  cursor: pointer;
}

.kiosk-assistant-body {
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.assistant-msg {
  width: fit-content;
  max-width: 94%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.42;
}

.assistant-msg.assistant {
  align-self: flex-start;
  background: var(--surface-card);
  color: var(--charcoal-primary);
  border: 1px solid var(--border-sand);
}

.assistant-msg.customer {
  align-self: flex-end;
  background: var(--primary-coral);
  color: white;
  font-weight: 800;
}

.assistant-msg.typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 13px 14px;
}

.assistant-msg.typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-coral);
  animation: assistantTyping 1s ease-in-out infinite;
}

.assistant-msg.typing span:nth-child(2) { animation-delay: .15s; }
.assistant-msg.typing span:nth-child(3) { animation-delay: .3s; }

@keyframes assistantTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-4px); opacity: 1; }
}

.assistant-menu-results {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.assistant-menu-card {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  background: var(--bg-sand);
  color: var(--charcoal-primary);
  text-align: left;
  cursor: pointer;
}

.assistant-menu-card strong,
.assistant-menu-card small {
  display: block;
}

.assistant-menu-card small {
  margin-top: 3px;
  color: var(--text-gray);
  font-size: 0.76rem;
}

.assistant-menu-card b {
  color: var(--primary-coral);
  font-size: 0.78rem;
  white-space: nowrap;
}

.kiosk-assistant-prompts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-card);
  border-top: 1px solid var(--border-sand);
}

.kiosk-assistant-prompts button {
  min-height: 40px;
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  background: var(--bg-sand);
  color: var(--charcoal-primary);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.kiosk-assistant-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px 16px 16px;
  background: var(--surface-card);
}

.kiosk-assistant-input input {
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--charcoal-primary);
  font-weight: 700;
}

.kiosk-assistant-input button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--ocean-teal);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.kiosk-cart-summary .total-row span {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-charcoal);
}

.checkout-pay-btn {
  background: var(--ocean-teal);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(6, 214, 160, 0.3);
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
}

#mock-payment-form.is-processing {
  opacity: 0.35;
  pointer-events: none;
}

.checkout-pay-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(6, 214, 160, 0.4);
}

.checkout-pay-btn:disabled {
  background: var(--border-sand);
  color: var(--text-gray);
  box-shadow: none;
  cursor: not-allowed;
}

/* Modifier Modal Options */
.modifier-card {
  overflow: hidden;
}

.modifier-product-header {
  display: flex;
  background-color: var(--bg-mist);
  border-bottom: 1px solid var(--border-sand);
  align-items: center;
}

.modifier-img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  border-right: 1px solid var(--border-sand);
}

.modifier-product-placeholder {
  width: 130px;
  height: 100px;
  flex: 0 0 130px;
  border-width: 0 1px 0 0;
  border-color: var(--border-sand);
  border-style: solid;
}

.modifier-product-placeholder .placeholder-icon {
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
}

.modifier-product-placeholder .placeholder-label {
  font-size: 0.62rem;
}

.modifier-group {
  margin-top: 20px;
}

.modifier-group-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-charcoal);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.modifier-group-subtitle {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 600;
}

/* Premium Modifier Selection Inputs (Tappable Buttons) */
.modifier-options-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.modifier-btn-label {
  border: 2px solid var(--border-sand);
  background-color: var(--surface-card);
  border-radius: var(--radius-summer);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition-smooth);
  user-select: none;
}

.modifier-btn-label:hover {
  border-color: var(--primary-coral);
  background-color: var(--primary-coral-light);
}

.modifier-btn-label input {
  display: none;
}

.modifier-btn-label.selected {
  border-color: var(--primary-coral);
  background-color: var(--primary-coral-light);
  box-shadow: 0 4px 10px rgba(255, 78, 80, 0.1);
}

.modifier-btn-label .option-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-charcoal);
}

.modifier-btn-label.selected .option-name {
  color: var(--primary-coral);
}

.modifier-btn-label .option-addon {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ocean-teal);
}

.modifier-btn-label.selected .option-addon {
  color: var(--ocean-teal-hover);
}

.chat-cart-summary {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(5, 150, 160, 0.18);
  border-radius: 8px;
  background: rgba(5, 150, 160, 0.06);
}

.chat-cart-summary ul {
  list-style: none;
  margin: 8px 0;
  padding: 0;
}

.chat-cart-summary li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  font-size: 0.85rem;
}

.chat-cart-total {
  margin: 8px 0 10px;
  font-weight: 800;
  color: var(--text-charcoal);
}

/* Spinner Animation for Transaction Loading */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Media Queries for Mobile Kiosk View */
@media (max-width: 900px) {
  .kiosk-header {
    height: 72px;
    padding: 8px 12px;
    overflow: hidden;
  }

  .kiosk-brand h1 {
    display: none !important;
  }

  .kiosk-logo-icon {
    font-size: 1.35rem;
  }

  .back-home-btn {
    padding: 8px 11px !important;
    font-size: 0.78rem !important;
  }

  .kiosk-main-container {
    flex-direction: column;
    height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .kiosk-sidebar {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    aspect-ratio: auto;
    padding: 10px 12px;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid var(--border-sand);
  }
  .kiosk-category-btn {
    width: 100%;
    min-height: 48px;
    aspect-ratio: auto;
    flex-direction: column;
    gap: 4px;
    padding: 7px 5px;
  }
  .kiosk-category-btn .category-icon {
    min-width: 0;
    width: auto;
    height: 20px;
    font-size: 1rem;
    margin-bottom: 0;
  }
  .kiosk-category-btn .category-name {
    font-size: 0.62rem;
  }
  .kiosk-products-container {
    height: auto;
    overflow-y: visible;
    padding: 16px;
  }
  .kiosk-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .kiosk-product-info {
    padding: 12px;
  }
  .kiosk-product-name {
    font-size: 0.9rem;
  }
  .kiosk-cart-sidebar {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--border-sand);
    height: auto;
  }
  .kiosk-cart-items-list {
    max-height: 250px;
  }
  .kiosk-assistant-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .kiosk-assistant-toggle {
    width: 100%;
    justify-content: center;
  }
  .kiosk-assistant-window {
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(560px, calc(100vh - 110px));
  }
  .kiosk-assistant-prompts {
    grid-template-columns: 1fr;
  }
}

/* Kiosk modal safety: keep modifier controls inside the viewport after scrolling. */
.kiosk-body #modifier-modal.active {
  position: fixed;
  inset: 0;
  height: 100dvh;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 0;
  overflow-y: auto;
}

.kiosk-body #modifier-modal.active .modifier-card {
  max-height: calc(100dvh - 36px);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: none;
}

.kiosk-body #modifier-modal .modifier-body {
  overflow-y: auto;
}

.kiosk-body #modifier-modal .modal-close-btn {
  position: sticky;
  top: 10px;
  margin-left: auto;
  margin-right: 16px;
  align-self: flex-end;
  z-index: 20;
}

/* ==========================================================================
   KIOSK DELIVERY ORDER TYPE TOGGLE & ADDRESS FORM
   ========================================================================== */

.hidden { display: none !important; }

.kiosk-order-type-section {
  padding: 14px 16px 0;
  border-top: 1px solid var(--border-sand);
  background-color: var(--bg-sand);
}

.order-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.order-type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 10px;
  border: 2px solid var(--border-sand);
  border-radius: 10px;
  background: var(--surface-card);
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-summer);
}

.order-type-btn:hover {
  border-color: var(--primary-coral);
  background-color: var(--primary-coral-light);
}

.order-type-btn.active {
  border-color: var(--primary-coral);
  background: linear-gradient(135deg, rgba(255, 78, 80, 0.08) 0%, rgba(255, 78, 80, 0.02) 100%);
  box-shadow: 0 4px 12px rgba(255, 78, 80, 0.12);
}

.order-type-icon {
  font-size: 1.2rem;
}

.order-type-label {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-charcoal);
}

.order-type-btn.active .order-type-label {
  color: var(--primary-coral);
}

/* Beach delivery banner */
.beach-delivery-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.12) 0%, rgba(6, 214, 160, 0.08) 100%);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 10px;
  margin-bottom: 14px;
  animation: fadeIn 0.3s ease;
}

.beach-delivery-banner .beach-icon {
  font-size: 1.5rem;
}

.beach-delivery-banner strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-charcoal);
  font-weight: 800;
}

.beach-delivery-banner p {
  margin: 2px 0 0;
  font-size: 0.75rem;
  color: var(--text-gray);
}

/* Delivery address form */
.delivery-address-form {
  animation: fadeIn 0.3s ease;
  margin-bottom: 8px;
}

.delivery-address-form .form-control {
  border-width: 1px;
}

.delivery-estimate-result {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  animation: fadeIn 0.3s ease;
}

.delivery-estimate-result.success {
  background-color: rgba(6, 214, 160, 0.08);
  border: 1px solid rgba(6, 214, 160, 0.25);
  color: #05c08f;
}

.delivery-estimate-result.error {
  background-color: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.25);
  color: #e63946;
}

.delivery-estimate-result.loading {
  background-color: rgba(17, 138, 178, 0.06);
  border: 1px solid rgba(17, 138, 178, 0.2);
  color: var(--ocean-blue);
  text-align: center;
}

.delivery-estimate-result .est-fee {
  font-weight: 900;
  color: var(--ocean-teal);
}

.delivery-estimate-result .est-time {
  font-weight: 900;
  color: var(--text-charcoal);
}

.delivery-fee-row span:last-child {
  color: var(--ocean-teal) !important;
  font-weight: 800 !important;
}

/* ==========================================================================
   DEDICATED CATERING PAGE
   ========================================================================== */

.catering-page .navbar {
  position: sticky;
}

.section-kicker {
  color: var(--primary-coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.catering-hero {
  background:
    linear-gradient(135deg, var(--hero-wash-strong) 0%, var(--mist-wash) 100%),
    url("assets/catering-trays.svg") right 7% center / 360px auto no-repeat;
  border-bottom: 1px solid var(--border-sand);
  padding: 86px 0 72px;
}

.catering-hero-grid,
.catering-quote-layout,
.catering-planner-layout {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
}

.catering-hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5.25rem);
  letter-spacing: 0;
  margin: 14px 0 20px;
  max-width: 820px;
}

.catering-hero-copy p {
  color: var(--text-gray);
  font-size: 1.22rem;
  max-width: 720px;
}

.catering-hero-media {
  min-height: 520px;
  position: relative;
}

.catering-hero-media img {
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-premium);
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  width: 100%;
}

.catering-hero-card {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  bottom: 28px;
  box-shadow: var(--shadow-medium);
  left: -24px;
  max-width: 280px;
  padding: 18px;
  position: absolute;
}

.catering-hero-card strong,
.catering-hero-card span {
  display: block;
}

.catering-hero-card span {
  color: var(--text-gray);
  font-size: 0.92rem;
  margin-top: 4px;
}

.catering-event-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catering-event-card {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  padding: 28px;
}

.catering-event-card span {
  color: var(--ocean-blue);
  font-weight: 900;
  text-transform: uppercase;
}

.catering-event-card h3 {
  margin: 10px 0;
}

.catering-event-card p {
  color: var(--text-gray);
}

.catering-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.catering-tab {
  background: var(--surface-card);
  border: 2px solid var(--border-sand);
  border-radius: 8px;
  color: var(--text-charcoal);
  cursor: pointer;
  font-family: var(--font-summer);
  font-weight: 900;
  padding: 12px 18px;
  transition: var(--transition-smooth);
}

.catering-tab.active,
.catering-tab:hover {
  background: var(--primary-coral);
  border-color: var(--primary-coral);
  color: #fff;
}

.catering-menu-panel {
  display: none;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.catering-menu-panel.active {
  display: grid;
}

.catering-menu-panel article {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.catering-menu-panel img {
  aspect-ratio: 16 / 9;
  background: var(--bg-sand);
  object-fit: cover;
  width: 100%;
}

.catering-menu-panel h3,
.catering-menu-panel p,
.catering-menu-panel strong {
  display: block;
  margin-left: 22px;
  margin-right: 22px;
}

.catering-menu-panel h3 {
  margin-top: 22px;
}

.catering-menu-panel p {
  color: var(--text-gray);
  margin-top: 10px;
}

.catering-menu-panel strong {
  color: var(--ocean-blue);
  margin-bottom: 24px;
  margin-top: 16px;
}

.catering-page-planner {
  background: var(--surface-card);
  border-radius: 8px;
}

.catering-plan-total {
  align-items: center;
  background: var(--bg-mist);
  border: 1px solid rgba(17, 138, 178, 0.14);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
  padding: 14px 16px;
}

.catering-plan-total span {
  color: var(--text-gray);
  font-weight: 700;
}

.catering-plan-total strong {
  color: var(--primary-coral);
  font-size: 1.25rem;
}

.choice-row,
.checkbox-grid {
  display: grid;
  gap: 10px;
}

.choice-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkbox-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-row label,
.checkbox-grid label {
  align-items: center;
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  color: var(--text-charcoal);
  display: flex;
  font-weight: 700;
  gap: 8px;
  padding: 11px 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 30px auto 0;
  max-width: 860px;
}

.faq-list details {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  color: var(--text-gray);
  margin-top: 12px;
}

@media (max-width: 900px) {
  .catering-hero-grid,
  .catering-quote-layout,
  .catering-planner-layout,
  .catering-event-grid,
  .catering-menu-panel.active {
    grid-template-columns: 1fr;
  }

  .catering-hero {
    padding: 54px 0;
  }

  .catering-hero-media {
    min-height: 0;
  }

  .catering-hero-media img {
    min-height: 320px;
  }

  .catering-hero-card {
    bottom: 18px;
    left: 18px;
  }
}

@media (max-width: 560px) {
  .catering-page .nav-actions > .btn {
    display: none;
  }

  .catering-tabs,
  .choice-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .catering-tabs {
    display: grid;
  }

  .catering-hero-copy h1 {
    font-size: 2.45rem;
  }

  .catering-hero-copy p {
    font-size: 1.05rem;
  }
}

/* Nationwide cookie shipping */
.cookie-shipping-body {
  background: var(--bg-cream);
}

.cookie-ship-hero {
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--bg-mist) 100%);
  padding: 72px 0;
}

.cookie-ship-hero-grid,
.shipping-checkout-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: start;
}

.cookie-ship-hero h1 {
  color: var(--text-charcoal);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  margin: 16px 0 22px;
}

.cookie-ship-hero p {
  color: var(--text-gray);
  font-size: 1.08rem;
  max-width: 720px;
}

.cookie-ship-feature,
.cookie-ship-card,
.cookie-customizer-panel,
.cookie-shipping-calculator,
.cookie-cart-panel {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
}

.cookie-ship-feature {
  overflow: hidden;
}

.cookie-ship-feature img {
  display: block;
  height: 310px;
  object-fit: cover;
  width: 100%;
}

.cookie-ship-note {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
}

.cookie-day-section {
  background: #101820;
  color: #fff;
  padding: 44px 0;
}

.cookie-day-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 28px;
  align-items: center;
}

.cookie-day-section h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 12px 0 16px;
}

.cookie-day-section p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 760px;
}

.cookie-day-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-day-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 80% 15%, rgba(255, 209, 102, 0.22), transparent 35%);
}

.cookie-day-card strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1.05;
}

.cookie-day-card span:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-ship-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.cookie-ship-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
}

.cookie-ship-card p {
  color: var(--text-gray);
  flex: 1;
}

.cookie-ship-price {
  color: var(--primary-coral);
  font-size: 1.65rem;
  font-weight: 900;
  margin: 16px 0;
}

.cookie-qty-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.cookie-qty-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43, 58, 66, 0.14);
  border-radius: 6px;
  background: var(--surface-card);
  color: var(--text-charcoal);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
}

.cookie-qty-display {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 6px;
  background: var(--bg-cream);
  color: var(--text-charcoal);
  font-weight: 900;
}

.cookie-customizer-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: 0.7fr 1.3fr;
  margin-top: 24px;
  padding: 28px;
}

.cookie-flavor-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-flavor-grid label,
.shipping-rate-option {
  align-items: center;
  background: var(--bg-cream);
  border: 1px solid var(--border-sand);
  border-radius: 9px;
  display: flex;
  gap: 9px;
  padding: 11px 12px;
}

.cookie-shipping-calculator,
.cookie-cart-panel {
  padding: 28px;
}

.cookie-ship-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-ship-form-grid .btn {
  min-height: 52px;
}

.cookie-cart-panel {
  position: sticky;
  top: 104px;
}

.cookie-cart-items,
.cookie-cart-summary {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.cookie-cart-line,
.cookie-cart-summary > div {
  align-items: flex-start;
  border-bottom: 1px solid var(--border-sand);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 12px;
}

.cookie-cart-line > div {
  display: grid;
  gap: 4px;
}

.cookie-cart-line span,
.cookie-checkout-note {
  color: var(--text-gray);
  font-size: 0.85rem;
}

.cookie-remove-btn {
  background: none;
  border: 0;
  color: var(--primary-coral);
  cursor: pointer;
  font-weight: 800;
  padding: 0;
  text-align: right;
}

.shipping-rate-option {
  cursor: pointer;
  margin-top: 7px;
}

.cookie-policy-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-policy-grid > div {
  background: var(--surface-card);
  border: 1px solid var(--border-sand);
  border-radius: 14px;
  padding: 24px;
}

@media (max-width: 900px) {
  .cookie-ship-hero-grid,
  .shipping-checkout-grid,
  .cookie-customizer-panel,
  .cookie-day-grid {
    grid-template-columns: 1fr;
  }

  .cookie-ship-grid,
  .cookie-policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-cart-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .cookie-ship-grid,
  .cookie-policy-grid,
  .cookie-flavor-grid,
  .cookie-ship-form-grid {
    grid-template-columns: 1fr;
  }

  .cookie-day-actions .btn {
    width: 100%;
  }
}


/* ============================================
   ⚡ ZORRO TECHNOLOGY SECTION STYLES
   ============================================ */

.tech-section {
  background: linear-gradient(180deg, #0d1b2a 0%, #1b2838 40%, #162230 100%);
  color: #e8edf2;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

.tech-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 214, 160, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tech-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 78, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Header */
.tech-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.15), rgba(17, 138, 178, 0.15));
  border: 1px solid rgba(6, 214, 160, 0.3);
  color: var(--ocean-teal);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tech-section .section-title {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.tech-section .lead {
  color: #a0b4c4;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Product Cards Grid */
.tech-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.tech-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-teal), var(--ocean-blue));
  opacity: 0;
  transition: var(--transition-smooth);
}

.tech-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 214, 160, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(6, 214, 160, 0.08);
  background: rgba(255, 255, 255, 0.07);
}

.tech-card:hover::before {
  opacity: 1;
}

/* Featured Card (AI Phone Agent) */
.tech-card-featured {
  border-color: rgba(255, 78, 80, 0.3);
  background: linear-gradient(145deg, rgba(255, 78, 80, 0.08), rgba(255, 255, 255, 0.04));
  grid-row: span 1;
}

.tech-card-featured::before {
  background: var(--verano-sunset);
  opacity: 1;
  height: 4px;
}

.tech-card-featured:hover {
  border-color: rgba(255, 78, 80, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 78, 80, 0.12);
}

.tech-card-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-coral), #ff9f43);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tech-card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(6, 214, 160, 0.3));
}

.tech-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.tech-card-promise {
  color: #8ca3b4;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tech-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.tech-features li {
  color: #c0d0dd;
  font-size: 0.82rem;
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
}

.tech-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ocean-teal);
  font-weight: 700;
  font-size: 0.85rem;
}

.tech-price-band {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.price-label {
  color: #657780;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
}

.price-value small {
  color: #657780;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Bundle Tiers */
.tech-bundles {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.tech-bundles h3 {
  color: #ffffff;
}

.tech-bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px 24px;
  transition: var(--transition-smooth);
  position: relative;
}

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.bundle-tier {
  color: var(--ocean-teal);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.bundle-price {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.bundle-price small {
  color: #657780;
  font-size: 0.75rem;
  font-weight: 500;
}

.bundle-card p {
  color: #8ca3b4;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.bundle-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bundle-card ul li {
  color: #c0d0dd;
  font-size: 0.8rem;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.bundle-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ocean-teal);
  font-weight: 700;
}

/* Pro Bundle - Highlighted */
.bundle-card-pro {
  border-color: rgba(255, 78, 80, 0.4);
  background: linear-gradient(145deg, rgba(255, 78, 80, 0.1), rgba(255, 159, 67, 0.05), rgba(255, 255, 255, 0.04));
  box-shadow: 0 0 30px rgba(255, 78, 80, 0.08);
}

.bundle-card-pro .bundle-tier {
  color: var(--primary-coral);
}

.bundle-card-pro:hover {
  border-color: rgba(255, 78, 80, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 78, 80, 0.12);
}

.bundle-popular {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-coral), #ff9f43);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lead Capture CTA */
.tech-cta {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.tech-cta-content {
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.1), rgba(17, 138, 178, 0.1));
  border: 1px solid rgba(6, 214, 160, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.tech-cta-content h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.tech-cta-content p {
  color: #8ca3b4;
  margin-bottom: 25px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.tech-demo-form {
  max-width: 600px;
  margin: 0 auto;
}

.tech-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.tech-demo-form .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8edf2;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: var(--font-summer);
  transition: var(--transition-smooth);
}

.tech-demo-form .form-control::placeholder {
  color: #657780;
}

.tech-demo-form .form-control:focus {
  outline: none;
  border-color: var(--ocean-teal);
  box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.tech-demo-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23657780' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

.tech-demo-form select.form-control option {
  background: #1b2838;
  color: #e8edf2;
}

/* Disclaimer */
.tech-disclaimer {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.72rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Floating particles animation */
@keyframes tech-float {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.1); opacity: 0.6; }
}

/* Animated Background Elements */
.tech-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.tech-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  mix-blend-mode: screen;
}

.tech-orb-1 {
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--ocean-teal) 0%, transparent 80%);
  animation: tech-float 15s ease-in-out infinite alternate;
}

.tech-orb-2 {
  top: 50%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-coral) 0%, transparent 80%);
  animation: tech-float 20s ease-in-out infinite alternate-reverse;
}

.tech-orb-3 {
  bottom: 10%;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--ocean-blue) 0%, transparent 80%);
  animation: tech-float 18s ease-in-out infinite alternate;
}

.tech-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--ocean-teal);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px var(--ocean-teal);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 15px var(--ocean-teal); }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Proof Stats Bar */
.tech-stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto 60px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.tech-stat {
  text-align: center;
  flex: 1;
}

.tech-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 30%, var(--ocean-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.tech-stat-label {
  font-size: 0.8rem;
  color: #8ca3b4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-stat-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Premium Icon Container */
.tech-card-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  position: relative;
}

.tech-icon-coral {
  background: rgba(255, 78, 80, 0.1);
  border: 1px solid rgba(255, 78, 80, 0.2);
  box-shadow: 0 10px 20px rgba(255, 78, 80, 0.1);
}

.tech-icon-coral span {
  filter: drop-shadow(0 0 8px rgba(255, 78, 80, 0.5));
}

.tech-icon-teal {
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.2);
  box-shadow: 0 10px 20px rgba(6, 214, 160, 0.1);
}

.tech-icon-teal span {
  filter: drop-shadow(0 0 8px rgba(6, 214, 160, 0.5));
}

.tech-icon-blue {
  background: rgba(17, 138, 178, 0.1);
  border: 1px solid rgba(17, 138, 178, 0.2);
  box-shadow: 0 10px 20px rgba(17, 138, 178, 0.1);
}

.tech-icon-blue span {
  filter: drop-shadow(0 0 8px rgba(17, 138, 178, 0.5));
}

.tech-icon-yellow {
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.2);
  box-shadow: 0 10px 20px rgba(255, 209, 102, 0.1);
}

.tech-icon-yellow span {
  filter: drop-shadow(0 0 8px rgba(255, 209, 102, 0.5));
}

/* Shimmer Effect */
.tech-card-shimmer {
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-20deg);
  transition: 0.75s;
  pointer-events: none;
}

.tech-card:hover .tech-card-shimmer {
  left: 150%;
}

/* Section Divider */
.tech-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 80px 0;
  position: relative;
  z-index: 1;
}

.tech-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.tech-divider-text {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #657780;
  background: #1b2838;
  padding: 0 15px;
}

/* Bundle Cards */
.bundle-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.bundle-glow {
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-coral), #ff9f43);
  opacity: 0;
  z-index: -1;
  filter: blur(8px);
  transition: var(--transition-smooth);
}

.bundle-card-pro:hover .bundle-glow {
  opacity: 0.4;
}

/* CTA Icon & Border */
.tech-cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  animation: pulse-icon 3s infinite;
}

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(6, 214, 160, 0.2)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 25px rgba(6, 214, 160, 0.5)); }
}

.tech-cta {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 1px;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.3), rgba(17, 138, 178, 0.3));
  transition: var(--transition-smooth);
}

.tech-cta:hover {
  background: linear-gradient(135deg, var(--ocean-teal), var(--ocean-blue));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(6, 214, 160, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .tech-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-bundles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tech-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tech-section .section-title {
    font-size: 1.8rem;
  }

  .tech-cta-content {
    padding: 25px 20px;
  }

  .tech-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .tech-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .tech-section .section-title {
    font-size: 1.5rem;
  }

  .bundle-price {
    font-size: 1.6rem;
  }
}

/* ==========================================
   INTERACTIVE VOICE AI DIALER WIDGET
   ========================================== */
.zorro-voice-widget {
  max-width: 580px;
  margin: 0 auto 60px;
  position: relative;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.2), rgba(255, 78, 80, 0.2));
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  font-family: var(--font-summer);
}

.zorro-widget-glow::before {
  content: '';
  position: absolute;
  top: -150%; left: -150%;
  width: 400%; height: 400%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 60%, var(--primary-coral) 70%, var(--ocean-teal) 80%, transparent 90%);
  animation: widget-spin 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes widget-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.zorro-widget-card {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
}

.zw-state-content {
  display: none;
  padding: 45px 35px;
  background: #0f1c2b;
  border-radius: 22px;
  color: #e8edf2;
  position: relative;
}

.zw-state-content.active {
  display: block;
  animation: zwFadeIn 0.3s ease-out;
}

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

.zw-cta-header {
  text-align: center;
  margin-bottom: 30px;
}

.zw-badge-top {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--primary-coral);
  background: rgba(255, 78, 80, 0.12);
  border: 1px solid rgba(255, 78, 80, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.zw-cta-header h3 {
  font-size: 1.8rem;
  font-weight: 950;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.2;
}

.zw-cta-header p {
  font-size: 0.92rem;
  color: #8ca3b4;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
}

.zw-cta-wrap {
  text-align: center;
  margin-bottom: 30px;
}

.zw-btn-talk {
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 36px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-coral) 0%, #ff9f43 100%);
  border: none;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(255, 78, 80, 0.3);
  transition: all 0.25s ease;
  text-transform: none;
}

.zw-btn-talk:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 78, 80, 0.45);
  background: linear-gradient(135deg, #e04420 0%, #ff8c00 100%);
}

.zw-phone-icon {
  font-size: 1.2rem;
  animation: shakePhone 2.5s infinite;
}

@keyframes shakePhone {
  0%, 80%, 100% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(12deg); }
  20% { transform: rotate(-10deg); }
  25% { transform: rotate(6deg); }
  30% { transform: rotate(0); }
}

.zw-btn-arrow {
  transition: transform 0.2s ease;
  font-weight: bold;
}

.zw-btn-talk:hover .zw-btn-arrow {
  transform: translateX(4px);
}

.zw-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.8rem;
  color: #657780;
}

.zw-avatars {
  display: flex;
}

.zw-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #121e2b;
  border: 2px solid #0f1c2b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px;
  font-size: 0.9rem;
}

.zw-avatar:first-child {
  margin-left: 0;
}

/* State 2: Cuisine Picker */
.zw-state-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.zw-cuisine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.zw-cuisine-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 20px;
  color: #e8edf2;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.zw-cuisine-btn:hover {
  background: rgba(6, 214, 160, 0.08);
  border-color: var(--ocean-teal);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 214, 160, 0.1);
}

.zw-emoji {
  font-size: 1.4rem;
}

.zw-back-btn {
  background: none;
  border: none;
  color: #657780;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: color 0.2s;
  padding: 8px 16px;
}

.zw-back-btn:hover {
  color: #ffffff;
}

/* State 3: Lead Capture Form */
.zw-form-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #8ca3b4;
  margin-bottom: 15px;
  line-height: 1.4;
}

.zw-chosen-badge {
  display: block;
  margin: 0 auto 24px;
  width: fit-content;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--ocean-teal);
  background: rgba(6, 214, 160, 0.1);
  border: 1px solid rgba(6, 214, 160, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.zw-lead-form {
  max-width: 440px;
  margin: 0 auto 20px;
}

.zw-lead-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.zw-lead-form .form-control:focus {
  border-color: var(--ocean-teal);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.15);
}

.zw-submit-btn {
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(255, 78, 80, 0.2);
}

/* State 4: Phone Simulator Screen */
.phone-frame {
  background: #09121d;
  border: 8px solid #1f2e3e;
  border-radius: 36px;
  padding: 24px;
  height: 520px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: inset 0 0 25px rgba(0,0,0,0.8), 0 20px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 800;
  color: #4a5f70;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-call-info {
  text-align: center;
  margin-bottom: 12px;
}

.caller-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.call-status {
  font-size: 0.72rem;
  color: var(--ocean-teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Siri Wave Animation */
.pulse-wave-container {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pulse-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 30px;
  width: 100px;
}

.wave {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--ocean-teal);
  animation: voiceWaveAnimation 1.2s ease-in-out infinite;
}

.wave-1 { animation-delay: 0.1s; }
.wave-2 { animation-delay: 0.3s; height: 16px; }
.wave-3 { animation-delay: 0.5s; }

@keyframes voiceWaveAnimation {
  0%, 100% { height: 8px; opacity: 0.4; }
  50% { height: 26px; opacity: 1; box-shadow: 0 0 10px rgba(6, 214, 160, 0.4); }
}

/* Transcript Area */
.phone-transcript-wrapper {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  margin-bottom: 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}

/* Custom scrollbar for transcript */
.phone-transcript-wrapper::-webkit-scrollbar {
  width: 4px;
}
.phone-transcript-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.45;
  animation: slideBubbleAnimation 0.25s ease-out;
}

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

.chat-bubble.ai {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border-left: 2px solid var(--ocean-teal);
}

.chat-bubble.user {
  background: var(--ocean-blue);
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble.system {
  background: none;
  color: #4a5f70;
  font-size: 0.65rem;
  font-weight: 850;
  align-self: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-align: center;
  padding: 2px 0;
}

/* Phone options panel */
.phone-options-panel {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 20px;
}

.phone-options-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #4a5f70;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
  text-align: center;
}

.phone-options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 130px;
  overflow-y: auto;
}

.phone-option-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.phone-option-btn:hover {
  background: rgba(6, 214, 160, 0.12);
  border-color: var(--ocean-teal);
  transform: translateX(2px);
}

/* Phone controls */
.phone-controls {
  display: flex;
  justify-content: center;
  margin-top: auto;
}

.btn-hangup {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e63946;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.35);
}

.btn-hangup:hover {
  background: #d62828;
  transform: scale(1.08);
}

.hangup-icon {
  font-size: 1.15rem;
  transform: rotate(135deg);
  display: inline-block;
}

@media (max-width: 480px) {
  .zorro-voice-widget {
    margin-bottom: 40px;
  }
  .zw-state-content {
    padding: 30px 20px;
  }
  .zw-cuisine-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .zw-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .phone-frame {
    height: 480px;
    padding: 16px;
  }
}


/* ══════════════════════════════════════════════════════
   Dark theme (coastal-night) — OPT-IN PER PAGE.
   styles.css is shared by ~20 marketing pages, most of which still have
   hardcoded light inline styles. Dark only activates on pages whose <html>
   tag carries data-theme-capable (audited pages: index.html). To make
   another page dark-capable: audit its inline styles, then add the
   attribute and the theme <head> snippet (see index.html).
   Two selection paths, same values — keep both blocks identical:
   1. explicit user choice: data-theme="dark" (set by the head snippet);
   2. system mode: OS prefers dark and no explicit "light" choice.
══════════════════════════════════════════════════════ */
:root[data-theme-capable][data-theme="dark"] {
  --ocean-teal: #3cb8de;
  --ocean-teal-hover: #5ecbe8;
  --ocean-teal-light: rgba(60, 184, 222, 0.14);
  --teal-accent: #3cb8de;
  --ocean-blue: #3cb8de;
  --primary-coral-light: rgba(255, 78, 80, 0.16);
  --bg-sand: #12181c;
  --bg-mist: #1a242a;
  --text-charcoal: #e6edf0;
  --text-gray: #9db0ba;
  --border-sand: #2c3941;
  --surface-card: #1a2228;
  --surface-glass: rgba(18, 24, 28, 0.92);
  --footer-bg: #10181d;
  --btn-teal: #118ab2;
  --btn-teal-hover: #0e7397;
  --hero-wash-strong: rgba(18, 24, 28, 0.92);
  --hero-wash-mid: rgba(18, 24, 28, 0.74);
  --hero-wash-faint: rgba(18, 24, 28, 0.12);
  --mist-wash: rgba(26, 36, 42, 0.9);
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.25);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.35);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root[data-theme-capable]:not([data-theme="light"]) {
    --ocean-teal: #3cb8de;
    --ocean-teal-hover: #5ecbe8;
    --ocean-teal-light: rgba(60, 184, 222, 0.14);
    --teal-accent: #3cb8de;
    --ocean-blue: #3cb8de;
    --primary-coral-light: rgba(255, 78, 80, 0.16);
    --bg-sand: #12181c;
    --bg-mist: #1a242a;
    --text-charcoal: #e6edf0;
    --text-gray: #9db0ba;
    --border-sand: #2c3941;
    --surface-card: #1a2228;
    --surface-glass: rgba(18, 24, 28, 0.92);
    --footer-bg: #10181d;
    --btn-teal: #118ab2;
    --btn-teal-hover: #0e7397;
    --hero-wash-strong: rgba(18, 24, 28, 0.92);
    --hero-wash-mid: rgba(18, 24, 28, 0.74);
    --hero-wash-faint: rgba(18, 24, 28, 0.12);
    --mist-wash: rgba(26, 36, 42, 0.9);
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.25);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.35);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    color-scheme: dark;
  }
}

/* Theme toggle pill (navbar) — used by pages with the theme snippet */
.theme-toggle {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border-sand);
  background: var(--bg-mist);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}
.theme-toggle:hover { border-color: var(--ocean-teal); }


/* ── Skip link (WCAG 2.4.1 Bypass Blocks) ───────────────────────────────────
   Website certifier WEB-P1-7, 2026-07-24: no page offered a way past the nav,
   so a keyboard or screen-reader customer tabbed through every header control
   on every page before reaching the food. Hidden until focused — sighted mouse
   users never see it; never display:none, which would hide it from focus too. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 100000;
  padding: 12px 18px;
  background: var(--primary-coral, #ff4e50);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 0 0 10px 10px;
  transition: top 0.15s ease-in-out;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--ocean-teal, #118ab2);
  outline-offset: 2px;
}
/* The jump target must not draw a focus ring when it receives programmatic
   focus — the visible result should just be the page scrolled to content. */
#main:focus {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}
