/* ═══════════════════════════════════════════════
   YAFA COFFEE – Full Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────── */
:root {
  --orange: #e8874b;
  --orange-dark: #d66a3d;
  --orange-light: #f5a66e;
  --beige: #fef7ed;
  --cream: #fdf5e6;
  --gold: #d4a574;
  --dark: #1a1a1a;
  --gray: #666;
  --gray-light: #999;
  --border: #e5e5e5;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: .3s ease;
  --max-width: 1140px;
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── Utility ────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

.section-label {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-heading {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,135,75,.35);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-outline-nav {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
  padding: .5rem 1.25rem;
  font-size: .85rem;
}
.btn-outline-nav:hover {
  background: var(--dark);
  color: var(--white);
}
.btn-primary-nav {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: .5rem 1.25rem;
  font-size: .85rem;
}
.btn-primary-nav:hover {
  background: var(--orange-dark);
}
.btn-full { width: 100%; }
.btn-sm { padding: .5rem 1rem; font-size: .82rem; }

/* ═══════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════ */
.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  padding: .5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.topbar-left, .topbar-center, .topbar-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.topbar-right { justify-content: flex-end; padding-right: 11rem; }
.topbar-center { white-space: nowrap; }
.topbar-right a {
  color: var(--white);
  opacity: .85;
  transition: opacity var(--transition);
}
.topbar-right a:hover { opacity: 1; }
.topbar-right a svg { width: 24px; height: 24px; }

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 36px; /* height of topbar */
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Push page content below the fixed topbar + navbar */
body {
  padding-top: 156px; /* ~36px topbar + 120px navbar */
}
.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 120px;
}
.nav-links {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.nav-links-left {
  gap: .65rem;
  justify-content: flex-start;
  margin-left: -4rem;
}
.nav-links-right {
  justify-content: flex-end;
  gap: .5rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Logo */
.nav-logo {
  justify-self: center;
  z-index: 10;
}
.nav-logo-img {
  height: 110px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  transition: transform var(--transition);
}
.nav-logo-img:hover { transform: scale(1.08); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: .5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.nav-mobile a {
  padding: .5rem 0;
  font-weight: 500;
  color: var(--dark);
}
.nav-mobile a.active { color: var(--orange); }
.nav-mobile .btn { text-align: center; margin-top: .25rem; }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: calc(100vh - 156px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(232,135,75,.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 10%, #fdf5e6 35%, #f7e4cc 60%, #f0d0a8 85%, #e8a76b 100%);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.32) 0%, rgba(0,0,0,.12) 40%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.28) 100%);
}

/* ── Centered Hero Content ── */
.hero-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 48rem;
  padding: 2rem 2rem 4rem;
  animation: heroFadeUp 1s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .2s;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1rem;
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .35s;
}
.hero-heading-main {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
  margin-bottom: 2rem;
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .5s;
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: .5px;
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .7s;
}
.hero:not(.hero-has-video) .hero-sub { color: var(--gray); text-shadow: none; }

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) both;
  animation-delay: .7s;
}

/* Hero buttons — modern rounded style */
.hero-btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  border-radius: 12px;
  padding: .85rem 2.2rem;
  font-size: .95rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(232,135,75,.3);
  transition: all .25s ease;
}
.hero-btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,135,75,.4);
}
.hero-btn-outline {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  border-radius: 12px;
  padding: .85rem 2.2rem;
  font-size: .95rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .25s ease;
}
.hero-btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,.1);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: heroFadeUp 1s ease both;
  animation-delay: 1.1s;
}
.hero-scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: rgba(255,255,255,.5);
  border-radius: 4px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: .3; transform: translateY(12px); }
}

/* Hide old hero-content */
.hero-content { display: none; }

/* No-video hero fallback */
.hero:not(.hero-has-video) .hero-heading-main { color: var(--dark); text-shadow: none; }
.hero:not(.hero-has-video) .hero-label { color: var(--orange); }
.hero:not(.hero-has-video) .hero-btn-outline { color: var(--dark); border-color: var(--dark); background: transparent; }

/* Animated wavy line under hero subtitle — spans full text width */
.hero-subtitle-wave {
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
}
.hero-subtitle-wave::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'%3E%3Cpath d='M0 6 C10 0 20 0 30 6 S50 12 60 6 S80 0 90 6 S110 12 120 6' fill='none' stroke='%23e8874b' stroke-width='2.5'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 120px 12px;
  animation: waveSlide 2s linear infinite;
}
@keyframes waveSlide {
  0% { background-position-x: 0; }
  100% { background-position-x: 120px; }
}

/* ═══════════════════════════════════════════════
   IMAGE GRID (4 images)
   ═══════════════════════════════════════════════ */
/* ── Hero Divider ── */
.hero-divider {
  margin-top: -2px;
  line-height: 0;
}
.hero-divider svg {
  width: 100%;
  height: 50px;
  display: block;
}

.image-grid-section { padding: 0; }
.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.image-grid-item {
  overflow: hidden;
  aspect-ratio: 1;
}
.image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.image-grid-item { cursor: pointer; }
.image-grid-item:hover img { transform: scale(1.08); }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.active { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
  cursor: default;
}

/* ═══════════════════════════════════════════════
   WHOLESALE PAGE
   ═══════════════════════════════════════════════ */
.wholesale-intro {
  padding: 4rem 0 2rem;
}
.wholesale-intro-text {
  max-width: 650px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.7;
}
.wholesale-section {
  padding: 2rem 0 6rem;
}
.wholesale-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
}
.wholesale-filter-btn {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
  padding: .5rem 1.25rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.wholesale-filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.wholesale-filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.wholesale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.wholesale-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.wholesale-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.wholesale-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.wholesale-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.wholesale-card:hover .wholesale-card-img img { transform: scale(1.06); }
.wholesale-card-body {
  padding: 1.25rem;
}
.wholesale-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.wholesale-card-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: .75rem;
}
.wholesale-card-meta {
  display: flex;
  align-items: baseline;
  gap: .25rem;
  margin-bottom: .35rem;
}
.wholesale-card-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}
.wholesale-card-unit {
  font-size: .85rem;
  color: var(--gray);
}
.wholesale-card-min {
  font-size: .8rem;
  color: var(--gray-light);
  font-style: italic;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.wholesale-inquiry {
  padding: 0 0 6rem;
}
.wholesale-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem;
  margin-top: .35rem;
}
.wholesale-check-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  cursor: pointer;
  padding: .4rem .5rem;
  border-radius: 6px;
  transition: background .2s;
}
.wholesale-check-item:hover { background: var(--beige); }
.wholesale-check-item input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .wholesale-grid { grid-template-columns: repeat(2, 1fr); }
  .wholesale-check-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .wholesale-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   OUR FAMILY (About page)
   ═══════════════════════════════════════════════ */
.family-section {
  padding: 6rem 0;
  background: var(--beige);
}
.family-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: center;
}
.family-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.family-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.family-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  transition: transform .5s ease;
}
.family-image:hover img { transform: scale(1.03); }

/* Family member editor in admin */
.family-member-editor {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: .75rem;
}

