/* ==========================================================================
   Susi Pizza — Brand CSS Variables
   ========================================================================== */
:root {
  --susi-orange: #FF7A1A;
  --susi-orange-dark: #E85D00;
  --susi-orange-light: #FFE9D6;
  --susi-black: #141414;
  --susi-black-soft: #1F1F1F;
  --susi-green: #5C8A3A;
  --susi-cream: #FFF8F1;
  --susi-white: #FFFFFF;
  --susi-gray: #6B6B6B;
  --susi-gray-light: #E8E6E2;
  --susi-text: #1A1A1A;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-soft: 0 6px 24px rgba(20, 20, 20, 0.08);
  --shadow-card: 0 10px 30px rgba(20, 20, 20, 0.10);

  --header-height: 92px;
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--susi-text);
  background: var(--susi-white);
  padding-top: var(--header-height);
}

h1, h2, h3, .section-title, .brand-word {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: -0.01em;
}

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

.rounded-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  width: 100%;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-brand-primary {
  background: var(--susi-orange);
  border: 2px solid var(--susi-orange);
  color: var(--susi-white);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.6rem;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.35);
}
.btn-brand-primary:hover, .btn-brand-primary:focus {
  background: var(--susi-orange-dark);
  border-color: var(--susi-orange-dark);
  color: var(--susi-white);
  transform: translateY(-2px);
}
.btn-brand-primary:disabled {
  opacity: .6;
  box-shadow: none;
  transform: none;
}

.btn-brand-outline {
  background: transparent;
  border: 2px solid var(--susi-black);
  color: var(--susi-black);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.68rem 1.6rem;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-brand-outline:hover {
  background: var(--susi-black);
  color: var(--susi-white);
  transform: translateY(-2px);
}

.btn-brand-light {
  background: var(--susi-white);
  color: var(--susi-black);
  border: none;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.6rem;
  transition: transform .15s ease;
}
.btn-brand-light:hover { transform: translateY(-2px); color: var(--susi-black); }

.text-brand-primary { color: var(--susi-orange); }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  z-index: 1030;
  transition: box-shadow .2s ease, background .2s ease;
  display: flex;
  align-items: center;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }

.brand-logo { border-radius: 50%; }
.brand-word { font-weight: 700; font-size: 1.15rem; color: var(--susi-black); }
.brand-word em { color: var(--susi-orange); font-style: normal; }

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--susi-text);
  padding: 0.85rem 2.1rem;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background .15s ease, color .15s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--susi-orange-light);
  color: var(--susi-orange-dark);
}

.navbar-toggler {
  border: none;
  background: var(--susi-cream);
  border-radius: 50%;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px var(--susi-orange-light); }

.mobile-nav .navbar-nav { gap: .35rem; }
.mobile-nav .nav-link {
  font-weight: 600;
  font-size: 1.05rem;
  padding: .85rem 1.1rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Section spacing / headings
   ========================================================================== */
section { padding: 4rem 0; }
@media (max-width: 767.98px) { section { padding: 2.75rem 0; } }

.section-heading { margin-bottom: 2.5rem; }
.section-eyebrow {
  display: inline-block;
  color: var(--susi-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  margin-bottom: .5rem;
}
.section-title { font-weight: 800; font-size: 2rem; margin-bottom: .5rem; }
.section-subtext { color: var(--susi-gray); font-size: 1.05rem; }
.bg-tint { background: var(--susi-cream); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
  background: linear-gradient(180deg, var(--susi-cream) 0%, var(--susi-white) 100%);
  padding-top: 3rem;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-subtext { color: var(--susi-gray); font-size: 1.1rem; margin-bottom: 1.75rem; }
.hero-franchise-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  font-weight: 600;
  color: var(--susi-green);
  text-decoration: none;
}
.hero-franchise-link:hover { text-decoration: underline; }

.service-badges { margin: 0 0 1.75rem; padding: 0; }
.service-badges li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
}
.service-badges i { color: var(--susi-orange); font-size: 1rem; }
.page-hero .service-badges { margin-top: 1.25rem; margin-bottom: 0; }
.hero-media { position: relative; }
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Full-screen video overlay hero (home page) */
.hero-video-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: calc(100dvh - var(--header-height));
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: var(--susi-black);
}
.hero-video-section .container { position: relative; z-index: 2; }
.hero-video-section .hero-title,
.hero-video-section .hero-subtext { color: var(--susi-white); }
.hero-video-section .hero-subtext { color: rgba(255, 255, 255, 0.85); }

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.7) 100%);
}

/* Video-backed inner page hero (order page) */
.page-hero-video { position: relative; overflow: hidden; }
.page-hero-video .container { position: relative; z-index: 2; }

@media (max-width: 767.98px) {
  .hero-video-section { min-height: 70vh; }
}

