/*
Theme Name: Morning Glory Donuts
Theme URI: https://morningglorydonuts.com
Author: Plexwebs
Description: A warm, mobile-first WordPress theme for Morning Glory Donuts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
Text Domain: mgdonuts
*/

/* ======================================================
   CSS VARIABLES
====================================================== */
:root {
  --color-primary:       #E8607A;
  --color-primary-dark:  #C94060;
  --color-primary-light: #FADDDF;
  --color-secondary:     #FF9A3C;
  --color-secondary-dark:#E07820;
  --color-chocolate:     #3D1F0A;
  --color-brown:         #6B3A2A;
  --color-cream:         #FFFDF7;
  --color-peach:         #FFF0E5;
  --color-sand:          #F5E6D8;
  --color-text:          #2D1B12;
  --color-text-muted:    #7A5C4A;
  --color-text-light:    #B08070;
  --color-border:        #EDD5C5;
  --color-white:         #FFFFFF;

  --shadow-sm:   0 1px 3px rgba(61,31,10,.08);
  --shadow-md:   0 4px 16px rgba(61,31,10,.12);
  --shadow-lg:   0 8px 32px rgba(61,31,10,.16);
  --shadow-pink: 0 8px 24px rgba(232,96,122,.28);

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Nunito', system-ui, sans-serif;

  --space-xs:  .25rem;
  --space-sm:  .5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --container-max: 1200px;
  --header-height: 68px;

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

  --transition: 250ms ease;
  --transition-slow: 400ms cubic-bezier(.16,1,.3,1);
}

/* ======================================================
   RESET & BASE
====================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ======================================================
   TYPOGRAPHY
====================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-chocolate);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: var(--space-md); }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.section-title { margin-bottom: var(--space-md); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-header .section-subtitle { margin: 0 auto; }

/* ======================================================
   LAYOUT
====================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}
.section { padding: var(--space-3xl) 0; }
.section-alt { background: var(--color-peach); }
.section-sand { background: var(--color-sand); }
.section-dark {
  background: var(--color-chocolate);
  color: var(--color-cream);
}
.section-dark h2, .section-dark h3 { color: var(--color-white); }

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: .75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  line-height: 1;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232,96,122,.38);
}
.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
}
.btn-secondary:hover {
  background: var(--color-secondary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .8rem; }

.btn svg { width: 1em; height: 1em; }

/* Delivery platform buttons */
.btn-order-primary {
  background: #06C167;
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,193,103,.3);
}
.btn-order-primary:hover {
  background: #05A857;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,193,103,.4);
}
.btn-order-secondary {
  background: transparent;
  color: #06C167;
  border: 2px solid #06C167;
}
.btn-order-secondary:hover {
  background: #06C167;
  color: #fff;
}
/* Secondary on dark backgrounds (CTA banner) */
.btn-order-secondary-dark {
  background: transparent;
  color: rgba(255,253,247,.9);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-order-secondary-dark:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ======================================================
   TOP BAR
====================================================== */
.topbar {
  background: var(--color-chocolate);
  color: rgba(255,253,247,.75);
  font-size: .8rem;
  padding: .4rem 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.topbar-left { display: none; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-left: auto;
}
.topbar-phone {
  display: flex;
  align-items: center;
  gap: .35rem;
  color: var(--color-cream);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
}
.topbar-phone:hover { color: var(--color-secondary); }
.topbar-phone svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ======================================================
   SITE HEADER
====================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: var(--space-md);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-chocolate);
  line-height: 1.2;
}
.logo-text span { color: var(--color-primary); display: block; font-size: .75rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase; }

/* Desktop Nav */
.nav-primary { display: none; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}
.header-phone {
  display: none;
  align-items: center;
  gap: .35rem;
  color: var(--color-brown);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--color-primary); }
.header-phone svg { width: 16px; height: 16px; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--color-sand); }
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-chocolate);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ======================================================
   MOBILE NAV OVERLAY
====================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45,27,18,.5);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { pointer-events: all; }
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.mobile-nav-close:hover { background: var(--color-sand); color: var(--color-text); }
.mobile-nav-close svg { width: 20px; height: 20px; }

