:root {
  --brand-red: #c10f30;
  --brand-red-bright: #ef153e;
  --brand-red-dark: #900821;
  --dark: #1b1b1b;
  --light: #f7f7f7;
  --text-gray: #5e5e5e;
  --content-max: 1024px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body { margin: 0; font-family: "Source Sans Pro", Arial, Helvetica, sans-serif; color: #333; line-height: 1.65; font-size: 17px; background: #fff; }
h1, h2, h3, h4 { font-family: "Fjalla One", Arial, Helvetica, sans-serif; letter-spacing: 0.5px; color: #222; }
a { color: var(--brand-red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ---------- HEADER: single bar — logo | nav | phone ---------- */
.site-header { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.12); position: relative; z-index: 300; }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1400px; margin: 0 auto; padding: 10px 28px; }
.brand { flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; display: block; }
.phone { font-weight: 700; color: var(--brand-red); font-size: 22px; font-family: "Fjalla One", Arial, sans-serif; white-space: nowrap; }
.phone:hover { text-decoration: none; color: var(--brand-red-dark); }

.site-nav { flex: 1; }
.site-nav > ul { list-style: none; display: flex; justify-content: center; align-items: center; gap: 6px; margin: 0; padding: 0; }
.site-nav a, .dropdown-toggle {
  color: #333; padding: 22px 16px; display: inline-flex; align-items: center; gap: 6px;
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.125em;
}
.site-nav a.active { color: var(--brand-red); }
.site-nav a:hover, .dropdown-toggle:hover { color: var(--brand-red); text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: #333; padding: 8px 16px; }

.site-nav li { position: relative; }
.has-dropdown .dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; min-width: 240px; z-index: 400; flex-direction: column;
  padding: 8px 0; margin: 0; list-style: none; box-shadow: 0 6px 20px rgba(0,0,0,0.18); border-top: 3px solid var(--brand-red);
}
.has-dropdown.open .dropdown-menu, .has-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu li { width: 100%; }
.dropdown-menu a { display: block; padding: 11px 22px; white-space: nowrap; text-transform: none; letter-spacing: 0.02em; font-size: 15px; }
.dropdown-menu a:hover { background: var(--light); }

/* Quick Links (top-right, optional, admin-configured) */
.quick-links { position: relative; flex-shrink: 0; }
.quick-links-toggle { background: var(--brand-red); color: #fff; border: none; padding: 8px 14px; border-radius: 4px; cursor: pointer; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.quick-links-menu { display: none; position: absolute; right: 0; top: 120%; background: #fff; border-radius: 6px; box-shadow: 0 6px 24px rgba(0,0,0,0.2); padding: 18px; z-index: 500; grid-template-columns: repeat(3, 180px); gap: 20px; }
.quick-links-menu.open { display: grid; }
.quick-links-group h4 { margin: 0 0 8px; font-size: 14px; color: var(--brand-red); border-bottom: 1px solid #eee; padding-bottom: 4px; }
.quick-links-group ul { list-style: none; margin: 0; padding: 0; }
.quick-links-group li { margin-bottom: 6px; }

/* ---------- HERO: full-bleed photo + red circle badge ---------- */
.hero {
  position: relative;
  background: url('/assets/images/hero.webp') center 40%/cover no-repeat;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,0.18); }
.hero-badge {
  position: relative;
  background: var(--brand-red);
  color: #fff;
  width: 380px; height: 380px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.hero-badge h1 { color: #fff; font-size: 34px; margin: 0 0 22px; line-height: 1.2; }
.hero .btn-primary { background: #fff; color: var(--brand-red); }

.btn { display: inline-block; padding: 13px 32px; border-radius: 3px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 14px; }
.btn:hover { text-decoration: none; filter: brightness(0.95); }
.btn-primary { background: var(--brand-red); color: #fff; }
.btn-secondary { background: var(--brand-red); color: #fff; border: none; cursor: pointer; }

/* ---------- SECTIONS: centered column ---------- */
.site-main { text-align: center; }
section { padding: 64px 24px; max-width: var(--content-max); margin: 0 auto; }
section h2 { font-size: 34px; margin-top: 0; }
section h3 { font-size: 22px; }
.page-header { padding-bottom: 8px; }
.page-header h1 { font-size: 40px; margin-bottom: 0; }
.page-content { padding-top: 24px; }

/* Alternating band (red, full width) e.g. mobile app section */
.band-red { max-width: none; background: var(--brand-red); color: #fff; }
.band-red h2, .band-red h3 { color: #fff; }
.band-red .band-inner { max-width: var(--content-max); margin: 0 auto; }
.band-red a { color: #fff; text-decoration: underline; }
.band-red .btn { background: #e6e6e6; color: #222; }

/* ---------- FORMS ---------- */
.contact-form { text-align: left; max-width: 560px; margin: 0 auto; }
.contact-form h2 { text-align: center; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-weight: 600; margin-bottom: 4px; }
.field input, .field textarea, .field select { padding: 11px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; font-family: inherit; }
.hp-field { position: absolute; left: -9999px; }
.form-notice { padding: 12px 16px; border-radius: 4px; margin-bottom: 16px; }
.form-notice.success { background: #e6f7e6; color: #1a6b1a; }
.form-notice.error { background: #fde8e8; color: #a11; }

/* ---------- CONTENT GROUPS (menu/coupons/loyalty/frozen) ---------- */
.content-group { margin-bottom: 56px; }
.content-group h2 { color: #222; position: relative; padding-bottom: 14px; }
.content-group h2::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 0; width: 70px; height: 3px; background: var(--brand-red); }
.content-group-note { font-size: 14px; color: var(--text-gray); }
.content-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; margin-top: 28px; text-align: center; }
.content-item { flex: 0 1 300px; }
.content-item { border: 1px solid #eee; border-radius: 6px; padding: 22px 18px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.content-item h3 { margin: 0 0 8px; font-size: 19px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; }
.content-item-desc { font-size: 15px; color: #555; margin: 6px 0; }
.content-item-price { font-weight: 700; white-space: pre-line; margin: 10px 0; color: var(--brand-red); }
.content-item-note { font-size: 12.5px; color: var(--text-gray); margin: 6px 0 0; }
.content-fineprint { font-size: 13px; color: var(--text-gray); text-align: center; }
.content-empty { text-align: center; padding: 40px 0; color: var(--text-gray); }
.badge { padding: 2px 9px; border-radius: 3px; font-size: 11px; color: #fff; font-family: "Source Sans Pro", sans-serif; letter-spacing: 0.05em; }
.badge-new { background: #1a6b1a; }
.badge-limited { background: #b8860b; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.gallery-item { margin: 0; }
.gallery-item img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; }
.gallery-item figcaption { font-size: 12px; color: var(--text-gray); margin-top: 4px; }

/* ---------- DOWNLOAD ITEMS (direct links only; page 404s) ---------- */
.download-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid #eee; }

/* ---------- FOOTER: centered, light ---------- */
.site-footer { background: var(--light); border-top: 1px solid #e5e5e5; padding: 40px 24px 24px; margin-top: 40px; }
.footer-cols { display: flex; justify-content: center; gap: 70px; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-col { min-width: 220px; max-width: 340px; }
.hours-drop summary { cursor: pointer; list-style: none; padding: 6px 0; }
.hours-drop summary::-webkit-details-marker { display: none; }
.hours-caret { color: var(--brand-red); }
.hours-drop[open] .hours-caret { display: inline-block; transform: rotate(180deg); }
.site-footer h3 { font-size: 26px; margin: 0 0 10px; }
.site-footer h4 { font-size: 20px; margin: 0 0 8px; }
.site-footer p { max-width: 640px; margin: 6px auto; color: #444; }
.site-footer a { color: var(--brand-red); }
.hours-note { font-size: 13.5px; color: var(--text-gray); }
.footer-copy { margin-top: 30px; font-size: 13px; color: #888; text-align: center; }

/* ---------- MISC (maintenance, errors, overlays, cookies, captcha) ---------- */
.maintenance-body, .error-body { background: var(--dark); color: #fff; text-align: center; padding: 100px 20px; }
.maintenance-box h1, .error-box h1 { color: var(--brand-red-bright); }
.maintenance-box h2, .error-box h2, .maintenance-box p, .error-box p { color: #eee; }

.erpm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 1000; }
.erpm-overlay-box { background: #fff; width: 92%; max-width: 960px; height: 88%; border-radius: 8px; position: relative; padding: 16px; }
.erpm-overlay-close { position: absolute; top: 8px; right: 12px; font-size: 24px; background: none; border: none; cursor: pointer; }
#erpm-ticket-frame { width: 100%; height: calc(100% - 40px); border: none; }

.erpm-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--dark); color: #fff; padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; z-index: 900; text-align: left; }
.erpm-cookie-banner p { margin: 0; max-width: 720px; font-size: 14px; }
.erpm-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.erpm-cookie-actions button { padding: 9px 22px; border-radius: 3px; border: 1px solid #fff; background: transparent; color: #fff; cursor: pointer; }
.erpm-cookie-actions button.btn-primary { background: var(--brand-red); border-color: var(--brand-red); }

.captcha-gate { min-height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; gap: 16px; }

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .header-bar { flex-wrap: wrap; padding: 10px 16px; }
  .phone { font-size: 18px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { flex-basis: 100%; }
  .site-nav > ul { display: none; flex-direction: column; align-items: stretch; }
  .site-nav > ul.open { display: flex; }
  .site-nav li { width: 100%; text-align: left; }
  .site-nav a, .dropdown-toggle { width: 100%; padding: 14px 10px; justify-content: space-between; }
  .has-dropdown .dropdown-menu { position: static; transform: none; display: none; box-shadow: none; border-top: none; background: var(--light); }
  .has-dropdown.open .dropdown-menu { display: flex; }
  .hero { min-height: 420px; }
  .hero-badge { width: 300px; height: 300px; padding: 28px; }
  .hero-badge h1 { font-size: 26px; }
  section { padding: 44px 18px; }
  section h2 { font-size: 28px; }
  .quick-links-menu { grid-template-columns: 1fr; right: -8px; left: auto; width: 260px; }
}

/* Hours table (footer) */
.hours-table { margin: 0 auto; border-collapse: collapse; }
.hours-table td { padding: 3px 14px; color: #444; }
.hours-table td:first-child { text-align: right; }
.hours-table td:last-child { text-align: left; }
.hours-today td { font-weight: 700; color: var(--brand-red); }

/* Tighter bullet lists */
.site-main ul { padding-left: 22px; }
.site-main li { margin: 4px 0; padding-left: 2px; }

/* Tighter bullet lists site-wide */
.site-main ul, .site-main ol { padding-left: 22px; text-align: left; display: inline-block; margin: 8px 0; }
.site-main li { margin: 4px 0; padding-left: 2px; }
