/* ============================================
   BottleStoreNearMe.co.za — Main Stylesheet
   Mobile-first responsive design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #7B2D3B;
  --color-primary-dark: #5A1F2B;
  --color-primary-light: #9B3D4B;
  --color-secondary: #C9A857;
  --color-secondary-light: #D4BA72;
  --color-accent: #2D5A3D;
  --color-accent-light: #3A7550;
  --color-bg: #FAFAF7;
  --color-text: #1A1A1A;
  --color-muted: #6B6B6B;
  --color-card: #FFFFFF;
  --color-border: #E8E4DD;
  --color-success: #2D5A3D;
  --color-warning: #C9A857;
  --color-danger: #B33A3A;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --header-height: 56px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-stack);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  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, input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* Prevents iOS zoom */
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* --- Age Gate --- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 5, 8, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.age-gate__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.age-gate__title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-text);
}

.age-gate__text {
  color: var(--color-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 600;
  min-height: 48px;
  transition: all var(--transition);
}

.age-gate__btn--yes {
  background: var(--color-accent);
  color: #fff;
}

.age-gate__btn--yes:hover {
  background: var(--color-accent-light);
  transform: translateY(-1px);
}

.age-gate__btn--no {
  background: #E8E4DD;
  color: var(--color-muted);
}

.age-gate__btn--no:hover {
  background: #D8D4CD;
}

.age-gate__legal {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.header__logo-icon {
  font-size: 1.3rem;
}

.header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.header__hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.header__hamburger-icon span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header__hamburger[aria-expanded="true"] .header__hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger[aria-expanded="true"] .header__hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.header__hamburger[aria-expanded="true"] .header__hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Nav --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--color-card);
  z-index: 1001;
  transition: right 0.3s ease;
  padding: var(--header-height) 0 0;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.mobile-nav.is-active {
  right: 0;
}

.mobile-nav__list {
  padding: 16px 0;
}

.mobile-nav__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--color-text);
  font-weight: 500;
  min-height: 48px;
  transition: background var(--transition);
}

.mobile-nav__item a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

.mobile-nav__divider {
  height: 1px;
  background: var(--color-border);
  margin: 8px 24px;
}

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

/* --- Hero / Search Section --- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 32px 16px 36px;
  text-align: center;
}

.hero__tagline {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 20px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto 14px;
}

.search-bar__input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 1rem;
  color: var(--color-text);
  outline: none;
  transition: all var(--transition);
  min-height: 48px;
}

.search-bar__input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(201,168,87,0.2);
}

.search-bar__input::placeholder {
  color: #999;
}

.search-bar__icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.search-bar__submit {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition);
}

.search-bar__submit:hover {
  background: var(--color-accent-light);
}

.geo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  min-height: 44px;
}

.geo-btn:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* --- Category Pills --- */
.categories {
  padding: 16px 0;
  overflow: hidden;
  background: var(--color-bg);
}

.categories__scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 16px 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.categories__scroll::-webkit-scrollbar {
  display: none;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  scroll-snap-align: start;
  transition: all var(--transition);
  min-height: 44px;
  cursor: pointer;
  text-decoration: none;
}

.category-pill:hover,
.category-pill.is-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.category-pill__icon {
  font-size: 1.1rem;
}

/* --- Section --- */
.section {
  padding: 32px 16px;
}

.section--alt {
  background: #F3F1EC;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section__title {
  font-size: 1.3rem;
  color: var(--color-text);
}

.section__link {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* --- City Cards --- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.city-card {
  display: block;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity var(--transition);
}

.city-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary-light);
}

.city-card:hover::before {
  opacity: 1;
}

.city-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.city-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.city-card__province {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
}

.city-card__count {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* --- Store Cards --- */
.store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.store-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition);
}

.store-card:hover {
  box-shadow: var(--shadow-md);
}

.store-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
}

.store-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

.store-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.store-card__badge--open {
  background: #E8F5E9;
  color: var(--color-accent);
}

.store-card__badge--closed {
  background: #FCE4E4;
  color: var(--color-danger);
}

.store-card__badge--distance {
  background: #EDE7F6;
  color: #5C4B8A;
}

.store-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: var(--color-secondary);
  margin-bottom: 6px;
}

.store-card__rating-count {
  color: var(--color-muted);
  font-size: 0.8rem;
}

.store-card__address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
  line-height: 1.4;
}

.store-card__address-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-card__hours {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.store-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.store-card__cat-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--color-bg);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--color-muted);
}

.store-card__actions {
  display: flex;
  gap: 10px;
}

.store-card__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 44px;
  transition: all var(--transition);
  text-decoration: none;
}

.store-card__btn--call {
  background: var(--color-accent);
  color: #fff;
}

.store-card__btn--call:hover {
  background: var(--color-accent-light);
  color: #fff;
}

.store-card__btn--directions {
  background: var(--color-primary);
  color: #fff;
}

.store-card__btn--directions:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.store-card__btn--share {
  background: var(--color-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

/* --- How It Works --- */
.how-it-works {
  text-align: center;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.how-step {
  padding: 20px;
}

.how-step__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.how-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 8px;
}

.how-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.how-step__text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* --- Popular Searches (Tag Cloud) --- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tag-cloud__tag {
  display: inline-block;
  padding: 8px 14px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--color-muted);
  transition: all var(--transition);
  text-decoration: none;
  min-height: 44px;
  line-height: 26px;
}

.tag-cloud__tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #FFF;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 32px 16px 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.footer__link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer__link:hover {
  color: #fff;
}

