/* ============================================================
   TOTALLY TUESDAY — Public Site Stylesheet
   Retro 70s groovy vibes — burnt orange, warm cream, dark espresso
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --orange:    #C8612A;
  --orange-dk: #A84E20;
  --orange-lt: #E0733C;
  --cream:     #F4E4C1;
  --cream-dk:  #E8D09A;
  --cream-lt:  #FBF5E6;
  --dark:      #1C0E05;
  --dark-lt:   #3A2010;
  --brown:     #7A4828;
  --tan:       #C49A6C;
  --warm-white: #FEFAF3;
  --gray:      #7A6658;

  --font-display: 'Pacifico', 'Comic Sans MS', cursive;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 20px rgba(28, 14, 5, 0.12);
  --shadow-hover: 0 10px 32px rgba(28, 14, 5, 0.22);
  --transition: 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover { color: var(--orange-dk); }

ul, ol { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Event Banner ──────────────────────────────────────────── */
.event-banner {
  background: var(--orange);
  color: var(--cream-lt);
  text-align: center;
  padding: .6rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  position: relative;
  z-index: 100;
}

.event-banner a { color: var(--cream); text-decoration: underline; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
  border-bottom: 2px solid var(--orange-dk);
}

.site-nav .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: .6rem;
  padding-bottom: .6rem;
}

/* Logo image in nav */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}

/* Fallback text if image fails */
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream) !important;
  letter-spacing: .01em;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.nav-links {
  display: flex;
  flex: 1;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}

/* Merchant Login CTA — always visible, pinned right */
.nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: .45rem 1.1rem !important;
}

.nav-links a {
  color: rgba(244, 228, 193, .75);
  font-size: .9rem;
  font-weight: 600;
  transition: color 0.15s;
  white-space: nowrap;
  letter-spacing: .01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem .5rem;
  color: var(--cream);
  font-size: 1.45rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--cream-lt);
  text-align: center;
  padding: 5rem 1.25rem 5rem;
  overflow: hidden;
}

/* Large decorative orange circle — echoes the logo shape */
.hero::before {
  content: '';
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, 150vw);
  height: min(760px, 150vw);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--orange-lt) 0%, var(--orange) 50%, var(--orange-dk) 100%);
  opacity: .22;
  pointer-events: none;
}

/* Subtle dot texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244,228,193,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

/* Logo in hero */
.hero-logo {
  display: block;
  height: clamp(140px, 28vw, 220px);
  width: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.5));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--cream-lt);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: .01em;
  margin-bottom: .75rem;
  color: var(--cream);
  text-shadow: 0 4px 16px rgba(0,0,0,.4);
}

.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  font-weight: 500;
  opacity: .88;
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--cream);
}

.hero-bodies {
  margin: 0 auto 2rem;
  max-width: 600px;
  font-size: .85rem;
  color: rgba(244,228,193,.7);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 1.75rem;
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background 0.15s, color 0.15s;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: .01em;
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
  }
}
.btn:active { transform: scale(.97); }

/* Orange fill — main CTA */
.btn-orange, .btn-pink {
  background: var(--orange);
  color: var(--cream-lt);
  border-color: var(--orange);
}
.btn-orange:hover, .btn-pink:hover {
  background: var(--orange-dk);
  color: var(--cream-lt);
}

/* Cream fill — secondary */
.btn-cream, .btn-white {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn-cream:hover, .btn-white:hover {
  background: var(--cream-dk);
  color: var(--dark);
}

/* Outline */
.btn-outline-dark, .btn-outline-purple {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover, .btn-outline-purple:hover {
  background: var(--dark);
  color: var(--cream-lt);
}

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-cream:hover {
  background: var(--cream);
  color: var(--dark);
}

.btn-sm {
  font-size: .82rem;
  padding: .5rem 1.1rem;
  min-height: 36px;
}

/* ── Section Layout ────────────────────────────────────────── */
section { padding: 3.5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--dark);
  margin-bottom: .4rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.section-accent {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--tan));
  border-radius: 2px;
  margin: .6rem auto 0;
}

/* ── Item Grid ─────────────────────────────────────────────── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 230px));
  gap: 1.25rem;
  justify-content: center;
}

/* ── Item Card ─────────────────────────────────────────────── */
.item-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--cream-dk);
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (hover: hover) {
  .item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
  }
  .item-card:hover .item-card-img img {
    transform: scale(1.06);
  }
}

.item-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream-lt);
  position: relative;
}

.item-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.item-card-img .no-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tan);
  font-size: 2.5rem;
}

