/* ==========================================================================
   HIKING GUIDE REVIEW - Master CSS Design System (LIGHT THEME + MOBILE OPTIMIZED)
   ========================================================================== */

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

:root {
  /* Light Theme Color Palette */
  --bg-dark: #F8FAF9;          /* Crisp light off-white background */
  --bg-surface: #FFFFFF;       /* Pure white card container */
  --bg-card: #FFFFFF;          /* Pure white card surface */
  --bg-card-hover: #F1F5F3;    /* Subtle hover tint */
  --border-color: #E2E8F0;     /* Crisp slate border */
  --border-highlight: #CBD5E1; /* Secondary border */

  --accent-orange: #E87A24;    /* Alpine Orange */
  --accent-orange-hover: #D96913;
  --accent-emerald: #1B5E3A;   /* Deep Forest Emerald */
  --accent-emerald-light: #258552;
  --accent-gold: #D97706;

  --text-main: #0F172A;        /* Deep slate main heading/body text */
  --text-muted: #475569;       /* Slate muted text */
  --text-dim: #64748B;         /* Dim text */

  /* Retailer Theme Colors */
  --dicks-green: #00563F;
  --dicks-light: #008763;
  --big5-blue: #0A3B8C;
  --rei-green: #1C2D22;
  --bass-gold: #D4A017;

  /* Shadows & Glassmorphism Light */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(203, 213, 225, 0.6);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --glow-orange: 0 4px 20px rgba(232, 122, 36, 0.25);

  /* Touch & Mobile Metrics */
  --touch-target-min: 44px;

  /* Transitions */
  --tr-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--tr-fast);
}

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

.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

/* Top Announcement Ticker Light */
.top-bar {
  background: #F1F5F3;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  padding: 0.6rem 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ticker-badge {
  background: var(--accent-orange);
  color: #fff;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-link {
  color: var(--accent-orange);
  font-weight: 600;
  margin-left: 0.5rem;
}

.top-bar-link:hover {
  text-decoration: underline;
}

/* Store Logos Ticker Bar (Horizontal Swipeable on Mobile) */
.store-logos-ticker {
  padding: 0.85rem 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.store-logos-ticker::-webkit-scrollbar {
  display: none;
}

.store-logos-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: 1.5rem;
  min-width: max-content;
  padding: 0 1rem;
}

.store-logo-item {
  height: 34px;
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: var(--tr-fast);
  flex-shrink: 0;
}

.store-logo-item:hover, .store-logo-item:active {
  opacity: 1;
  transform: scale(1.05);
}

.store-logo-item img {
  height: 34px;
  width: auto;
}

/* Navigation Header Light */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--tr-smooth);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  min-height: var(--touch-target-min);
  display: inline-flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.yetti-pill-nav {
  background: rgba(232, 122, 36, 0.1);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange) !important;
  padding: 0.4rem 1.1rem !important;
  border-radius: 30px;
  font-weight: 700 !important;
}

.yetti-pill-nav:hover, .yetti-pill-nav:active {
  background: var(--accent-orange);
  color: #fff !important;
  box-shadow: var(--glow-orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: var(--touch-target-min);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: var(--tr-smooth);
  user-select: none;
}

.btn-primary {
  background: var(--accent-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 122, 36, 0.3);
}

.btn-primary:hover, .btn-primary:active {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--glow-orange);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover, .btn-secondary:active {
  background: var(--bg-card-hover);
  border-color: var(--accent-emerald-light);
}

.btn-dicks {
  background: var(--dicks-green);
  color: #fff;
  border: 1px solid var(--dicks-light);
}

.btn-dicks:hover, .btn-dicks:active {
  background: var(--dicks-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 135, 99, 0.3);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.5rem;
  min-width: var(--touch-target-min);
  min-height: var(--touch-target-min);
  align-items: center;
  justify-content: center;
}

/* Hero Section Light */
.hero-news {
  padding: 2.5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 2rem;
}

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: var(--tr-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.featured-card:hover {
  border-color: var(--accent-emerald-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.featured-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #E2E8F0;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.04);
}

.badge-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent-orange);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.rating-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--accent-emerald-light);
  color: var(--text-main);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-sm);
}

.rating-badge span {
  color: var(--accent-gold);
}

.featured-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.meta-row i {
  color: var(--accent-orange);
}

.featured-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: var(--tr-fast);
}

.featured-card:hover .featured-title {
  color: var(--accent-emerald);
}