@media (max-width: 768px) {
  .family-row { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════
   OUR STORY
   ═══════════════════════════════════════════════ */
.our-story {
  padding: 6rem 0;
  background: var(--beige);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-video, .story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.story-img { z-index: 1; }
.story-video { z-index: 0; }
.story-video-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.story-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.story-text .btn { margin-top: 1rem; }

/* ═══════════════════════════════════════════════
   EXPLORE DELIGHTS
   ═══════════════════════════════════════════════ */
.explore-section {
  padding: 6rem 0;
}
.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.explore-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.explore-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.explore-img-wrap {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.explore-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}
.explore-img-wrap:hover img { transform: scale(1.06); }

.explore-featured-card {
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
}
.explore-featured-info {
  display: flex;
  flex-direction: column;
  padding: .5rem .25rem;
}
.explore-featured-name {
  font-weight: 600;
  font-size: .85rem;
}
.explore-featured-price {
  color: var(--orange);
  font-weight: 600;
  font-size: .85rem;
}

/* ═══════════════════════════════════════════════
   MENU CATEGORIES
   ═══════════════════════════════════════════════ */
.categories-section {
  padding: 6rem 0;
  background: var(--beige);
}
.categories-section .text-center { margin-bottom: 3rem; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  overflow: hidden;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
}
.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem .75rem;
}

/* ── Emphasized / Featured Category ── */
.category-card--emphasized {
  position: relative;
  background: linear-gradient(135deg, #fffaf0, #fff7e6, #fffaf0);
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: visible;
}
.category-card--emphasized::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #f5c842, #e8874b, #f5c842, #ffd700, #e8874b);
  background-size: 300% 300%;
  z-index: -1;
  animation: shimmerBorder 3s ease-in-out infinite;
}
.category-card--emphasized::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, .15), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(232, 135, 75, .1), transparent 50%);
  pointer-events: none;
}
@keyframes shimmerBorder {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.category-card--emphasized .category-card-img {
  width: 100%;
  aspect-ratio: 1;
  box-shadow: none;
}
.category-card--emphasized:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(245, 200, 66, .25), var(--shadow-lg);
}
.category-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  background: linear-gradient(135deg, #f5c842, #e8874b);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 20px;
  margin-bottom: .5rem;
  box-shadow: 0 2px 8px rgba(245, 200, 66, .35);
  animation: badgePulse 2s ease-in-out infinite;
}
.category-badge::before {
  content: '\2728';
  font-size: .75rem;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(245, 200, 66, .35); }
  50% { box-shadow: 0 2px 16px rgba(245, 200, 66, .55); }
}