.item-card-body {
  padding: .9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.item-store-name {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray);
}

.item-price {
  display: inline-block;
  background: var(--orange);
  color: var(--cream-lt);
  font-weight: 700;
  font-size: .85rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  width: fit-content;
}

.item-card-body .btn {
  margin-top: auto;
  width: 100%;
}

/* ── Store Grid ────────────────────────────────────────────── */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 210px));
  gap: 1.25rem;
  justify-content: center;
}

.store-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--cream-dk);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (hover: hover) {
  .store-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }
}

.store-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-lt);
  border: 3px solid var(--cream-dk);
}

.store-logo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-lt), var(--orange-dk));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-lt);
  font-family: var(--font-display);
  font-size: 1.75rem;
  flex-shrink: 0;
  border: 3px solid rgba(200,97,42,.3);
}

.store-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.2;
}

.store-card .btn { font-size: .78rem; }

/* ── How It Works ──────────────────────────────────────────── */
.how-section { background: var(--cream-lt); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 260px));
  gap: 1.5rem;
  counter-reset: steps;
  justify-content: center;
}

.how-step {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--cream-dk);
  position: relative;
}

.how-step::before {
  counter-increment: steps;
  content: counter(steps);
  display: flex;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--cream-lt);
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 3px 10px rgba(200, 97, 42, .35);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--orange-dk);
}

.how-step p { font-size: .9rem; color: var(--gray); }

/* ── Body Tags ──────────────────────────────────────────────── */
.body-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.body-tag {
  background: var(--cream);
  color: var(--dark-lt);
  border: 1.5px solid var(--cream-dk);
  padding: .4rem .9rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
}

/* ── Warning / Info Box ─────────────────────────────────────── */
.info-warning {
  background: #fff8e6;
  border: 1.5px solid var(--cream-dk);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: .88rem;
  color: var(--dark-lt);
  line-height: 1.6;
}

/* ── Stay Connected section ─────────────────────────────────── */
.section-connect {
  background: var(--dark);
  text-align: center;
  padding: 3.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

/* Decorative circle echo */
.section-connect::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,97,42,.25) 0%, transparent 70%);
  pointer-events: none;
}

.section-connect .container { position: relative; z-index: 1; }

.section-connect h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: .5rem;
  color: var(--cream);
}

.section-connect .sub {
  color: rgba(244,228,193,.7);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.connect-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.connect-note {
  font-size: .85rem;
  color: rgba(244,228,193,.5);
  margin-top: .5rem;
}

.connect-note a { color: var(--tan); }

/* ── Merchant CTA ──────────────────────────────────────────── */
.merchant-cta {
  background: var(--orange);
  color: var(--cream-lt);
  text-align: center;
  padding: 4rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.merchant-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.merchant-cta::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}

.merchant-cta .container { position: relative; z-index: 1; }

.merchant-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: .6rem;
  color: var(--cream-lt);
}

.merchant-cta p {
  opacity: .9;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  color: var(--cream-lt);
}

/* ── Inquiry Form ──────────────────────────────────────────── */
.inquiry-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--warm-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--cream-dk);
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .35rem;
  color: var(--dark);
  letter-spacing: .01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--cream-dk);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--cream-lt);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

/* Custom file upload widget */
.file-upload-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  padding: .45rem .7rem;
  border: 1.5px dashed var(--cream-dk);
  border-radius: var(--radius-sm);
  background: var(--cream-lt);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-size: 1rem;
}

.file-upload-label:hover {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200,97,42,.12);
}

.file-upload-btn {
  background: var(--orange);
  color: var(--cream-lt);
  padding: .4rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.file-upload-label:hover .file-upload-btn {
  background: var(--orange-dk);
}

.file-upload-name {
  color: var(--gray);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: .92rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(200, 97, 42, .18);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(244,228,193,.6);
  text-align: center;
  padding: 2.5rem 1rem 2rem;
  font-size: .88rem;
  border-top: 2px solid var(--orange-dk);
}

.footer-logo {
  height: 64px;
  width: auto;
  margin: 0 auto .75rem;
  opacity: .9;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.4));
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  display: block;
  margin-bottom: .5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin: .75rem 0;
}

.footer-links a {
  color: rgba(244,228,193,.55);
  font-size: .85rem;
  transition: color 0.15s;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { color: var(--cream); }

/* ── Loading / Empty States ─────────────────────────────────── */
.loading { text-align: center; padding: 3rem; color: var(--gray); }

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--cream);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.empty-state { text-align: center; padding: 4rem 1rem; color: var(--gray); }
.empty-state .emoji { font-size: 3rem; margin-bottom: .75rem; }