.featured-excerpt {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.side-news-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.news-side-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  transition: var(--tr-smooth);
  box-shadow: var(--shadow-sm);
}

.news-side-item:hover, .news-side-item:active {
  border-color: var(--accent-emerald-light);
  background: #FFFFFF;
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.news-side-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.news-side-title {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.news-side-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* YETTI Brand Highlight Banner Light */
.yetti-hero-banner {
  background: linear-gradient(135deg, #FFFFFF 0%, #F1F7F4 100%);
  border: 1px solid #CBD5E1;
  border-radius: 24px;
  padding: 3rem 2rem;
  margin: 3.5rem 0;
  position: relative;
  box-shadow: var(--shadow-md);
}

.yetti-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.yetti-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 122, 36, 0.1);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.yetti-title {
  font-size: 2.2rem;
  margin-top: 0.5rem;
}

.yetti-intro-text {
  color: var(--text-muted);
  max-width: 650px;
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* Retailer Highlight Box - Dick's Sporting Goods */
.dicks-retailer-badge {
  background: #FFFFFF;
  border: 2px solid var(--dicks-light);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.dicks-logo-icon {
  width: 100px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dicks-logo-icon img {
  height: 38px;
  width: auto;
}

.dicks-retail-info h4 {
  font-size: 1.1rem;
  color: var(--text-main);
}

.dicks-retail-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.dicks-status-pill {
  display: inline-block;
  background: #008763;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

/* Yetti Products Grid Light */
.yetti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.yetti-prod-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--tr-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.yetti-prod-card:hover, .yetti-prod-card:active {
  border-color: var(--accent-orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.yetti-img-wrap {
  height: 220px;
  background: #F1F5F3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  position: relative;
  border: 1px solid var(--border-color);
}

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

.yetti-prod-card:hover .yetti-img-wrap img {
  transform: scale(1.05);
}

.yetti-category {
  font-size: 0.75rem;
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
}

.yetti-name {
  font-size: 1.2rem;
  margin: 0.35rem 0 0.5rem;
}

.yetti-spec-list {
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.yetti-spec-list li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.yetti-spec-list i {
  color: var(--accent-emerald-light);
}

.yetti-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.yetti-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.store-availability-badge {
  font-size: 0.78rem;
  color: var(--dicks-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Reviews Grid Light */
.section-header {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-title {
  font-size: 2rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.35rem;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}

.filter-btn {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.6rem 1.3rem;
  min-height: var(--touch-target-min);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--tr-fast);
  white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active, .filter-btn:active {
  background: var(--accent-emerald);
  color: #fff;
  border-color: var(--accent-emerald);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--tr-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.review-card:hover {
  border-color: var(--accent-emerald-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-thumb {
  height: 220px;
  background: #E2E8F0;
  position: relative;
  overflow: hidden;
}

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

.review-card:hover .review-thumb img {
  transform: scale(1.05);
}

.score-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--accent-orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.review-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.review-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald-light);
  text-transform: uppercase;
}

.review-card-title {
  font-size: 1.3rem;
  margin: 0.4rem 0 0.6rem;
}

.pros-cons-box {
  background: #F8FAF9;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
  margin: 0.8rem 0 1.2rem;
}

.pro-item {
  color: #258552;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.con-item {
  color: #DC2626;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.retailers-available {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.store-tags {
  display: flex;
  gap: 0.4rem;
}

.store-tag {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.75rem;
}

.store-tag.dicks {
  background: rgba(0, 86, 63, 0.1);
  border-color: var(--dicks-light);
  color: #008763;
}

.store-tag.big5 {
  background: rgba(10, 59, 140, 0.1);
  border-color: var(--big5-blue);
  color: var(--big5-blue);
}

/* Hiking Culture Light */
.culture-section {
  padding: 4rem 0;
  background: #F1F5F3;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.culture-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: var(--tr-smooth);
  box-shadow: var(--shadow-sm);
}

.culture-card:hover {
  border-color: var(--accent-emerald-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.culture-icon {
  width: 52px;
  height: 52px;
  background: rgba(37, 133, 82, 0.1);
  border: 1px solid var(--accent-emerald-light);
  color: var(--accent-emerald-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.culture-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.culture-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.culture-list {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.culture-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.culture-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-weight: 800;
}

/* Company Info Light */
.about-methodology-banner {
  margin: 3.5rem 0;
  background: #FFFFFF;
  border: 1px solid var(--border-highlight);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.methodology-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-box {
  background: #F8FAF9;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Lead Capture Section Light & Mobile Form Fixes */
.lead-section {
  background: linear-gradient(135deg, #1B5E3A 0%, #114227 100%);
  color: #FFFFFF;
  padding: 4rem 0;
}

.lead-box {
  background: #FFFFFF;
  color: var(--text-main);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.lead-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.lead-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.lead-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.lead-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.lead-feature-item i {
  color: var(--accent-orange);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #F8FAF9;
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Prevent auto-zoom on iOS Safari by using minimum font-size 16px */
.form-control {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.85rem 1rem;
  min-height: var(--touch-target-min);
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--tr-fast);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(232, 122, 36, 0.15);
}

.lead-privacy-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.4rem;
}

/* Modal Window Responsive Mobile */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--tr-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  border: 1px solid var(--accent-emerald-light);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: var(--tr-smooth);
  -webkit-overflow-scrolling: touch;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover, .modal-close:active {
  color: var(--accent-orange);
  background: #E2E8F0;
}

.plan-header-badge {
  background: var(--accent-emerald);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.plan-summary-box {
  background: #F8FAF9;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.1rem;
  margin: 1.25rem 0;
}

.coupon-code-wrap {
  background: rgba(232, 122, 36, 0.1);
  border: 2px dashed var(--accent-orange);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  margin-top: 1rem;
}

.coupon-code {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-orange);
  letter-spacing: 2px;
}

/* Store Locator Widget Responsive Table */
.store-locator-box {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.store-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1.25rem;
}

.store-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.store-table th, .store-table td {
  padding: 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.store-table th {
  color: var(--text-muted);
  font-weight: 600;
  background: #F8FAF9;
}

.store-name-dicks {
  color: var(--dicks-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-name-big5 {
  color: var(--big5-blue);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Main Footer Light */
.main-footer {
  background: #F1F5F3;
  border-top: 1px solid var(--border-color);
  padding: 3.5rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  max-width: 320px;
  font-size: 0.88rem;
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  padding: 2px 0;
  display: inline-block;
}

.footer-links a:hover, .footer-links a:active {
  color: var(--accent-orange);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: #FFFFFF;
  border: 1px solid var(--accent-emerald-light);
  color: var(--text-main);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInRight {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE & TABLET OPTIMIZED)
   ========================================================================== */

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .lead-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-methodology-banner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .featured-img-wrap { height: 320px; }
  .yetti-hero-banner { padding: 2.5rem 1.75rem; }
}

@media (max-width: 768px) {
  .top-bar-content { flex-direction: column; text-align: center; }
  .mobile-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 2px solid var(--accent-orange);
    display: none;
    box-shadow: var(--shadow-lg);
    gap: 0.5rem;
    z-index: 999;
  }
  
  .nav-menu.mobile-open { display: flex; }
  .nav-menu li { width: 100%; }
  .nav-link { width: 100%; padding: 0.75rem 0; font-size: 1.05rem; }
  
  .navbar { height: 70px; }
  .brand-logo img { height: 38px; }
  
  .featured-img-wrap { height: 250px; }
  .featured-title { font-size: 1.4rem; }
  .featured-body { padding: 1.25rem; }
  .badge-tag { font-size: 0.7rem; padding: 0.25rem 0.65rem; }
  .rating-badge { padding: 0.3rem 0.6rem; font-size: 0.85rem; }

  .yetti-title { font-size: 1.75rem; }
  .yetti-hero-banner { padding: 2rem 1.25rem; border-radius: 18px; }
  .dicks-retailer-badge { flex-direction: column; text-align: center; padding: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .modal-card { padding: 1.5rem 1.25rem; }
  .modal-card h2 { font-size: 1.4rem; }
  .coupon-code { font-size: 1.2rem; }

  .lead-box { padding: 1.75rem 1.25rem; border-radius: 18px; }
  .lead-title { font-size: 1.6rem; }
  .lead-form { padding: 1.25rem; }
  
  .section-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .container { width: 95%; padding: 0 0.35rem; }
  .btn { width: 100%; }
  .nav-actions { width: auto; }
  .nav-actions .btn-primary { display: none; } /* Show in mobile nav drawer instead */
  .yetti-grid, .reviews-grid, .culture-grid { grid-template-columns: 1fr; }
  .methodology-stats { grid-template-columns: 1fr; }
}