/* ==========================================================================
   Categories (horizontal scroll)
   ========================================================================== */
.categories-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.categories-scroll::-webkit-scrollbar { height: 6px; }
.categories-scroll::-webkit-scrollbar-thumb { background: var(--susi-gray-light); border-radius: 10px; }

.category-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 128px;
  background: var(--susi-cream);
  border-radius: var(--radius-md);
  padding: 1.25rem .75rem;
  text-align: center;
  text-decoration: none;
  color: var(--susi-text);
  transition: transform .15s ease, box-shadow .15s ease;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); color: var(--susi-text); }
.category-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--susi-orange);
  color: var(--susi-white);
  font-size: 1.5rem;
  margin-bottom: .6rem;
}
.category-name { display: block; font-weight: 700; font-size: .9rem; }

/* Photo-based category grid (used on the Order page as the main menu showcase) */
.category-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) { .category-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .category-photo-grid { grid-template-columns: repeat(4, 1fr); } }

.category-photo-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.category-photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.category-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.category-photo-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: .75rem;
  color: var(--susi-white);
  font-weight: 700;
  text-align: center;
}

/* ==========================================================================
   App download block (ordering happens in the Susi Pizza app, not here)
   ========================================================================== */
.app-download-block {
  background: var(--susi-black);
  color: var(--susi-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2.5rem;
}
.app-download-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--susi-orange);
  color: var(--susi-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.app-download-title { font-weight: 800; font-size: 1.4rem; margin-bottom: .5rem; }
.app-download-subtext { color: #d8d8d8; max-width: 480px; margin: 0 auto 1.5rem; }
.app-download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.app-download-badge-placeholder {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.4rem;
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  color: #d8d8d8;
  font-weight: 600;
  font-size: .9rem;
}

/* ==========================================================================
   Food cards
   ========================================================================== */
.food-card {
  background: var(--susi-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.food-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.food-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.food-card-media img { width: 100%; height: 100%; object-fit: cover; }
.badge-bestseller {
  position: absolute; top: .6rem; left: .6rem;
  background: var(--susi-orange);
  color: var(--susi-white);
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: var(--radius-pill);
}
.veg-indicator {
  position: absolute; top: .6rem; right: .6rem;
  width: 20px; height: 20px;
  border: 2px solid;
  border-radius: 3px;
  background: var(--susi-white);
  display: flex; align-items: center; justify-content: center;
}
.veg-indicator.veg { border-color: #1e7d32; }
.veg-indicator.veg span { width: 8px; height: 8px; border-radius: 50%; background: #1e7d32; }
.veg-indicator.non-veg { border-color: #b3261e; }
.veg-indicator.non-veg span { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 8px solid #b3261e; }

.food-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.food-card-title { font-size: 1rem; font-weight: 700; margin-bottom: .35rem; }
.food-card-desc { font-size: .85rem; color: var(--susi-gray); flex: 1; margin-bottom: .85rem; }
.food-card-footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.food-card-price { font-weight: 700; font-size: .85rem; color: var(--susi-gray); }

/* ==========================================================================
   Offers
   ========================================================================== */
.offer-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.offer-card img { width: 100%; aspect-ratio: 2.4/1; object-fit: cover; }
.offer-card-placeholder {
  aspect-ratio: 2.4/1;
  background: var(--susi-cream);
  border: 2px dashed var(--susi-gray-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--susi-gray);
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.offer-card-placeholder i { font-size: 1.8rem; color: var(--susi-orange); }

/* ==========================================================================
   Why Susi / Who / benefit items
   ========================================================================== */
.why-item, .who-item {
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md);
  background: var(--susi-cream);
  height: 100%;
}
.why-item i, .who-item i { font-size: 1.8rem; color: var(--susi-orange); margin-bottom: .6rem; display: inline-block; }
.why-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .35rem; }
.why-item p { font-size: .9rem; color: var(--susi-gray); margin: 0; }
.who-item p { font-weight: 600; margin: 0; }

/* ==========================================================================
   How ordering works
   ========================================================================== */
.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.how-step { text-align: center; width: 140px; }
.how-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--susi-black);
  color: var(--susi-orange);
  font-size: 1.6rem;
  margin-bottom: .6rem;
}
.how-step h3 { font-size: .9rem; font-weight: 700; margin: 0; }
.how-arrow { color: var(--susi-gray-light); font-size: 1.4rem; }
@media (max-width: 767.98px) {
  .how-steps { flex-direction: column; flex-wrap: nowrap; }
  .how-arrow { transform: rotate(90deg); }
}

/* ==========================================================================
   App promo
   ========================================================================== */
.app-section { background: var(--susi-black); color: var(--susi-white); border-radius: var(--radius-lg); margin: 0 1rem; }
.app-section .section-subtext { color: #cfcfcf; }
.app-phone-mock {
  background: var(--susi-black-soft);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  width: fit-content;
  margin-bottom: 2rem;
}

.play-store-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--susi-white);
  color: var(--susi-black);
  border-radius: var(--radius-lg);
  padding: 1rem 1.75rem;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease, box-shadow .15s ease;
}
.play-store-cta:hover { transform: translateY(-4px); color: var(--susi-black); box-shadow: 0 14px 34px rgba(0,0,0,0.28); }
.play-store-cta-icon { flex: 0 0 auto; }
.play-store-cta-text { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.play-store-cta-text small { font-size: .75rem; letter-spacing: .06em; color: var(--susi-gray); text-transform: uppercase; }
.play-store-cta-text strong { font-size: 1.4rem; font-weight: 800; }
.play-store-cta-placeholder { opacity: .7; cursor: not-allowed; }

/* ==========================================================================
   Franchise CTA (home)
   ========================================================================== */
.franchise-cta-card {
  background: linear-gradient(135deg, var(--susi-orange), var(--susi-orange-dark));
  color: var(--susi-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.franchise-cta-card h2 { font-weight: 800; margin-bottom: .5rem; }
.franchise-cta-card p { margin: 0; max-width: 480px; opacity: .95; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-placeholder {
  background: var(--susi-cream);
  border-radius: var(--radius-md);
  padding: 3rem 1.5rem;
  color: var(--susi-gray);
}
.testimonials-placeholder i { font-size: 2rem; color: var(--susi-orange); margin-bottom: .75rem; display: block; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--susi-black);
  color: var(--susi-white);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 { font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0; }
.page-hero .section-subtext { color: #d8d8d8; }

/* About */
.about-block { padding: 3.5rem 0; }

/* Journey timeline (About page) */
.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 640px;
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 41px;
  top: 84px;
  bottom: -2.5rem;
  width: 2px;
  background: var(--susi-gray-light);
}
.timeline-year {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--susi-orange);
  color: var(--susi-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.timeline-content { padding-top: .75rem; }
.timeline-content h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: .35rem; }
.timeline-content p { color: var(--susi-gray); margin: 0; }

@media (max-width: 575.98px) {
  .timeline-year { width: 64px; height: 64px; font-size: .95rem; }
  .timeline-item:not(:last-child)::after { left: 31px; top: 64px; }
  .timeline-item { gap: 1rem; }
}

/* ==========================================================================
   Franchise page
   ========================================================================== */
.journey-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.journey-step {
  width: 130px;
  text-align: center;
}
.journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--susi-orange);
  color: var(--susi-white);
  font-weight: 800;
  margin-bottom: .5rem;
}
.journey-step p { font-size: .85rem; font-weight: 600; margin: 0; }

.franchise-form-card, .contact-form-card {
  background: var(--susi-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.franchise-form-card .form-control,
.franchise-form-card .form-select,
.contact-form-card .form-control {
  border-radius: var(--radius-sm);
  border: 1px solid var(--susi-gray-light);
  padding: .65rem .9rem;
}
.franchise-form-card .form-control:focus,
.franchise-form-card .form-select:focus,
.contact-form-card .form-control:focus {
  border-color: var(--susi-orange);
  box-shadow: 0 0 0 3px var(--susi-orange-light);
}
.franchise-form-card label, .contact-form-card label { font-weight: 600; font-size: .9rem; }

/* ==========================================================================
   Franchise application wizard
   ========================================================================== */
.franchise-form-intro { color: var(--susi-gray); margin-bottom: 1.5rem; }

.wizard-progress {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  gap: .25rem;
  counter-reset: wizard-step;
}
.wizard-step-indicator {
  flex: 1;
  text-align: center;
  position: relative;
  color: var(--susi-gray);
}
.wizard-step-indicator::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--susi-gray-light);
  z-index: 0;
}
.wizard-step-indicator:last-child::after { display: none; }
.wizard-step-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--susi-cream);
  border: 2px solid var(--susi-gray-light);
  color: var(--susi-gray);
  font-size: 1rem;
  margin-bottom: .4rem;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.wizard-step-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.wizard-step-indicator.active .wizard-step-icon,
.wizard-step-indicator.completed .wizard-step-icon {
  background: var(--susi-orange);
  border-color: var(--susi-orange);
  color: var(--susi-white);
}
.wizard-step-indicator.active .wizard-step-label,
.wizard-step-indicator.completed .wizard-step-label { color: var(--susi-text); }

.wizard-step[data-step-panel] { display: none; }
.wizard-step[data-step-panel].is-active { display: block; }
.no-js .wizard-step[data-step-panel] { display: block; }

.wizard-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.wizard-step-title i { color: var(--susi-orange); }
.wizard-substep-title { font-size: 1rem; font-weight: 700; margin-bottom: .25rem; }

.wizard-nav {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--susi-gray-light);
}
.wizard-nav .wizard-prev.is-hidden { visibility: hidden; }
.wizard-submit { display: none; }
.wizard-submit.is-active { display: inline-flex; }

@media (max-width: 575.98px) {
  .wizard-step-label { display: none; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-info-card {
  background: var(--susi-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
}
.contact-info-list { list-style: none; padding: 0; margin: 0; }
.contact-info-list li { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-weight: 600; }
.contact-info-list-centered li { justify-content: center; text-align: center; }
.contact-info-list i { color: var(--susi-orange); font-size: 1.2rem; }
.social-pill {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--susi-black);
  color: var(--susi-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.contact-pathways { display: flex; flex-wrap: wrap; gap: .6rem; }
.pathway-pill {
  display: inline-flex;
  align-items: center;
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--susi-white);
  border: 1px solid var(--susi-gray-light);
  font-weight: 600;
  font-size: .85rem;
  text-decoration: none;
  color: var(--susi-text);
}
.contact-map iframe { border-radius: var(--radius-md); }

/* ==========================================================================
   Store locations
   ========================================================================== */
.store-locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 576px) { .store-locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .store-locations-grid { grid-template-columns: repeat(4, 1fr); } }

.store-card {
  background: var(--susi-cream);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.store-card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--susi-orange);
  color: var(--susi-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .75rem;
}
.store-card-name { font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.store-card-address { color: var(--susi-gray); font-size: .9rem; margin-bottom: 1rem; min-height: 3rem; }
.store-card-phone {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--susi-orange-dark);
  text-decoration: none;
}
.store-card-phone:hover { text-decoration: underline; }
.store-card-services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  padding: 0;
  margin: 1rem 0 0;
}
.store-card-services li {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--susi-white);
  border: 1px solid var(--susi-gray-light);
  border-radius: var(--radius-pill);
  padding: .3rem .7rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--susi-text);
}
.store-card-services i { color: var(--susi-orange); font-size: .85rem; }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 0; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin-top: 2rem; }
.legal-content p { color: var(--susi-gray); line-height: 1.7; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--susi-black); color: #d8d8d8; }
.footer-tagline { color: #a8a8a8; font-size: .9rem; }
.footer-heading { font-size: .95rem; font-weight: 700; color: var(--susi-white); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: #bdbdbd; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--susi-orange); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0 1.5rem; }
.footer-bottom { color: #888; font-size: .85rem; text-align: center; }

/* ==========================================================================
   WhatsApp float + sticky mobile CTA
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--susi-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--susi-white); }

.sticky-order-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: var(--susi-white);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  z-index: 1035;
}

body.has-sticky-cta { padding-bottom: 78px; }
@media (min-width: 992px) { body.has-sticky-cta { padding-bottom: 0; } }

/* Keep WhatsApp float above the mobile sticky CTA */
@media (max-width: 991.98px) {
  .whatsapp-float { bottom: 5.5rem; }
}

/* ==========================================================================
   Motion — scroll reveal, hero flourishes, micro-interactions
   (all gated behind prefers-reduced-motion: no-preference)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }
  .reveal.is-visible { opacity: 1; transform: none; }

  /* Hero */
  .hero-section { position: relative; overflow: hidden; }
  .hero-section .container { position: relative; z-index: 1; }
  .hero-section:not(.hero-video-section)::before,
  .hero-section:not(.hero-video-section)::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .3;
    pointer-events: none;
    z-index: 0;
  }
  .hero-section:not(.hero-video-section)::before {
    width: 340px; height: 340px;
    background: var(--susi-orange);
    top: -100px; right: 4%;
    animation: susiBlobDrift 11s ease-in-out infinite;
  }
  .hero-section:not(.hero-video-section)::after {
    width: 260px; height: 260px;
    background: var(--susi-green);
    bottom: -70px; left: 2%;
    animation: susiBlobDrift 13s ease-in-out infinite reverse;
  }
  @keyframes susiBlobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-18px, 18px) scale(1.08); }
  }
  .hero-img { animation: susiHeroFloat 5s ease-in-out infinite; }
  @keyframes susiHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

  /* Buttons */
  .btn-brand-primary { position: relative; overflow: hidden; }
  .btn-brand-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 45%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease;
  }
  .btn-brand-primary:hover::after { left: 130%; }
  .btn-brand-primary:active,
  .btn-brand-outline:active,
  .btn-brand-light:active { transform: scale(.96); }

  /* WhatsApp pulse */
  .whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: susiPulseRing 2.4s ease-out infinite;
  }
  @keyframes susiPulseRing {
    0% { transform: scale(1); opacity: .55; }
    100% { transform: scale(1.9); opacity: 0; }
  }

  /* Category scroller: soft fade at the edges to hint scrollability */
  .categories-scroll {
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--susi-orange);
  outline-offset: 2px;
}