/* ═══════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════ */
.newsletter-section {
  position: relative;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,165,116,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(232,135,75,.10) 0%, transparent 60%),
    linear-gradient(165deg, var(--dark) 0%, #1a1208 25%, #261a0e 50%, #1a120a 75%, var(--dark) 100%);
}
.newsletter-section::before { display: none; }
.newsletter-section::after { display: none; }
.newsletter-content {
  position: relative;
  text-align: center;
  color: var(--white);
  max-width: 560px;
}
.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: .5rem;
  letter-spacing: .02em;
  color: #fff;
}
.newsletter-content h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: .75rem auto 0;
  border-radius: 2px;
}
.newsletter-content > p {
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  font-size: .95rem;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 140px;
  padding: .8rem 1.2rem;
  border: 1px solid rgba(212,165,116,.25);
  border-radius: 8px;
  font-size: .9rem;
  font-family: var(--font-body);
  background: rgba(255,255,255,.06);
  color: #fff;
  transition: border-color .3s, background .3s;
}
.newsletter-form input::placeholder {
  color: rgba(255,255,255,.4);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.1);
}
.newsletter-form button {
  padding: .8rem 2rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #fff;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,165,116,.3);
}
.newsletter-msg {
  margin-top: 1rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════
   APP DOWNLOAD
   ═══════════════════════════════════════════════ */
.app-section {
  padding: 6rem 0;
  background: var(--cream);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.app-text p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}
.app-store-btn:hover { background: #333; transform: translateY(-2px); }

.phone-mockup {
  width: 300px;
  height: 600px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: 36px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
}
.phone-screen img {
  width: 125%;
  height: 125%;
  object-fit: cover;
  object-position: center center;
  margin: -12.5% 0 0 0;
}

/* ═══════════════════════════════════════════════
   CONTACT PREVIEW (homepage)
   ═══════════════════════════════════════════════ */
.contact-preview {
  padding: 6rem 0;
}
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-preview p {
  color: var(--gray);
  margin-bottom: .5rem;
}
.contact-preview a { color: var(--orange); }
.contact-preview a:hover { text-decoration: underline; }
.map-wrap { border-radius: var(--radius); overflow: hidden; }

/* ═══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ═══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
}
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.page-hero-content p { font-size: 1.1rem; opacity: .85; }

/* Default hero (no image) — matches home page gradient */
.page-hero.no-image {
  min-height: 44vh;
  background:
    radial-gradient(ellipse at 50% 90%, rgba(232,135,75,.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 10%, #fdf5e6 35%, #f7e4cc 60%, #f0d0a8 85%, #e8a76b 100%);
}

.page-hero.no-image .page-hero-content {
  color: var(--dark);
  padding: 4.5rem 1.5rem 3.5rem;
}
.page-hero.no-image .page-hero-content h1 {
  font-size: 3.2rem;
  letter-spacing: .02em;
  color: var(--dark);
}
.page-hero.no-image .page-hero-content p {
  font-size: 1.1rem;
  color: #555;
  opacity: 1;
}

@media (max-width: 480px) {
  .page-hero.no-image .page-hero-content h1 { font-size: 2.2rem; }
}

/* ═══════════════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════════════ */
.menu-section {
  padding: 4rem 0 6rem;
}
.menu-filters {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: .55rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.menu-grid {
  display: grid;
  --menu-cols: 4;
  grid-template-columns: repeat(var(--menu-cols), 1fr);
  gap: 1rem;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.menu-card-img {
  aspect-ratio: 3 / 3;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body { padding: .85rem; }
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: .3rem;
}
.menu-card-header h3 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 600;
}
.menu-card-price {
  font-weight: 700;
  color: var(--orange);
  font-size: .88rem;
  white-space: nowrap;
}
.menu-card-desc {
  font-size: .75rem;
  color: var(--gray);
  margin-bottom: .5rem;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.menu-card-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-bottom: .5rem;
}
.ingredient-pill {
  display: inline-block;
  padding: .12rem .45rem;
  background: var(--beige);
  color: var(--orange-dark);
  border-radius: 50px;
  font-size: .62rem;
  font-weight: 500;
}
.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: var(--gray-light);
}
.menu-card-cal {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.menu-card-cal svg {
  width: 11px;
  height: 11px;
}
.menu-card-cat { font-style: italic; }

/* ═══════════════════════════════════════════════
   QUESTIONNAIRE
   ═══════════════════════════════════════════════ */
.questionnaire-section {
  padding: 4rem 0 6rem;
  background: var(--beige);
}
.questionnaire-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
}
.questionnaire-box h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: .5rem;
}
.questionnaire-box > p {
  color: var(--gray);
  margin-bottom: 2rem;
}
.q-step h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.q-options {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.q-opt {
  padding: .7rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.q-opt:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.q-opt.selected {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.q-result h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: .75rem;
}
.q-suggestion {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════
   HOST & CATER TABS
   ═══════════════════════════════════════════════ */
.hc-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.hc-tabs {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
}
.hc-tab {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all .25s;
}
.hc-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.hc-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.hc-panel.hidden { display: none; }

/* ═══════════════════════════════════════════════
   FORM SECTION (Contact / Host & Cater)
   ═══════════════════════════════════════════════ */
.form-section {
  padding: 5rem 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-info p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.form-features {
  margin-top: 1.5rem;
}
.form-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .95rem;
}
/* Section image under form description */
.form-info-img {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.form-info-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}
.form-info-img-logo {
  width: auto;
  max-width: 160px;
  margin: 0 auto;
  display: block;
  opacity: .15;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}
.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.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(232,135,75,.15);
}
.form-group textarea { resize: vertical; }
.form-msg {
  margin-top: .75rem;
  font-size: .85rem;
  color: var(--gray);
}
.form-msg.success { color: #16a34a; }
.form-msg.error { color: #dc2626; }

.contact-details { margin-top: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-detail strong { display: block; margin-bottom: .15rem; }
.contact-detail p { color: var(--gray); font-size: .9rem; margin: 0; }
.contact-detail a { color: var(--orange); }

.map-section { margin-top: 4rem; }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: .75rem;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: .75rem;
}
.footer-brand p {
  color: #999;
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.footer-social a {
  color: #999;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--orange); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: .5rem;
  font-size: .9rem;
  color: #999;
}
.footer-col ul li a { color: #999; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 1.25rem 1.5rem;
  font-size: .82rem;
  color: #666;
}

/* ═══════════════════════════════════════════════
   ADMIN
   ═══════════════════════════════════════════════ */
.admin-wrapper {
  min-height: 100vh;
  background: #f5f5f5;
  margin-top: -136px; /* cancel body padding for admin (no topbar/navbar) */
  padding-top: 0;
}

/* Login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 3rem 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}
.admin-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--orange);
  margin-bottom: 1rem;
}
.admin-logo-img {
  display: block;
  margin: 0 auto 1rem;
  height: 70px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}
.admin-login-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--dark);
}

/* Forgot Links */
.admin-forgot-links {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}
.forgot-link {
  background: none;
  border: none;
  color: var(--orange);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.forgot-link:hover {
  color: var(--dark);
}

/* Admin Modals */
.admin-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 2rem;
  animation: fadeIn 0.25s ease;
}
.admin-modal.hidden {
  display: none;
}
.admin-modal-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  max-width: 450px;
  width: 100%;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.admin-modal-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.admin-modal-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--dark);
}

/* Dashboard Layout */
.admin-dashboard {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
  width: 240px;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  transition: transform .3s ease;
}
.sidebar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* Sidebar Navigation */
.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 1rem .75rem;
  flex: 1;
  background: none;
  border: none;
}
.admin-tab {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border: none;
  background: none;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all .2s ease;
  text-align: left;
  width: 100%;
}
.admin-tab:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.admin-tab.active {
  color: #fff;
  background: var(--orange);
}
.admin-tab svg { flex-shrink: 0; opacity: .8; }
.admin-tab.active svg { opacity: 1; }

/* Sidebar Footer */
.sidebar-footer {
  padding: .75rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  font-weight: 500;
  border: none;
  background: none;
  border-radius: 8px;
  transition: all .2s;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.sidebar-link:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* Sidebar Overlay (mobile) */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 99;
}

/* Main Content Area */
.admin-main {
  flex: 1;
  margin-left: 240px;
  min-height: 100vh;
  background: #f5f5f5;
}

/* Mobile Header */
.admin-mobile-header {
  display: none;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.sidebar-toggle-btn {
  background: none;
  border: none;
  padding: .25rem;
  color: var(--dark);
  display: flex;
  align-items: center;
}
.mobile-header-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
}
.mobile-header-title {
  font-weight: 600;
  font-size: .95rem;
}

/* Panel */
.admin-panel {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.admin-panel-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
}
.admin-info-box {
  background: #fef7ed;
  border: 1px solid #f0d9b5;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: .88rem;
  color: #6b4c1e;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
}
.featured-counter {
  background: var(--orange);
  color: var(--white);
  padding: .2rem .6rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
}
.featured-counter.full {
  background: #27ae60;
}
.admin-form-wrap {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  padding: 2rem;
}
.admin-form-wrap form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}
.form-actions {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}

/* Admin table */
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-table th {
  text-align: left;
  padding: .75rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: .75rem 1rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.admin-table td img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.admin-table .actions,
.admin-table .menu-actions-cell {
  display: flex;
  gap: .5rem;
  align-items: center;
  white-space: nowrap;
}
.admin-table .actions button,
.admin-table .menu-actions-cell button {
  padding: .3rem .7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .78rem;
  font-weight: 500;
  transition: all var(--transition);
}
.admin-table .actions .edit-btn:hover,
.admin-table .menu-actions-cell .edit-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.admin-table .actions .delete-btn,
.admin-table .menu-actions-cell .delete-btn {
  color: #dc2626;
}
.admin-table .actions .delete-btn:hover,
.admin-table .menu-actions-cell .delete-btn:hover {
  border-color: #dc2626;
  background: #fef2f2;
}

/* Admin sub-tabs */
.admin-sub-tabs {
  display: flex;
  gap: .5rem;
  padding: 1rem 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.admin-sub-tab {
  padding: .6rem 1.25rem;
  border: none;
  background: none;
  font-size: .88rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  margin-bottom: -1px;
}
.admin-sub-tab:hover { color: var(--dark); }
.admin-sub-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
  font-weight: 600;
}
.admin-sub-panel { padding: 0 0 1rem; }

/* Reorder panel */
.reorder-category { margin-bottom: 1.5rem; }
.reorder-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  padding: .75rem 1.5rem;
  background: var(--beige);
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
}
.reorder-cat-toggle:hover { background: #f5e6d3; }
.reorder-cat-chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
  color: var(--gray);
}
.reorder-category.open .reorder-cat-chevron { transform: rotate(180deg); }
.reorder-category .reorder-list { display: none; }
.reorder-category.open .reorder-list { display: block; }
.reorder-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reorder-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  cursor: grab;
  transition: background .2s, box-shadow .2s;
  user-select: none;
}
.reorder-item:active { cursor: grabbing; }
.reorder-item.dragging {
  opacity: .5;
  background: var(--beige);
}
.reorder-item.drag-over {
  border-top: 2px solid var(--orange);
}
.reorder-handle {
  color: var(--gray-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reorder-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.reorder-name {
  flex: 1;
  font-weight: 500;
  font-size: .9rem;
}
.reorder-price {
  color: var(--orange);
  font-weight: 600;
  font-size: .85rem;
}

/* Categories */
.admin-cat-form {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.admin-cat-form input {
  flex: 1;
  padding: .6rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font-body);
}
.admin-cat-list {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.admin-cat-list li:last-child { border-bottom: none; }
.admin-cat-list li button {
  padding: .25rem .6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .75rem;
  color: #dc2626;
  transition: all var(--transition);
}
.admin-cat-list li button:hover {
  border-color: #dc2626;
  background: #fef2f2;
}

/* Videos */
.admin-video-info {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--beige);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--gray);
}
.admin-video-info code {
  background: #fff;
  padding: .15rem .4rem;
  border-radius: 4px;
  font-size: .82rem;
}

/* Newsletter Admin */
.admin-sub-count {
  display: flex;
  align-items: center;
  font-size: .85rem;
  color: var(--gray);
  font-weight: 500;
  padding: .4rem .8rem;
  background: var(--beige);
  border-radius: var(--radius-sm);
}
.admin-email-composer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}
.admin-email-composer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.admin-email-preview {
  margin-top: 1.5rem;
}
.admin-email-preview h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: .75rem;
  color: var(--dark);
}
.email-preview-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto;
  font-size: .85rem;
}
.ep-header {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 1.5rem;
  text-align: center;
}
.ep-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 6px;
  color: #ffc27a;
}
.ep-logo-img {
  height: 50px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}