/* ── Flash / Alert Messages ─────────────────────────────────── */
.alert {
  padding: .85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

.alert-success { background: #e9f5e9; color: #2d6a2d; border-left: 4px solid #4caf50; }
.alert-error   { background: #fdf0ed; color: #8b2500; border-left: 4px solid var(--orange); }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .55rem;
  border-radius: 999px;
}

.badge-live   { background: var(--cream); color: var(--dark); border: 1px solid var(--cream-dk); }
.badge-active { background: #d4edda; color: #155724; }

/* ── Responsive — Tablet ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-lt);
    padding: 0 1.25rem;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease;
    pointer-events: none;
    border-top: 1px solid rgba(244,228,193,.1);
  }

  .nav-links.open {
    max-height: 440px;
    opacity: 1;
    padding: .75rem 1.25rem 1rem;
    pointer-events: auto;
  }

  .nav-links a {
    padding: .65rem 0;
    border-bottom: 1px solid rgba(244,228,193,.08);
    font-size: 1rem;
    width: 100%;
  }

  .nav-links a:last-child { border-bottom: none; }

  .nav-links .btn {
    margin-top: .5rem;
    border-radius: var(--radius-sm);
    width: 100%;
    text-align: center;
  }

  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-cta { font-size: .78rem; padding: .35rem .75rem !important; }
  .site-nav .container { position: relative; }

  .hero { padding: 3.5rem 1.25rem 3.5rem; }
  .hero-logo { height: clamp(110px, 40vw, 160px); }

  .items-grid  { grid-template-columns: repeat(2, minmax(0, 230px)); gap: 1rem; }
  .stores-grid { grid-template-columns: repeat(2, minmax(0, 210px)); gap: 1rem; }
  .how-steps   { grid-template-columns: repeat(2, minmax(0, 260px)); }

  section { padding: 2.5rem 0; }

  .connect-actions { flex-direction: column; align-items: center; }
  .connect-actions .btn { width: 100%; max-width: 320px; }
}

/* ── Responsive — Mobile ────────────────────────────────────── */
@media (max-width: 480px) {
  .items-grid  { grid-template-columns: repeat(2, minmax(0, 230px)); gap: .75rem; }
  .stores-grid { grid-template-columns: repeat(2, minmax(0, 210px)); }
  .how-steps   { grid-template-columns: repeat(2, minmax(0, 260px)); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .inquiry-form { padding: 1.5rem 1.25rem; }
  .merchant-cta { padding: 3rem 1.25rem; }
}

/* ── Responsive — Small phones ──────────────────────────────── */
@media (max-width: 360px) {
  .items-grid  { grid-template-columns: repeat(2, minmax(0, 230px)); gap: .6rem; }
  .stores-grid { grid-template-columns: repeat(2, minmax(0, 210px)); }
  .item-card-body { padding: .65rem .75rem .75rem; }
}

/* ── Hero Compact (sub-pages) ───────────────────────────────── */
.hero-compact {
  position: relative;
  background: var(--dark);
  color: var(--cream-lt);
  text-align: center;
  padding: 2.75rem 1.25rem 2.5rem;
  overflow: hidden;
  border-bottom: 3px solid var(--orange-dk);
}

.hero-compact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 120vw);
  height: min(500px, 120vw);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--orange-lt) 0%, var(--orange) 50%, var(--orange-dk) 100%);
  opacity: .12;
  pointer-events: none;
}

.hero-compact .container { position: relative; z-index: 1; }

.hero-compact-logo {
  height: 72px;
  width: auto;
  margin: 0 auto .9rem;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.45));
}

.hero-compact h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--cream);
  margin-bottom: .5rem;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
}

.hero-compact .hero-sub {
  margin-bottom: 0;
  font-size: clamp(.9rem, 2vw, 1.1rem);
}

/* ── Benefit List (be-a-merchant) ───────────────────────────── */
.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

.benefit-list li {
  padding-left: 1.5rem;
  position: relative;
}

.benefit-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: .75rem;
  top: .2rem;
}

/* ── Container Narrow ───────────────────────────────────────── */
.container-narrow {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Form Help Text ─────────────────────────────────────────── */
.form-help {
  font-size: .78rem;
  color: var(--gray);
  margin-top: .3rem;
  line-height: 1.4;
}

/* ── Button aliases (backward compat) ──────────────────────── */
.btn-outline-purple {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-purple:hover {
  background: var(--dark);
  color: var(--cream-lt);
}

/* ── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
