/* ================================================
   Dawg Nation Nutrition — styles.css
   Mobile-first, plain CSS, no framework
   ================================================ */

/* ========================
   Custom Properties
======================== */
:root {
  --teal:         #C8102E;   /* brand red */
  --teal-dark:    #A20D25;
  --teal-darker:  #74091A;
  --teal-light:   #FECDD3;
  --teal-xlight:  #FFF5F6;

  --lime:         #F5A623;   /* brand gold/amber accent */
  --lime-dark:    #D4881E;
  --lime-light:   #FEF3C7;

  --orange:       #F97316;
  --orange-dark:  #EA580C;
  --pink:         #EC4899;
  --purple:       #8B5CF6;
  --purple-dark:  #7C3AED;

  --navy:         #1C1C1E;   /* near-black */
  --navy-dark:    #0D0D0F;

  --gray-50:  #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;

  --white: #FFFFFF;

  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow:    0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 10px 30px -4px rgba(0,0,0,.14);
  --shadow-xl: 0 24px 48px -8px rgba(0,0,0,.18);

  --transition-fast: .15s ease;
  --transition:      .25s ease;

  --max-w: 1200px;
  --header-h: 70px;
}

/* ========================
   Reset
======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* ========================
   Layout helpers
======================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width:640px)  { .container { padding: 0 2rem; } }
@media (min-width:1024px) { .container { padding: 0 3rem; } }

.section     { padding: 4rem 0; }
.section-lg  { padding: 5rem 0; }
.section-alt { background: var(--gray-50); }

/* ========================
   Typography utilities
======================== */
.section-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--teal-light);
  color: var(--teal-darker);
  padding: .3em 1em;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 600px;
}
.section-subtitle.light { color: rgba(255,255,255,.82); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ========================
   Buttons
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.8); }
.btn-secondary:hover { background: rgba(255,255,255,.15); border-color: var(--white); transform: translateY(-1px); }

.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-white { background: var(--white); color: var(--teal-dark); border-color: var(--white); }
.btn-white:hover { background: var(--teal-xlight); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-sm  { padding: .5rem 1.2rem; font-size: .875rem; }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

/* ========================
   Header & Nav
======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  height: var(--header-h);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width:640px) { .header-inner { padding: 0 2rem; } }

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name { font-size: 1.15rem; font-weight: 900; letter-spacing: -.02em; color: var(--teal-dark); }
.logo-sub  { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-500); }

.site-nav { display: none; }
@media (min-width:768px) {
  .site-nav { display: flex; align-items: center; gap: .25rem; }
}
.nav-link {
  padding: .4rem .9rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}
.nav-link:hover { color: var(--teal-dark); background: var(--teal-xlight); }
.nav-link.active { color: var(--white); background: var(--teal); }
.nav-cta { margin-left: .5rem; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: var(--radius-sm);
}
.hamburger:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
@media (min-width:768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav-links { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
}
.mobile-nav-link:hover { background: var(--teal-xlight); color: var(--teal-dark); }
.mobile-nav-link.active { background: var(--teal); color: var(--white); }
.mobile-nav-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

/* ========================
   Hero — Home
======================== */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1C1C1E 55%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,.22) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -35%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-full);
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.6; transform:scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--lime); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.75;
}

/* ========================
   Page Hero (sub-pages)
======================== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 3rem 0;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.025em;
  margin-bottom: .4rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.8); }

/* ========================
   Feature / Intro Cards
======================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:640px)  { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .features-grid { grid-template-columns: repeat(3,1fr); } }

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); }
.feature-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ========================
   Drink Cards
======================== */
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:480px) { .drinks-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:900px) { .drinks-grid { grid-template-columns: repeat(4,1fr); } }