.footer__responsible {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--color-secondary-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer__powered {
  color: rgba(255,255,255,0.5);
}

.footer__powered a {
  color: rgba(255,255,255,0.7);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 16px;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  font-size: 0.85rem;
  overflow-x: auto;
  white-space: nowrap;
}

.breadcrumb a {
  color: var(--color-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.breadcrumb__sep {
  color: var(--color-border);
  margin: 0 8px;
}

.breadcrumb__current {
  color: var(--color-text);
  font-weight: 600;
}

/* --- City Page Hero --- */
.city-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 24px 16px 28px;
  text-align: center;
  color: #fff;
}

.city-hero__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.city-hero__meta {
  font-size: 0.95rem;
  opacity: 0.85;
}

.city-hero__province {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 4px;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: var(--color-card);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.filter-bar select,
.filter-bar .filter-btn {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: 0.9rem;
  color: var(--color-text);
  min-height: 44px;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.filter-bar select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* --- Map Placeholder --- */
.map-placeholder {
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 20px;
  text-align: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.map-placeholder__icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
  display: block;
}

/* --- Store Detail Page --- */
.store-detail {
  padding: 20px 16px;
}

.store-detail__name {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.store-detail__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.store-detail__stars {
  color: var(--color-secondary);
  font-size: 1rem;
}

.store-detail__review-count {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.store-detail__info {
  margin-bottom: 20px;
}

.store-detail__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.store-detail__row-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.store-detail__row-content {
  flex: 1;
}

.store-detail__row-content a {
  color: var(--color-primary);
}

.store-detail__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.store-detail__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  min-height: 48px;
  text-decoration: none;
  transition: all var(--transition);
}

.store-detail__btn--call {
  background: var(--color-accent);
  color: #fff;
}

.store-detail__btn--call:hover {
  background: var(--color-accent-light);
  color: #fff;
}

.store-detail__btn--directions {
  background: var(--color-primary);
  color: #fff;
}

.store-detail__btn--directions:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.store-detail__btn--share {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  flex: 0;
  padding: 14px;
}

/* Hours Table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}

.hours-table th,
.hours-table td {
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}

.hours-table th {
  font-weight: 600;
  color: var(--color-text);
}

.hours-table td {
  color: var(--color-muted);
}

.hours-table tr.is-today {
  background: #FFF8E7;
}

.hours-table tr.is-today td {
  color: var(--color-text);
  font-weight: 600;
}

/* --- Load More --- */
.load-more {
  text-align: center;
  padding: 24px;
}

.load-more__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 600;
  min-height: 48px;
  transition: all var(--transition);
  cursor: pointer;
}

.load-more__btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* --- SEO Text Block --- */
.seo-text {
  padding: 24px 16px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.seo-text h2 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.seo-text p {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- About Page --- */
.about-content {
  padding: 24px 16px;
  max-width: 700px;
}

.about-content h1 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.about-content p {
  margin-bottom: 14px;
  color: var(--color-text);
  line-height: 1.7;
}

.about-content ul {
  margin-bottom: 14px;
  padding-left: 20px;
}

.about-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--color-text);
  line-height: 1.6;
}

.about-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* --- Skeleton Loading --- */
.skeleton {
  background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.skeleton--text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton--title {
  height: 22px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton--card {
  height: 120px;
  border-radius: var(--radius-md);
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* --- Drink Responsibly Banner --- */
.drink-responsibly {
  text-align: center;
  padding: 10px 16px;
  background: #FFF8E7;
  border-top: 1px solid #E8DFC0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.drink-responsibly strong {
  color: var(--color-primary);
}

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.3s ease;
}

.slide-up {
  animation: slideUp 0.4s ease;
}

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.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;
}

.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ============================================
   Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  .header {
    padding: 0 24px;
  }

  .header__hamburger {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .desktop-nav a {
    color: rgba(255,255,255,0.85);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition);
  }

  .desktop-nav a:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
  }

  .hero {
    padding: 48px 24px 52px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__tagline {
    font-size: 1rem;
    max-width: 440px;
  }

  .section {
    padding: 40px 24px;
  }

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .footer {
    padding: 40px 24px 24px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .store-detail {
    padding: 28px 24px;
  }

  .about-content {
    padding: 32px 24px;
    margin: 0 auto;
  }
}

/* ============================================
   Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hero {
    padding: 56px 32px 60px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__tagline {
    font-size: 1.1rem;
    max-width: 520px;
  }

  .section {
    padding: 48px 32px;
  }

  .section__inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .city-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .store-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 36px 32px;
  }

  .store-detail__actions {
    max-width: 500px;
  }

  .about-content {
    padding: 40px 32px;
  }

  .footer {
    padding: 48px 32px 24px;
  }

  .footer__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .header,
  .age-gate,
  .mobile-nav,
  .nav-overlay,
  .categories,
  .hero,
  .search-bar,
  .geo-btn,
  .store-card__btn--directions,
  .store-detail__btn--directions,
  .store-detail__btn--share,
  .footer,
  .drink-responsibly {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .store-card__btn--call::after {
    content: " " attr(href);
    font-weight: normal;
  }

  a[href^="tel:"]::after {
    content: " (" attr(href) ")";
  }

  .store-card,
  .city-card {
    break-inside: avoid;
    border: 1px solid #ddd;
  }
}
