/* ─────────────────────────────────────────────────────────────────
   Green Thumb Guys — Shared Stylesheet
   ───────────────────────────────────────────────────────────────── */

/* Brand pairing: Fraunces (display serif, handcrafted/botanical feel) + Inter (body sans, premium readability) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Design Tokens ────────────────────────────────────────────── */
:root {
  --navy:        #0e4b81;
  --navy-dark:   #0a3660;
  --navy-deeper: #071f3a;
  /* Brand Yellow — bright pure sun-yellow */
  --yellow:      #FFEC00;
  --yellow-dark: #e6d300;
  --green:       #7ac143;
  --green-dark:  #599a42;
  --white:       #ffffff;
  --off-white:   #f6f9f2;
  --stone:       #f0f2ee;
  --text:        #111a11;
  --text-mid:    #3a4a3a;
  --text-light:  #667066;
  --border:      rgba(0,0,0,0.08);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font:         var(--font-body);
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:            0.3s var(--ease);
}

/* ─── Typography — Display vs Body ─────────────────────────── */
h1, h2, h3, h4, h5, h6,
.section-title, .hero-headline,
.nav-logo-main, .footer-brand-name,
.svc-title, .why-title, .team-info h3,
.product-name, .form-title, .values-title,
.flip-step-body strong, .cta-band-title,
.cart-header h3, .map-info .section-title,
.cart-empty p, .success-msg h3 {
  font-family: var(--font-display);
  font-feature-settings: "ss01", "ss02";
  letter-spacing: -0.015em;
}

/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ─── Utilities ─────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 40px; }

.label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 24px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 44px; /* WCAG touch target */
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--t);
  cursor: pointer;
  border: none;
  touch-action: manipulation; /* eliminate 300ms tap delay */
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(14,75,129,0.35); }
.btn-yellow  { background: var(--yellow); color: var(--navy-deeper); }
.btn-yellow:hover  { background: var(--yellow-dark); color: var(--navy-deeper); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,236,0,0.55); }
.btn-outline { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy-dark); color: var(--white); border-color: var(--navy-dark); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-green   { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ─── Navigation ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#navbar.scrolled,
#navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 100px;
  overflow: visible;
}
.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 14px; line-height: 1; flex-shrink: 0; padding-right: 32px; }
.nav-logo-icon { height: 54px; width: auto; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; min-width: 0; }
.nav-logo-main { font-size: 38px; font-weight: 700; color: var(--white); letter-spacing: -0.015em; transition: color var(--t); line-height: 1; white-space: nowrap; }
.nav-logo-sub  { font-size: 20px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-style: italic; color: var(--green); margin-top: 6px; transition: color var(--t); font-family: var(--font-display); line-height: 1; white-space: nowrap; }
@media (min-width: 1440px) {
  /* Slightly larger on roomy desktops while keeping clear breathing room from nav links */
  .nav-inner { height: 108px; }
  .nav-logo { padding-right: 48px; }
  .nav-logo-icon { height: 62px; }
  .nav-logo-main { font-size: 44px; }
  .nav-logo-sub  { font-size: 23px; margin-top: 7px; }
}
#navbar.scrolled .nav-logo-main,
#navbar.solid    .nav-logo-main { color: var(--navy); }
#navbar.scrolled .nav-logo-sub,
#navbar.solid    .nav-logo-sub  { color: var(--green-dark); }

.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--t);
  position: relative;
  padding-bottom: 2px;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a,
#navbar.solid    .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover,
#navbar.solid    .nav-links a:hover { color: var(--navy); }
#navbar.scrolled .nav-links a.active,
#navbar.solid    .nav-links a.active { color: var(--navy); }
.nav-links a.active::after { background: var(--green); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
  transition: var(--t);
}
.nav-phone:hover {
  border-color: var(--white);
  color: var(--white) !important;
  background: rgba(255,255,255,0.08);
}
#navbar.scrolled .nav-phone,
#navbar.solid    .nav-phone {
  border-color: var(--border);
  color: var(--text-mid);
}
#navbar.scrolled .nav-phone:hover,
#navbar.solid    .nav-phone:hover {
  border-color: var(--navy);
  color: var(--navy) !important;
  background: var(--stone);
}

.nav-book {
  background: var(--green);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: var(--t);
}
.nav-book:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(122,193,67,0.4);
}

/* Cart Button */
.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: var(--t);
  cursor: pointer;
}
.cart-btn:hover { background: rgba(255,255,255,0.22); }
#navbar.scrolled .cart-btn,
#navbar.solid    .cart-btn { background: var(--stone); }
#navbar.scrolled .cart-btn:hover,
#navbar.solid    .cart-btn:hover { background: var(--off-white); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px; height: 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ─── Cart Sidebar ──────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 95vw;
  background: var(--white);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.2);
}
.cart-panel.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.cart-close {
  width: 44px; height: 44px;
  background: var(--stone);
  border-radius: 50%;
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  cursor: pointer;
  color: var(--text-mid);
  border: none;
}
.cart-close:hover { background: var(--border); }

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
  text-align: center;
  color: var(--text-light);
}
.cart-empty-icon { font-size: 48px; }
.cart-empty p { font-size: 15px; margin-bottom: 8px; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  background-color: var(--stone);
}
.cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 36px; height: 36px;
  background: var(--stone);
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  border: none;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .qty-btn { width: 44px; height: 44px; font-size: 20px; }
}
.qty-btn:hover { background: var(--border); }
.qty-num {
  font-size: 14px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}