.mobile-nav-links { padding: var(--space-lg) 0; flex: 1; }
.mobile-nav-links a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-chocolate);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--color-primary);
  border-left-color: var(--color-primary);
  background: var(--color-primary-light);
}

.mobile-nav-footer {
  padding: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.mobile-nav-footer .btn { justify-content: center; }
.mobile-nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-peach);
  border-radius: var(--radius-md);
  color: var(--color-brown);
  font-weight: 700;
  font-size: 1.1rem;
}
.mobile-nav-phone:hover { background: var(--color-sand); color: var(--color-chocolate); }
.mobile-nav-phone svg { width: 20px; height: 20px; color: var(--color-primary); }

/* ======================================================
   HERO SLIDER
====================================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--color-chocolate);
  height: calc(100svh - var(--header-height) - 36px);
  min-height: 480px;
  max-height: 800px;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45,27,18,.75) 0%,
    rgba(45,27,18,.45) 60%,
    rgba(45,27,18,.15) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: var(--space-xl) 0;
  max-width: 580px;
}
.slide-label {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.slide-subtitle {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}
.slide-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.slider-dots { display: flex; gap: .5rem; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--color-white);
  width: 24px;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.2);
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,.3);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,.35); }
.slider-arrow svg { width: 18px; height: 18px; }

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
}
.slider-nav-prev { left: var(--space-lg); }
.slider-nav-next { right: var(--space-lg); }

/* ======================================================
   PERKS STRIP
====================================================== */
.perks-strip {
  background: var(--color-primary);
  padding: var(--space-lg) 0;
}
.perks-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}
.perk-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-white);
  font-weight: 700;
  font-size: .95rem;
}
.perk-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  color: var(--color-primary-light);
}
.perks-divider { display: none; }

/* ======================================================
   FEATURED DONUTS
====================================================== */
.donuts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.donut-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}
.donut-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.donut-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.donut-card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-sand);
  position: relative;
}
.donut-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.donut-card:hover .donut-card-image img { transform: scale(1.06); }
.donut-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-peach) 100%);
}
.donut-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  background: var(--color-secondary);
  color: var(--color-white);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: var(--radius-full);
}
.donut-card-body { padding: var(--space-md); }
.donut-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-chocolate);
  margin-bottom: .25rem;
}
.donut-card-desc {
  font-size: .82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.donuts-cta { text-align: center; margin-top: var(--space-2xl); }

/* ======================================================
   HOURS & LOCATION
====================================================== */
.hours-location-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.hours-card, .location-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}
.hours-card h3, .location-card h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}
.hours-card h3 svg, .location-card h3 svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.hours-list { display: flex; flex-direction: column; gap: .6rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: .9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 700; color: var(--color-brown); }
.hours-time { color: var(--color-text-muted); }
.hours-closed { color: var(--color-text-light); font-style: italic; }

.location-address {
  font-size: .95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}
.location-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--color-border);
  margin-bottom: var(--space-md);
}
.location-map iframe {
  display: block;
  width: 100%;
  height: 220px;
}
.location-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ======================================================
   ABOUT SNIPPET
====================================================== */
.about-snippet-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.about-snippet-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-sand);
  position: relative;
}
.about-snippet-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, #FFD6A5 0%, #FFAD4F 100%);
}
.about-snippet-content { display: flex; flex-direction: column; justify-content: center; }
.about-snippet-content h2 { margin-bottom: var(--space-md); }
.about-snippet-content p { color: var(--color-text-muted); margin-bottom: var(--space-lg); }
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}
.about-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--color-primary);
}
.about-highlight-text strong {
  display: block;
  font-weight: 700;
  color: var(--color-chocolate);
  margin-bottom: .2rem;
}
.about-highlight-text span {
  font-size: .88rem;
  color: var(--color-text-muted);
}