.ep-sub {
  color: #ccc;
  font-size: .7rem;
  letter-spacing: 2px;
  margin-top: .3rem;
}
.ep-content {
  padding: 1.5rem;
}
.ep-content h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: var(--dark);
}
.ep-content div {
  color: #444;
  line-height: 1.6;
  font-size: .85rem;
}
.ep-cta {
  padding: 0 1.5rem 1.25rem;
  text-align: center;
}
.ep-btn {
  display: inline-block;
  padding: .6rem 1.5rem;
  background: #ffc27a;
  color: #1a1a1a;
  border-radius: 6px;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1px;
}
.ep-footer {
  background: #f9f6f2;
  padding: .75rem 1.5rem;
  text-align: center;
  font-size: .7rem;
  color: #999;
  border-top: 1px solid #eee;
}

/* Newsletter image upload previews */
.nl-image-previews {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .75rem;
}
.nl-img-thumb {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.nl-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nl-img-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.nl-img-remove:hover {
  background: #dc2626;
}

/* ═══════════════════════════════════════════════
   ANNOUNCEMENTS – ADMIN
   ═══════════════════════════════════════════════ */
.ann-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ann-card {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--border);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.ann-card--info { border-left-color: #3b82f6; }
.ann-card--promotion { border-left-color: #f59e0b; }
.ann-card--earning { border-left-color: #059669; }
.ann-card--sale { border-left-color: #e11d48; }
.ann-card--warning { border-left-color: #ef4444; }
.ann-card--active-border { box-shadow: 0 0 0 2px rgba(34,197,94,.3), var(--shadow); }
.ann-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .5rem;
}
.ann-card-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.ann-card-title-row h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
}
.ann-badge {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.ann-badge--active { background: #dcfce7; color: #16a34a; }
.ann-badge--scheduled { background: #dbeafe; color: #2563eb; }
.ann-badge--expired { background: #f3f4f6; color: #9ca3af; }
.ann-badge--disabled { background: #fee2e2; color: #dc2626; }
.ann-badge--type { background: #f3f4f6; color: #6b7280; }
.ann-card-msg {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: .75rem;
}
.ann-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .75rem;
  color: #999;
  margin-bottom: .75rem;
}
.ann-card-actions {
  display: flex;
  gap: .5rem;
}
.ann-page-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}
.ann-page-checks label {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  cursor: pointer;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 22px;
  transition: .3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
}
.toggle-switch input:checked + .toggle-slider { background: #22c55e; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

/* ═══════════════════════════════════════════════
   EVENTS ADMIN
   ═══════════════════════════════════════════════ */
.ev-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.ev-badge--new { background: #dbeafe; color: #2563eb; }
.ev-badge--confirmed { background: #fff3e0; color: #e8874b; }
.ev-badge--done { background: #dcfce7; color: #16a34a; }

.ev-status-select {
  padding: .3rem .5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .8rem;
  background: var(--white);
  cursor: pointer;
}

.events-table-panel { min-height: 100px; }
.events-empty {
  text-align: center;
  color: #999;
  padding: 2rem;
  font-size: .95rem;
}

.actions-cell {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.actions-cell .edit-btn,
.actions-cell .delete-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 600;
  padding: .25rem .5rem;
  border-radius: 4px;
  transition: background .2s;
}
.actions-cell .edit-btn { color: var(--orange); }
.actions-cell .edit-btn:hover { background: rgba(232,135,75,.1); }
.actions-cell .delete-btn { color: #e74c3c; }
.actions-cell .delete-btn:hover { background: rgba(231,76,60,.1); }

/* Event expandable rows */
.ev-row { cursor: pointer; transition: background .15s; }
.ev-row:hover { background: #fdf8f4; }

.ev-show-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .25rem .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}
.ev-show-btn:hover { border-color: var(--orange); color: var(--orange); }

.ev-details-row td { padding: 0 !important; border-top: none !important; }
.ev-details-row.hidden { display: none; }

.ev-details-body {
  background: #faf8f5;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 2rem;
}

.ev-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ev-detail-label {
  font-size: .7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ev-detail-value {
  font-size: .88rem;
  color: var(--dark);
  word-break: break-word;
}
.ev-detail-value a { color: var(--orange); text-decoration: none; }
.ev-detail-value a:hover { text-decoration: underline; }

.ev-details-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: .75rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border);
}

.ev-table th:last-child,
.ev-table td:last-child { text-align: right; }

@media (max-width: 600px) {
  .ev-details-body { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   UPLOAD OVERLAY
   ═══════════════════════════════════════════════ */
.upload-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.upload-overlay.visible { opacity: 1; }
.upload-overlay-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  min-width: 240px;
}
.upload-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: uploadSpin .7s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes uploadSpin { to { transform: rotate(360deg); } }
.upload-overlay-card p {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}
.upload-overlay-card .upload-hint {
  margin-top: .4rem;
  font-size: .8rem;
  font-weight: 400;
  color: var(--gray);
}

/* ═══════════════════════════════════════════════
   CONFIRMATION MODAL
   ═══════════════════════════════════════════════ */
.confirm-modal-card {
  text-align: center;
  max-width: 420px;
}
.confirm-icon {
  margin-bottom: 1rem;
}
.confirm-icon svg {
  width: 56px;
  height: 56px;
  opacity: .85;
}
.confirm-modal-card h3 {
  margin-bottom: .75rem;
  text-align: center;
}
.confirm-modal-card p {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: .95rem;
  color: #555;
}
.confirm-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.confirm-actions .btn {
  min-width: 110px;
  padding: .65rem 1.5rem;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.btn-danger {
  background: #dc2626;
  color: #fff;
  border: none;
  transition: background var(--transition);
}
.btn-danger:hover {
  background: #b91c1c;
}

/* ═══════════════════════════════════════════════
   HONEYPOT (hidden from humans, traps bots)
   ═══════════════════════════════════════════════ */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   GENERAL SETTINGS TAB
   ═══════════════════════════════════════════════ */
.admin-general-form {
  max-width: 800px;
}
.admin-settings-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.settings-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.settings-section-title:hover { color: var(--orange); }
.settings-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--orange);
  border-radius: 4px;
  flex-shrink: 0;
}
.settings-section-title::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform .25s ease;
}
.admin-settings-section.collapsed .settings-section-title {
  margin-bottom: 0;
  border-bottom-color: transparent;
}
.admin-settings-section.collapsed .settings-section-title::after {
  transform: rotate(-90deg);
}
.admin-settings-section.collapsed > *:not(.settings-section-title) {
  display: none;
}
.settings-hint {
  color: var(--gray);
  font-size: .85rem;
  margin-bottom: 1.25rem;
}
.settings-upload-row {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.settings-upload-row input[type="text"] {
  flex: 1;
}
.settings-upload-row input[type="file"] {
  flex-shrink: 0;
  font-size: .82rem;
  max-width: 200px;
}
.settings-preview img,
.settings-img-preview img {
  max-height: 80px;
  border-radius: 8px;
  margin-top: .5rem;
  border: 1px solid var(--border);
}
.settings-video-preview video {
  max-width: 320px;
  border-radius: 8px;
  margin-top: .5rem;
  border: 1px solid var(--border);
}
.settings-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.settings-image-item label {
  display: block;
  font-weight: 500;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--dark);
}

@media (max-width: 768px) {
  .settings-image-grid {
    grid-template-columns: 1fr;
  }
  .settings-upload-row {
    flex-direction: column;
    align-items: stretch;
  }
  .settings-upload-row input[type="file"] {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════
   SECTION EDITORS (collapsible)
   ═══════════════════════════════════════════════ */
.section-editor {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  background: #fafafa;
}
.section-editor-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .85rem 1.15rem;
  border: none;
  background: none;
  font-size: .92rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-body);
}
.section-editor-toggle:hover { background: #f0f0f0; }
.section-chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
  color: var(--gray);
}
.section-editor.open .section-chevron {
  transform: rotate(180deg);
}
.section-editor-body {
  display: none;
  padding: 1rem 1.15rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.section-editor.open .section-editor-body {
  display: block;
}

/* ═══════════════════════════════════════════════
   HOURS EDITOR
   ═══════════════════════════════════════════════ */
.hours-editor {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-editor-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.hours-editor-row:last-child { border-bottom: none; }
.hours-editor-row > label {
  width: 100px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  flex-shrink: 0;
}
.hours-editor-inputs {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1;
}
.hours-editor-inputs input {
  width: 110px;
  padding: .45rem .7rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-family: var(--font-body);
  text-align: center;
}
.hours-editor-sep {
  color: var(--gray);
  font-size: .82rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   COLOR INPUT WRAP
   ═══════════════════════════════════════════════ */
.color-input-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.color-input-wrap input[type="color"] {
  width: 40px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px;
  cursor: pointer;
  background: none;
}
.color-hex-input {
  width: 90px;
  padding: .45rem .6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-family: var(--font-body);
}

/* ═══════════════════════════════════════════════
   HERO PREVIEW BOX (admin)
   ═══════════════════════════════════════════════ */
.hero-preview-box {
  background:
    radial-gradient(ellipse at 50% 90%, rgba(232,135,75,.08) 0%, transparent 50%),
    linear-gradient(180deg, #fff 0%, #fff 10%, #fdf5e6 35%, #f7e4cc 60%, #f0d0a8 85%, #e8a76b 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  overflow: hidden;
}
.hero-preview-label {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.hero-preview-heading {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
}
.hero-preview-sub {
  font-size: .95rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* ── Hero field group ─────────────────────────── */
.hero-field-group {
  border: 1px solid #eee;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  background: #fafafa;
}
.hero-field-group-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin: 0 0 .75rem;
}

/* ── 3-column form row ────────────────────────── */
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-row-3 { grid-template-columns: 1fr; }
}

/* ── Size range slider with display ───────────── */
.size-input-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hero-size-range {
  flex: 1;
  accent-color: var(--orange);
  cursor: pointer;
}
.size-value-display {
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 55px;
  text-align: right;
  font-family: var(--font-body);
}

/* ── Hero action bar ──────────────────────────── */
.hero-action-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eee;
}

/* ═══════════════════════════════════════════════
   CATEGORIES – ENHANCED
   ═══════════════════════════════════════════════ */
.admin-cat-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  cursor: grab;
  transition: background .2s;
}
.admin-cat-list li:active { cursor: grabbing; }
.admin-cat-list li.dragging {
  opacity: .5;
  background: var(--beige);
}
.admin-cat-list li.drag-over {
  border-top: 2px solid var(--orange);
}
.cat-drag-handle {
  color: var(--gray-light);
  font-size: 1.1rem;
  cursor: grab;
  flex-shrink: 0;
  user-select: none;
}
.cat-name {
  flex: 1;
  font-weight: 500;
}
.cat-img-thumb {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.cat-emphasis-btn,
.cat-img-btn,
.cat-remove-btn {
  padding: .25rem .5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .78rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
}
.cat-emphasis-btn {
  font-size: 1rem;
  color: #ccc;
}
.cat-emphasis-btn.emphasized {
  color: #f59e0b;
  border-color: #f59e0b;
  background: #fffbeb;
}
.cat-emphasis-btn:hover { border-color: #f59e0b; color: #f59e0b; }
.cat-img-btn:hover { border-color: var(--orange); color: var(--orange); }
.cat-remove-btn { color: #dc2626; }
.cat-remove-btn:hover { border-color: #dc2626; background: #fef2f2; }

/* ═══════════════════════════════════════════════
   FEATURED STAR (Menu Table)
   ═══════════════════════════════════════════════ */
.featured-star {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #d4d4d4;
  transition: color .2s, transform .2s;
  padding: .2rem;
}
.featured-star:hover { transform: scale(1.2); }
.featured-star.active {
  color: #f59e0b;
}

/* ── About Slide Editors (Admin) ─────────────── */
.about-slide-editor {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: .75rem;
  background: #fafafa;
}
.about-slide-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .75rem;
}
.about-slide-editor-header strong {
  font-size: .85rem;
  color: var(--dark);
}
.btn-remove-slide {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.btn-remove-slide:hover {
  background: #fee2e2;
  color: #dc2626;
  border-color: #fca5a5;
}

/* ═══════════════════════════════════════════════
   ADMIN RESPONSIVE – Sidebar
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .admin-sidebar {
    transform: translateX(-100%);
  }
  .admin-sidebar.open {
    transform: translateX(0);
  }
  .sidebar-overlay.open {
    display: block;
  }
  .admin-main {
    margin-left: 0;
  }
  .admin-mobile-header {
    display: flex;
  }
  .admin-panel {
    padding: 1.25rem;
  }
  .hours-editor-row {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .hours-editor-row > label {
    width: auto;
  }
  .hours-editor-inputs input {
    width: 90px;
  }
  .admin-wrapper {
    margin-top: -93px;
  }
}

/* ═══════════════════════════════════════════════
   FRONTEND BANNERS — Promotional Style
   ═══════════════════════════════════════════════ */
#yafaBanners {
  position: fixed;
  top: 156px; /* below topbar (36px) + navbar (120px) */
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

/* ── Base Banner ────────────────────────────── */
.site-banner {
  pointer-events: auto;
  position: relative;
  overflow: hidden;
  animation: bannerDrop .5s cubic-bezier(.22,1,.36,1);
  transition: opacity .4s, transform .4s, max-height .4s;
  max-height: 200px;
}
.site-banner--closing {
  opacity: 0;
  transform: translateY(-20px);
  max-height: 0;
  overflow: hidden;
}
@keyframes bannerDrop {
  from { opacity: 0; transform: translateY(-30px); max-height: 0; }
  to   { opacity: 1; transform: translateY(0); max-height: 200px; }
}

/* Animated shimmer sweep */
.site-banner-shimmer {
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%);
  animation: shimmer-sweep 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes shimmer-sweep {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Inner layout */
.site-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Icon */
.site-banner-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}

/* Text body */
.site-banner-body {
  flex: 1;
  min-width: 0;
}
.site-banner-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .3px;
  line-height: 1.3;
}
.site-banner-msg {
  font-size: .88rem;
  opacity: .9;
  line-height: 1.4;
  margin-top: .15rem;
}

/* Close button */
.site-banner-close {
  background: rgba(255,255,255,.15);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
  color: inherit;
}
.site-banner-close:hover {
  background: rgba(255,255,255,.3);
  transform: scale(1.1);
}

/* ── Type: Info ────────────────────────────── */
.site-banner--info {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #3b82f6 100%);
  color: #fff;
  border-bottom: 3px solid #60a5fa;
}
.site-banner--info .site-banner-icon { background: rgba(96,165,250,.3); }

/* ── Type: Promotion ───────────────────────── */
.site-banner--promotion {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1a00 30%, #78350f 100%);
  color: #ffc27a;
  border-bottom: 3px solid #ffc27a;
}
.site-banner--promotion .site-banner-title { color: #fff; }
.site-banner--promotion .site-banner-msg { color: #fde68a; }
.site-banner--promotion .site-banner-icon {
  background: linear-gradient(135deg, #ffc27a, #f59e0b);
  color: #1a1a1a;
  font-size: 1.4rem;
}
.site-banner--promotion .site-banner-shimmer {
  background: linear-gradient(105deg, transparent 40%, rgba(255,194,122,.15) 50%, transparent 60%);
}

/* ── Type: Warning ─────────────────────────── */
.site-banner--warning {
  background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 50%, #dc2626 100%);
  color: #fff;
  border-bottom: 3px solid #fca5a5;
}
.site-banner--warning .site-banner-icon { background: rgba(252,165,165,.25); }

/* ── Type: Earning / Rewards ───────────────── */
.site-banner--earning {
  background: linear-gradient(135deg, #064e3b 0%, #047857 50%, #059669 100%);
  color: #fff;
  border-bottom: 3px solid #6ee7b7;
}
.site-banner--earning .site-banner-icon {
  background: linear-gradient(135deg, #6ee7b7, #34d399);
  color: #064e3b;
  font-size: 1.4rem;
}
.site-banner--earning .site-banner-msg { color: #a7f3d0; }
.site-banner--earning .site-banner-shimmer {
  background: linear-gradient(105deg, transparent 40%, rgba(110,231,183,.12) 50%, transparent 60%);
}

/* ── Type: Sale / Discount ─────────────────── */
.site-banner--sale {
  background: linear-gradient(135deg, #4a0519 0%, #be123c 40%, #e11d48 100%);
  color: #fff;
  border-bottom: 3px solid #fda4af;
}
.site-banner--sale .site-banner-msg { color: #fecdd3; }
.site-banner--sale .site-banner-shimmer {
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
}

/* Big percentage block for sale banners */
.site-banner-percent {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,.25);
  line-height: 1;
}
.site-banner-percent-num {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
}
.site-banner-percent-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fecdd3;
  margin-top: 1px;
}


/* ── Countdown Timer ───────────────────────── */
.site-banner-timer {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  font-size: .85rem;
}
.timer-label {
  font-weight: 600;
  opacity: .8;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.timer-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  padding: .2rem .45rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.12);
}
.timer-num {
  font-weight: 800;
  font-size: .95rem;
  font-variant-numeric: tabular-nums;
  min-width: 1.1em;
  text-align: center;
}
.timer-lbl {
  font-size: .65rem;
  font-weight: 600;
  opacity: .7;
  text-transform: uppercase;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
  #yafaBanners { position: relative; top: 0; }
  .site-banner-inner { padding: .85rem 1.25rem; gap: .75rem; }
  .site-banner-icon { width: 36px; height: 36px; font-size: 1.4rem; border-radius: 10px; }
  .site-banner-title { font-size: .95rem; }
  .site-banner-msg { font-size: .8rem; }
  .site-banner-close { width: 28px; height: 28px; }
  .site-banner-percent { width: 56px; height: 56px; border-radius: 12px; }
  .site-banner-percent-num { font-size: 1.4rem; }
  .site-banner-percent-label { font-size: .55rem; }
  .site-banner-timer { gap: .35rem; margin-top: .35rem; }
  .timer-unit { padding: .15rem .35rem; }
  .timer-num { font-size: .8rem; }
  .ann-card-header { flex-direction: column; }
  .ann-card-meta { flex-direction: column; gap: .35rem; }
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */
.about-intro {
  padding: 6rem 0;
  background: var(--beige);
  overflow: hidden;
}
.about-intro .container {
  max-width: calc(var(--max-width) + 8rem);
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  margin-left: -4rem;
}
.about-video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}
.about-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity .3s ease, transform .3s ease;
}
.about-video-play:hover {
  transform: translate(-50%, -50%) scale(1.12);
}
.about-video-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.about-video-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: var(--radius);
}
.about-video-placeholder p {
  color: var(--gray-light);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-intro-text p {
  color: var(--gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* ── Carousel ───────────────────────────────── */
.about-carousel-section {
  padding: 6rem 0;
}
.about-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.about-carousel-track {
  display: flex;
  transition: transform .8s cubic-bezier(.16, 1, .3, 1);
}
.about-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: var(--beige);
  border-radius: var(--radius);
  box-sizing: border-box;
}
.about-slide-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.about-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-slide-img:hover img {
  transform: scale(1.05);
}
.about-slide-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}
.about-slide-text p {
  color: var(--gray);
  line-height: 1.7;
  font-size: .95rem;
}

/* Slide entrance animations */
.about-slide-text h3,
.about-slide-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.about-slide.active .about-slide-text h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .2s;
}
.about-slide.active .about-slide-text p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .4s;
}
.about-slide.active .about-slide-img img {
  animation: slideImgZoom 7s ease forwards;
}
@keyframes slideImgZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

/* Progress bar */
.about-carousel-progress {
  width: 100%;
  height: 3px;
  background: rgba(232, 135, 75, .2);
  border-radius: 2px;
  margin-top: 1.5rem;
  overflow: hidden;
}
.about-carousel-progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  width: 0%;
}
@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

/* ── Carousel Controls ──────────────────────── */
.about-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-carousel-dots {
  display: flex;
  gap: .5rem;
}
.about-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.about-dot.active {
  background: var(--orange);
  transform: scale(1.15);
}
.about-dot:hover {
  background: var(--orange-light);
}
/* Page divider (admin) */
.admin-page-divider {
  margin: 2.5rem 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--orange);
}
.admin-page-divider span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-heading { font-size: 2.8rem; }
  .about-intro-grid,
  .about-slide,
  .story-grid,
  .explore-grid,
  .app-grid,
  .contact-preview-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Topbar — not fixed on mobile */
  .topbar { position: relative; }
  .topbar-left { display: none; }
  .topbar-inner {
    font-size: .72rem;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
  .topbar-center { justify-self: start; }
  .topbar-right { justify-self: end; padding-right: 0; }

  /* Navbar — scroll away on mobile (not fixed) */
  .navbar { position: relative; top: 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; order: -1; }
  .nav-mobile.open { display: flex; }
  .navbar-inner {
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .nav-logo { order: 0; }
  .nav-logo-img { height: 75px; }
  .nav-toggle { position: absolute; right: 1.5rem; }
  body { padding-top: 0; }
  .admin-wrapper { margin-top: 0; }
  .nav-mobile { position: absolute; top: 80px; left: 0; right: 0; z-index: 999; }

  /* Hero */
  .hero { height: 100vh; }
  .hero-center { max-width: 100%; padding: 2rem 1.5rem 3rem; }
  .hero-heading-main { font-size: 2.2rem; margin-bottom: 1.5rem; }
  .hero-label { font-size: .95rem; letter-spacing: 3px; }
  .hero-scroll-hint { display: none; }

  /* Story section — center on mobile */
  .story-text { text-align: center; }
  .story-text .btn { margin-left: auto; margin-right: auto; }

  /* Order Online / App section — center on mobile */
  .app-text { text-align: center; }
  .app-buttons { justify-content: center; }

  /* Grid */
  .image-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { font-size: 1.8rem; }
  .explore-images { grid-template-columns: repeat(2, 1fr); }

  /* Menu */
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }

  /* Center all text on mobile */
  .section-label {
    display: block;
    text-align: center;
  }
  .section-heading,
  .family-text,
  .about-intro-text,
  .about-slide-text,
  .explore-text,
  .story-text,
  .container,
  h1, h2, h3, p, span {
    text-align: center;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-logo-img { margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }

  /* Page hero */
  .page-hero { min-height: 30vh; }
  .page-hero-content h1 { font-size: 2.2rem; }

  /* About */
  .about-intro { padding: 4rem 0; }
  .about-video-wrap { margin-left: 0; }
  .about-carousel-section { padding: 4rem 0; }
  .about-slide { padding: 1.5rem; gap: 2rem; }
  .about-slide-text h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 1.8rem; }
  .hero-heading-main { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .hero-btn-primary, .hero-btn-outline { width: 100%; text-align: center; }
  .newsletter-content h2 { font-size: 1.8rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 100%; }
  .newsletter-form button { width: 100%; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr !important; }
  .sim-layout { flex-direction: column; }
  .sim-cup-area { min-height: 260px; }
}

/* ═══════════════════════════════════════════════
   OPENING HOURS SECTION
   ═══════════════════════════════════════════════ */
.hours-section {
  padding: 5rem 0;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hours-text .section-label { color: var(--orange-light); }
.hours-text .section-heading { color: var(--white); }
.hours-text p { color: #aaa; line-height: 1.7; margin-bottom: 1.5rem; }

.hours-table {
  width: 100%;
  margin-top: 1.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .95rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 500; }
.hours-time { color: var(--orange-light); font-weight: 600; }
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  padding: .6rem 1.25rem;
  background: rgba(232,135,75,.15);
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
}
.hours-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s infinite;
}
.hours-dot.closed { background: #ef4444; animation: none; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

/* Hours visual — analog clock */
.hours-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.clock-wrap {
  position: relative;
  width: 280px;
  height: 280px;
}
.clock-face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.15);
  position: relative;
  background: radial-gradient(circle, rgba(232,135,75,.05) 0%, transparent 70%);
}
.clock-number {
  position: absolute;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transform: translate(-50%, -50%);
}
.clock-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 4px;
}
.clock-hour {
  width: 4px;
  height: 70px;
  background: var(--white);
  margin-left: -2px;
}
.clock-minute {
  width: 3px;
  height: 95px;
  background: var(--orange-light);
  margin-left: -1.5px;
}
.clock-second {
  width: 1.5px;
  height: 105px;
  background: var(--orange);
  margin-left: -.75px;
}
.clock-label {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   3D COFFEE SIMULATOR
   ═══════════════════════════════════════════════ */
.simulator-section {
  padding: 6rem 0;
  background: var(--beige);
  overflow: hidden;
}
.simulator-section .text-center { margin-bottom: 3rem; }

.sim-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.sim-layout {
  display: flex;
  min-height: 420px;
}

/* CUP AREA (left side) */
.sim-cup-area {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
  perspective: 800px;
}

/* Counter surface */
.sim-cup-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(60,40,25,.8) 0%, rgba(40,25,15,1) 100%);
  border-top: 2px solid rgba(255,255,255,.05);
}

/* The cup */
.sim-cup {
  position: relative;
  width: 120px;
  height: 150px;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.sim-cup.pour { animation: pour-anim .8s ease; }
.sim-cup.shake { animation: shake-anim .5s ease; }

@keyframes pour-anim {
  0%   { transform: rotateZ(-15deg) translateY(-20px); }
  50%  { transform: rotateZ(0deg) translateY(-10px); }
  100% { transform: rotateZ(0deg) translateY(0); }
}
@keyframes shake-anim {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px) rotateZ(-2deg); }
  40% { transform: translateX(6px) rotateZ(2deg); }
  60% { transform: translateX(-4px) rotateZ(-1deg); }
  80% { transform: translateX(4px) rotateZ(1deg); }
}

/* Cup body */
.sim-cup-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 130px;
  background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, #e0e0e0 100%);
  border-radius: 8px 8px 20px 20px;
  box-shadow:
    inset -4px 0 8px rgba(0,0,0,.05),
    4px 8px 24px rgba(0,0,0,.3),
    0 2px 8px rgba(0,0,0,.2);
  overflow: hidden;
}

/* Cup handle */
.sim-cup-handle {
  position: absolute;
  right: -22px;
  top: 25px;
  width: 28px;
  height: 50px;
  border: 5px solid #e0e0e0;
  border-left: none;
  border-radius: 0 20px 20px 0;
  box-shadow: 3px 3px 8px rgba(0,0,0,.2);
}

/* Liquid inside cup */
.sim-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  border-radius: 0 0 16px 16px;
  transition: height .8s cubic-bezier(.4,0,.2,1), background .5s ease;
}
.sim-liquid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
}

/* Foam layer */
.sim-foam {
  position: absolute;
  top: -1px;
  left: 3px;
  right: 3px;
  height: 14px;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.9), rgba(245,235,220,.85));
  border-radius: 50%;
  opacity: 0;
  transition: opacity .5s;
  z-index: 2;
}

/* Steam */
.sim-steam {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 40px;
  opacity: 0;
  transition: opacity .5s;
  z-index: 10;
}
.sim-steam span {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 20px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  animation: steam-rise 2s ease-out infinite;
}
.sim-steam span:nth-child(1) { left: 10px; animation-delay: 0s; }
.sim-steam span:nth-child(2) { left: 25px; animation-delay: .4s; animation-duration: 2.3s; }
.sim-steam span:nth-child(3) { left: 40px; animation-delay: .8s; animation-duration: 1.8s; }

@keyframes steam-rise {
  0%   { opacity: 0; transform: translateY(0) scaleX(1); }
  30%  { opacity: .6; }
  100% { opacity: 0; transform: translateY(-35px) scaleX(1.8); }
}

/* Ice cubes */
.sim-ice {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .5s;
  z-index: 3;
}
.sim-ice-cube {
  position: absolute;
  width: 16px;
  height: 14px;
  background: rgba(200, 230, 255, .55);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 3px;
  box-shadow: inset 0 0 4px rgba(255,255,255,.5);
  animation: ice-bob 3s ease-in-out infinite;
}
.sim-ice-cube:nth-child(1) { left: -20px; top: 0; animation-delay: 0s; }
.sim-ice-cube:nth-child(2) { left: 2px; top: 5px; animation-delay: .5s; }
.sim-ice-cube:nth-child(3) { left: 18px; top: -2px; animation-delay: 1s; }

@keyframes ice-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(3px) rotate(5deg); }
}

/* Flavor drip */
.sim-drip {
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 0 0 50% 50%;
  opacity: 0;
  transition: opacity .3s;
  z-index: 4;
}

/* Swirl effect */
.sim-swirl {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border: 3px solid transparent;
  border-top-color: #D4A54A;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .3s;
  animation: swirl-spin 1s linear infinite;
  z-index: 5;
}
@keyframes swirl-spin { to { transform: translateX(-50%) rotate(360deg); } }

/* OPTIONS AREA (right side) */
.sim-controls {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sim-step-label {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
}
.sim-step-sub {
  font-size: .9rem;
  color: var(--gray);
  margin-bottom: 1.75rem;
}
.sim-step h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sim-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.sim-opt {
  padding: .85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
  text-align: left;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.sim-opt:hover {
  border-color: var(--orange);
  background: var(--beige);
}
.sim-opt.selected {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.sim-opt-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Progress dots */
.sim-progress {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.sim-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--transition);
}
.sim-dot.active { background: var(--orange); }

/* RESULTS */
.sim-result {
  padding: 2rem 2.5rem;
  border-top: 1px solid var(--border);
}
.sim-result h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.sim-result > p {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.sim-matches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.sim-match-card {
  background: var(--beige);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
}
.sim-match-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sim-match-img {
  height: 110px;
  overflow: hidden;
}
.sim-match-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.sim-match-card:hover .sim-match-img img { transform: scale(1.06); }
.sim-match-body {
  padding: .75rem;
}
.sim-match-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.sim-match-price {
  font-weight: 700;
  color: var(--orange);
  font-size: .9rem;
}
.sim-match-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  margin-top: .4rem;
}
.sim-match-pills span {
  font-size: .65rem;
  padding: .15rem .45rem;
  background: var(--white);
  border-radius: 50px;
  color: var(--gray);
}
.sim-no-match {
  text-align: center;
  color: var(--gray);
  font-size: .95rem;
  padding: 1rem;
}
.sim-no-match a { color: var(--orange); text-decoration: underline; }
.sim-restart-wrap {
  text-align: center;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .sim-layout { flex-direction: column; }
  .sim-cup-area { flex: none; min-height: 280px; }
  .sim-controls { padding: 1.5rem; }
  .sim-options { grid-template-columns: 1fr 1fr; }
  .sim-result { padding: 1.5rem; }
  .sim-matches { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ═══════════════════════════════════════════════
   ADMIN — Per-Section Save Buttons
   ═══════════════════════════════════════════════ */
.section-save-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.section-save-msg {
  font-size: .85rem;
  transition: opacity .3s;
}
.section-save-msg.success { color: #16a34a; }
.section-save-msg.error { color: #dc2626; }

/* ── Section location hints ──────────────────── */
.section-location {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--beige);
  padding: .15rem .5rem;
  border-radius: 50px;
  margin-left: .4rem;
  vertical-align: middle;
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════
   ADMIN — Menu Filter Bar
   ═══════════════════════════════════════════════ */
.menu-filter-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.menu-filter-search input {
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  min-width: 220px;
  transition: border-color var(--transition);
}
.menu-filter-search input:focus {
  outline: none;
  border-color: var(--orange);
}
.menu-filter-bar select {
  padding: .5rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  background: var(--white);
  cursor: pointer;
}
.menu-filter-count {
  font-size: .85rem;
  color: var(--gray-light);
  margin-left: auto;
}

/* ─── Menu Table Modern Enhancements ──────────── */
.menu-cat-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .6rem;
  background: var(--beige);
  color: var(--orange-dark);
  border-radius: 50px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.admin-table tbody tr:hover {
  background: #fafafa;
}
.admin-table td strong {
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
   ADMIN — Sub-tabs (General / Content)
   ═══════════════════════════════════════════════ */
.admin-subtabs {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 0;
}
.admin-subtab {
  padding: .65rem 1.5rem;
  border: none;
  background: none;
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  font-family: var(--font-body);
}
.admin-subtab:hover {
  color: var(--orange);
}
.admin-subtab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ═══════════════════════════════════════════════
   ADMIN — Page Groups (Content sub-tab accordion)
   ═══════════════════════════════════════════════ */
.admin-page-group {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.admin-page-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  background: none;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--dark);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.admin-page-toggle:hover {
  background: var(--beige);
  color: var(--orange);
}
.page-chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
  color: var(--gray);
}
.admin-page-group.open .page-chevron {
  transform: rotate(180deg);
}
.admin-page-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.admin-page-group.open .admin-page-body {
  display: block;
}
.admin-page-body > .section-editor:first-child {
  margin-top: .5rem;
}
.admin-page-body > .form-group:first-child {
  margin-top: .5rem;
}

@media (max-width: 768px) {
  .admin-subtabs {
    gap: 0;
  }
  .admin-subtab {
    padding: .55rem 1rem;
    font-size: .85rem;
  }
  .admin-page-toggle {
    padding: .85rem 1rem;
    font-size: .95rem;
  }
  .admin-page-body {
    padding: 0 1rem 1rem;
  }
}