.remove-btn {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--t);
}
.remove-btn:hover { color: #e33; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.cart-total-row span:last-child { color: var(--navy); font-size: 20px; }
.cart-note {
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* ─── Page Hero (non-home pages) ────────────────────────────────── */
.page-hero {
  height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, var(--navy-deeper) 0%, var(--navy) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .label { color: var(--yellow); }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.65;
}

/* ─── Footer ──────────────────────────────────────────────────────  */
footer {
  background: var(--navy-deeper);
  padding: 72px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name { font-size: 50px; font-weight: 700; color: var(--white); margin-bottom: 4px; line-height: 1; letter-spacing: -0.015em; }
.footer-brand-tag  { font-size: 26px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-style: italic; color: var(--green); margin: 8px 0 16px; font-family: var(--font-display); line-height: 1; }
.footer-appt-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(122,193,67,0.08);
  border: 1px solid rgba(122,193,67,0.25);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 11px; color: var(--green);
  margin-bottom: 18px;
}
.footer-brand-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.55);
  transition: var(--t);
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

/* ─── Google Maps ───────────────────────────────────────────────── */
.map-section {
  background: var(--stone);
  padding: 80px 0;
}
.map-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.map-info .section-title { font-size: 26px; }
.map-info .section-body  { font-size: 15px; margin: 12px 0 24px; }
.map-contact-items { display: flex; flex-direction: column; gap: 14px; }
.map-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.map-contact-icon { font-size: 18px; margin-top: 2px; }
.map-contact-text strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.map-contact-text a, .map-contact-text p { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.5; }
.map-contact-text a:hover { color: var(--navy); }
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: none; }

/* ─── Hamburger Button ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
}
#navbar.scrolled .hamburger,
#navbar.solid    .hamburger { background: var(--stone); }
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
#navbar.scrolled .hamburger span,
#navbar.solid    .hamburger span { background: var(--navy); }

/* ─── Mobile Nav Overlay ─────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  max-width: 88vw;
  background: var(--white);
  z-index: 1600;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--navy-deeper);
}
.mobile-nav-logo span {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.mobile-nav-logo small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: italic;
  color: var(--green);
  margin-top: 2px;
  display: block;
}
.mobile-close {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--t);
  border: none;
  line-height: 1;
}
.mobile-close:hover { background: rgba(255,255,255,0.22); }

.mobile-nav-links {
  flex: 1;
  padding: 16px 0;
}
.mobile-nav-links li a {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.mobile-nav-links li:last-child a { border-bottom: none; }
.mobile-nav-links li a:hover { color: var(--navy); background: var(--off-white); }
.mobile-nav-links li a.active { color: var(--navy); font-weight: 700; }

.mobile-nav-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  background: var(--off-white);
}
.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 14px;
  min-height: 48px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: var(--t);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.mobile-phone:hover { color: var(--navy); border-color: var(--navy); }

/* ─── Cart Panel Mobile ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .cart-panel { width: 100%; max-width: 100vw; }
}

/* ─── Responsive: Tablet ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .map-grid { grid-template-columns: 1fr; gap: 32px; }
  .map-embed iframe { height: 320px; }
}

/* ─── Responsive: Mobile ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 18px; }

  /* Body offset — nav shrinks to 64px on mobile */
  body { padding-top: 64px !important; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-phone  { display: none; }
  .nav-book   { display: none; }
  .hamburger  { display: flex; }
  .nav-inner  { height: 64px; overflow: visible; }

  /* Nav logo — shrink to fit 64px nav bar (still bigger than original mobile size) */
  .nav-logo        { gap: 10px; }
  .nav-logo-icon   { height: 38px; }
  .nav-logo-main   { font-size: 26px; line-height: 1; }
  .nav-logo-sub    { font-size: 13px; letter-spacing: 0.14em; margin-top: 2px; }

  /* Page hero */
  .page-hero { height: 220px; padding-bottom: 28px; }
  .page-hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .page-hero p  { font-size: 15px; margin-top: 8px; }

  /* Sections */
  .map-section { padding: 56px 0; }
  .map-grid { grid-template-columns: 1fr; gap: 28px; }
  .map-embed iframe { height: 260px; }

  /* Footer */
  footer { padding: 48px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Buttons — bigger tap targets on mobile */
  .btn { padding: 15px 24px; font-size: 14px; min-height: 48px; }

  /* iOS input zoom fix — always keep inputs at 16px+ */
  input, select, textarea { font-size: 16px !important; }

  /* Disable hover transform effects on touch (avoids stuck-hover state) */
  .btn-primary:hover, .btn-yellow:hover, .btn-green:hover { transform: none; }
  .svc-card:hover, .why-card:hover, .product-card:hover { transform: none; box-shadow: none; }

  /* Mobile nav links — larger tap targets */
  .mobile-nav-links li a { padding: 18px 24px; font-size: 18px; }

  /* Mobile nav footer book button — full width */
  .mobile-nav-footer .btn { width: 100%; }
}

/* ─── Responsive: Small Phones (< 480px) ────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Full-width cart panel */
  .cart-panel { width: 100%; border-radius: 0; }

  /* Section paddings tighter on tiny phones */
  section { scroll-margin-top: 64px; }

  /* Page hero more compact */
  .page-hero { height: 190px; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 32px); }

  /* Footer */
  .footer-social { justify-content: center; }
  .footer-social a { width: 40px; height: 40px; font-size: 16px; }

  /* Tighter section body text on very small screens */
  .section-body { font-size: 15px; }
}