.drink-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.drink-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.drink-visual {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* CSS cup illustration */
.cup-wrap { position: relative; width: 80px; height: 108px; flex-shrink: 0; }
.cup-straw {
  position: absolute;
  top: -24px;
  left: 54%;
  width: 7px;
  height: 42px;
  background: rgba(255,255,255,.65);
  border-radius: 4px;
  transform: rotate(8deg);
}
.cup-lid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 14px;
  background: rgba(255,255,255,.42);
  border-radius: 20px 20px 6px 6px;
}
.cup-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 90px;
  background: rgba(255,255,255,.22);
  clip-path: polygon(6% 0%, 94% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 8px 8px;
}
.cup-liquid {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 62px;
  background: rgba(255,255,255,.14);
  clip-path: polygon(6% 0%, 94% 0%, 100% 100%, 0% 100%);
  border-radius: 0 0 8px 8px;
}
.cup-photo-label {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.28);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.drink-info {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.drink-info h4 { font-size: .95rem; font-weight: 800; color: var(--gray-900); }
.drink-info p  { font-size: .82rem; color: var(--gray-500); line-height: 1.6; flex: 1; }

/* Gradient palette */
.grad-tea      { background: linear-gradient(135deg,#F59E0B,#EF4444); }
.grad-shake    { background: linear-gradient(135deg,#8B5CF6,#EC4899); }
.grad-energy   { background: linear-gradient(135deg,#0D9488,#84CC16); }
.grad-citrus   { background: linear-gradient(135deg,#F97316,#FBBF24); }
.grad-berry    { background: linear-gradient(135deg,#7C3AED,#DB2777); }
.grad-tropical { background: linear-gradient(135deg,#059669,#34D399); }
.grad-blue     { background: linear-gradient(135deg,#2563EB,#06B6D4); }
.grad-peach    { background: linear-gradient(135deg,#F97316,#EC4899); }
.grad-mint     { background: linear-gradient(135deg,#10B981,#6EE7B7); }
.grad-lemon    { background: linear-gradient(135deg,#EAB308,#84CC16); }

/* ========================
   Steps — How It Works
======================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:768px) { .steps-grid { grid-template-columns: repeat(3,1fr); } }

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--gray-900); margin-bottom: .5rem; }
.step-card p  { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

/* ========================
   Location Strip
======================== */
.location-strip {
  background: linear-gradient(135deg, var(--teal-darker), var(--navy-dark));
  color: var(--white);
  padding: 2.5rem 0;
}
.location-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.location-info { display: flex; flex-direction: column; gap: .75rem; }
.location-item { display: flex; align-items: center; gap: .75rem; font-size: .95rem; }
.location-item svg { width: 20px; height: 20px; color: var(--lime); flex-shrink: 0; }
.location-item a { color: inherit; transition: color var(--transition-fast); }
.location-item a:hover { color: var(--lime); }

/* ========================
   Social Links
======================== */
.social-links { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.social-link-fb   { background: #1877F2; color: var(--white); }
.social-link-maps { background: #4285F4; color: var(--white); }

/* ========================
   Menu page — Category headers
======================== */
.menu-category { margin-bottom: 4rem; }
.menu-category:last-child { margin-bottom: 0; }
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}
.category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.category-header h2    { font-size: 1.5rem; font-weight: 900; color: var(--gray-900); line-height: 1.15; }
.category-header .sub  { font-size: .8rem; color: var(--gray-500); margin-top: .2rem; }

/* ========================
   Info Cards (Visit page)
======================== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width:640px)  { .info-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .info-grid { grid-template-columns: repeat(3,1fr); } }

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card-icon svg { width: 24px; height: 24px; color: var(--teal); }
.info-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--gray-900); }
.info-card p, .info-card address {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.85;
  font-style: normal;
}
.info-card a { color: var(--teal); transition: color var(--transition-fast); }
.info-card a:hover { color: var(--teal-dark); text-decoration: underline; }

/* Hours table */
.hours-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .45rem 0; color: var(--gray-700); }
.hours-table td:first-child { font-weight: 700; color: var(--gray-900); width: 55%; }

/* ========================
   Notices / Alerts
======================== */
.demo-notice {
  background: #FEF9C3;
  border: 1px solid #EAB308;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.demo-notice-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
.demo-notice p    { font-size: .875rem; color: #713F12; line-height: 1.65; }
.demo-notice strong { color: #78350F; }

.info-notice {
  background: var(--teal-xlight);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--teal-darker);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* ========================
   Order Form
======================== */
.order-form-wrap { max-width: 640px; margin: 0 auto; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}
@media (min-width:480px) { .form-card { padding: 3rem 2.5rem; } }

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

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: .8rem; font-weight: 700; color: var(--gray-700); letter-spacing: .03em; text-transform: uppercase; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(200,16,46,.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: .78rem;
  color: var(--gray-500);
  margin-top: -.25rem;
  line-height: 1.5;
}

/* ========================
   Order Confirmation
======================== */
.order-confirmation {
  display: none;
  background: linear-gradient(135deg, var(--teal-xlight), var(--lime-light));
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.order-confirmation.visible { display: block; animation: fadeUp .45s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.confirm-icon {
  width: 72px;
  height: 72px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.confirm-icon svg { width: 36px; height: 36px; color: var(--white); }

.order-confirmation h3 { font-size: 1.5rem; font-weight: 900; color: var(--teal-darker); margin-bottom: .75rem; }
.order-confirmation .sub {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 1.25rem;
}

.confirm-detail {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem auto 1.5rem;
  max-width: 380px;
  text-align: left;
  border: 1px solid var(--gray-200);
}
.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  font-size: .875rem;
  border-bottom: 1px solid var(--gray-100);
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row .lbl { font-weight: 700; color: var(--gray-700); }
.confirm-row .val { color: var(--gray-900); text-align: right; }

.confirm-disclaimer {
  font-size: .75rem;
  color: var(--gray-500);
  margin-top: 1rem;
  font-style: italic;
  line-height: 1.5;
}

/* ========================
   Map card (Visit page)
======================== */
.map-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.map-placeholder {
  height: 220px;
  background: linear-gradient(135deg,#A7F3D0 0%,#BAE6FD 50%,#DDD6FE 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  padding: 1.5rem;
}
.map-pin { font-size: 2.5rem; }
.map-placeholder strong { font-size: .95rem; color: var(--gray-800); }
.map-placeholder address { font-size: .875rem; color: var(--gray-600); font-style: normal; }
.map-footer { padding: 1rem 1.25rem; background: var(--white); }

/* ========================
   CTA Section
======================== */
.cta-section {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.cta-section .btn-group { justify-content: center; }

/* ========================
   Footer
======================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width:640px)  { .footer-inner { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub  { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 1rem; line-height: 1.75; max-width: 280px; }

.footer-col h4 {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--teal-light); }

.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-item { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition-fast); }
.footer-contact-item a:hover { color: var(--teal-light); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.3); }

/* ========================
   Utilities
======================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* ========================
   Reduced motion
======================== */
@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