/* ======================================================
   CTA BANNER
====================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, #C94060 100%);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '🍩';
  position: absolute;
  font-size: 12rem;
  opacity: .06;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}
.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

/* ======================================================
   TESTIMONIALS (optional section)
====================================================== */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}
.testimonial-stars { color: var(--color-secondary); font-size: 1rem; margin-bottom: var(--space-sm); }
.testimonial-text {
  font-size: .95rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-md);
}
.testimonial-author { font-weight: 700; color: var(--color-brown); font-size: .9rem; }
.testimonial-read-more { display: inline; margin-left: .25em; white-space: nowrap; color: var(--color-primary); font-weight: 600; text-decoration: none; font-style: normal; }
.testimonial-read-more:hover { text-decoration: underline; }

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
  background: var(--color-chocolate);
  color: rgba(255,253,247,.75);
}
.footer-main { padding: var(--space-3xl) 0; }
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.footer-brand .site-logo { margin-bottom: var(--space-md); }
.footer-brand .logo-text { color: var(--color-cream); }
.footer-brand .logo-text span { color: rgba(255,154,60,.8); }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  color: rgba(255,253,247,.6);
}
.footer-social { display: flex; gap: var(--space-sm); }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  color: rgba(255,253,247,.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--color-cream);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  color: rgba(255,253,247,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-secondary); }

.footer-contact-list { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: .9rem;
  color: rgba(255,253,247,.65);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,253,247,.65); }
.footer-contact-item a:hover { color: var(--color-secondary); }

.footer-hours-list { display: flex; flex-direction: column; gap: .4rem; }
.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  font-size: .88rem;
  color: rgba(255,253,247,.65);
}
.footer-hours-row span:first-child { color: rgba(255,253,247,.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-lg) 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,253,247,.4);
}

/* Page-specific styles are in assets/css/pages.css */

/* ======================================================
   UTILITY
====================================================== */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.sr-only { position: absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ======================================================
   MEDIA QUERIES — TABLET (min-width: 640px)
====================================================== */
@media (min-width: 640px) {
  .topbar-left { display: flex; align-items: center; gap: var(--space-lg); }
  .topbar-info {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
  }
  .topbar-info svg { width: 13px; height: 13px; color: var(--color-secondary); }

  .perks-grid { flex-direction: row; justify-content: center; gap: var(--space-xl); }
  .perks-divider {
    display: block;
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,.3);
  }

  .donuts-grid { grid-template-columns: repeat(2, 1fr); }
  .donut-card-name { font-size: 1.05rem; }
  .donut-card-desc { font-size: .88rem; }

  .cta-banner-actions { flex-direction: row; justify-content: center; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }

  .slider-nav { display: flex; }
}

/* ======================================================
   MEDIA QUERIES — DESKTOP (min-width: 900px)
====================================================== */
@media (min-width: 900px) {
  /* Header */
  .nav-toggle { display: none; }
  .nav-primary {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex: 1;
    justify-content: center;
  }
  .nav-primary a {
    padding: .5rem .85rem;
    font-weight: 700;
    font-size: .92rem;
    color: var(--color-brown);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
  }
  .nav-primary a:hover,
  .nav-primary a.active {
    color: var(--color-primary);
    background: var(--color-primary-light);
  }
  .header-phone { display: flex; }

  /* Hero */
  .hero-slider { min-height: 560px; }

  /* Grids */
  .hours-location-grid { flex-direction: row; }
  .hours-card { flex: 1; }
  .location-card { flex: 1.2; }

  .about-snippet-grid { flex-direction: row; align-items: center; }
  .about-snippet-image { flex: 1; order: -1; }
  .about-snippet-content { flex: 1; }

  .donuts-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { flex-direction: row; }
  .testimonial-card { flex: 1; }

  .footer-grid { flex-direction: row; gap: var(--space-3xl); }
  .footer-brand { flex: 1.4; }
  .footer-col { flex: 1; }
  .footer-col--hours { flex: 1.5; min-width: 220px; }
}

@media (min-width: 1100px) {
  .container { padding-left: var(--space-xl); padding-right: var(--space-xl); }
  .slide-content { max-width: 640px; }
}
