/* ==========================================================================
   ADKINSON BBQ - CRAFT PITMASTER STYLESHEET (MOBILE-FIRST OPTIMIZED)
   Aesthetics: Smoked Wood, Glowing Embers, Golden Glaze, Rich Mahogany
   ========================================================================== */

:root {
  --color-bg: #0d0806;
  --color-surface: #170f0b;
  --color-surface-card: #20150f;
  --color-surface-hover: #2c1d15;
  --color-border: #3d261a;
  --color-border-glow: rgba(255, 90, 31, 0.4);
  
  --color-primary: #ff5a1f;
  --color-primary-light: #ff7d47;
  --color-primary-dark: #cc3b05;
  
  --color-gold: #ffb703;
  --color-gold-light: #ffd166;
  
  --color-text-main: #f8f1eb;
  --color-text-muted: #bda89b;
  --color-text-dim: #7d6e64;
  
  --color-success: #2ec4b6;
  --color-danger: #e63946;
  
  --font-heading: 'Cinzel', Georgia, serif;
  --font-display: 'Oswald', 'Impact', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px rgba(255, 90, 31, 0.35);
  --shadow-gold-glow: 0 0 25px rgba(255, 183, 3, 0.3);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 90, 31, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 183, 3, 0.04) 0%, transparent 40%),
    linear-gradient(to bottom, #0d0806, #120b08);
  background-attachment: fixed;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Embers Canvas Background */
#ember-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 6.5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
}

p {
  color: var(--color-text-muted);
}

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

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

/* Utility Containers */
.container {
  width: min(1280px, 92%);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4.5vw, 3.5rem);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.35);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  box-shadow: 0 0 15px rgba(255, 90, 31, 0.15);
}

.section-title {
  color: var(--color-text-main);
  margin-bottom: 0.85rem;
}

.section-title span {
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Buttons & CTAs - Touch Optimized (min 48px height) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  min-height: 48px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  user-select: none;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn:hover::after {
  left: 150%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #d4380d 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.45);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #e59800 100%);
  color: #1a0f07;
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

.btn-gold:active {
  transform: scale(0.98);
}

.btn-outline {
  background: rgba(32, 21, 15, 0.8);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  backdrop-filter: blur(8px);
}

.btn-outline:hover,
.btn-outline:active {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
  background: rgba(44, 29, 21, 0.9);
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* Header & Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #1f0e08, #3b170c, #1f0e08);
  border-bottom: 1px solid rgba(255, 90, 31, 0.25);
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  color: var(--color-gold);
  text-align: center;
  position: relative;
  z-index: 100;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #2ec4b6;
  animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(46, 196, 182, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(13, 8, 6, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 90;
  transition: all var(--transition-fast);
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(13, 8, 6, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  z-index: 90;
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-lg);
  border-bottom-color: rgba(255, 90, 31, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.25rem 0;
}

.brand-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(255, 90, 31, 0.45));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.logo-wrap:hover .brand-logo-img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 6px 20px rgba(255, 90, 31, 0.7));
}

.footer-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 16px rgba(255, 90, 31, 0.4));
}

.logo-text h1 {
  font-size: 1.65rem;
  margin: 0;
  line-height: 1;
  color: var(--color-text-main);
  letter-spacing: 0.06em;
}

.logo-text .logo-sub {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: 3px;
}

/* Prominent Hero Brand Emblem Badge */
.hero-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background: linear-gradient(135deg, rgba(37, 20, 14, 0.95) 0%, rgba(20, 11, 8, 0.95) 100%);
  border: 2px solid var(--color-border-glow);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md), 0 0 25px rgba(255, 90, 31, 0.2);
  backdrop-filter: blur(10px);
}

.hero-brand-badge-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 90, 31, 0.5));
}

.hero-brand-badge-text {
  display: flex;
  flex-direction: column;
}

.badge-brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.badge-brand-sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

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

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.cart-btn-header {
  position: relative;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.35);
  color: var(--color-text-main);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.92rem;
  min-height: 42px;
  transition: all var(--transition-fast);
  touch-action: manipulation;
}

.cart-btn-header:hover,
.cart-btn-header:active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.cart-count-badge {
  background: var(--color-gold);
  color: #120b08;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  min-width: 20px;
  text-align: center;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(32, 21, 15, 0.8);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  font-size: 1.4rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

/* Mobile Nav Drawer / Panel */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 8, 6, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-nav-panel.open {
  transform: translateY(0);
  display: flex;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

.mobile-nav-close {
  background: none;
  border: 1px solid var(--color-border);
  color: #fff;
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  padding: 0.85rem 1rem;
  background: rgba(32, 21, 15, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-links a:active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.mobile-phone-link {
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #d4380d 100%) !important;
  color: #fff !important;
  justify-content: center;
  font-weight: 700;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 90, 31, 0.15);
  border: 1px solid rgba(255, 90, 31, 0.4);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.hero-title .highlight {
  color: var(--color-primary);
  background: linear-gradient(135deg, #ff7d47 0%, #ffb703 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #e1d2c6;
  margin-bottom: 2rem;
  max-width: 580px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.stat-item h4 {
  font-size: 1.7rem;
  color: var(--color-gold);
  margin-bottom: 0.15rem;
  line-height: 1;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual Showcase */
.hero-visual-wrap {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.hero-visual-card img {
  width: 100%;
  height: clamp(300px, 45vw, 460px);
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
}

.hero-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 8, 6, 0.95) 0%, rgba(13, 8, 6, 0.6) 60%, transparent 100%);
  padding: 1.75rem 1.25rem 1.25rem;
}

.hero-visual-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(13, 8, 6, 0.88);
  border: 1px solid var(--color-gold);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.hero-visual-badge .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.hero-visual-badge .label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.floating-review-pill {
  position: absolute;
  bottom: -15px;
  left: -15px;
  background: rgba(23, 15, 11, 0.95);
  border: 1px solid var(--color-border-glow);
  padding: 0.75rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  backdrop-filter: blur(12px);
  z-index: 10;
}

.review-avatar-group {
  display: flex;
  font-size: 1.2rem;
}

.review-text-pill strong {
  display: block;
  font-size: 0.88rem;
  color: var(--color-gold);
}

.review-text-pill span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Live Smoker Inventory Bar
   ========================================================================== */
.live-smoker-bar {
  background: linear-gradient(135deg, #1c100a 0%, #2b160d 50%, #1c100a 100%);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  position: relative;
}

.smoker-status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.smoker-card {
  background: rgba(13, 8, 6, 0.78);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.smoker-icon {
  font-size: 2rem;
  background: rgba(255, 90, 31, 0.15);
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 90, 31, 0.3);
}

.smoker-details h4 {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.smoker-details .progress-wrap {
  width: 100%;
  height: 6px;
  background: #332015;
  border-radius: var(--radius-full);
  margin: 0.35rem 0;
  overflow: hidden;
}

.smoker-details .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  border-radius: var(--radius-full);
}

.smoker-details .stock-text {
  font-size: 0.78rem;
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================================================
   Menu Catalog & Mobile Horizontal Filter Scrolling
   ========================================================================== */
.menu-section {
  background-color: var(--color-surface);
}

.menu-filter-nav {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.menu-filter-nav::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 42px;
  touch-action: manipulation;
}

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

.filter-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

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

.menu-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.menu-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(13, 8, 6, 0.85);
  border: 1px solid var(--color-primary);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.item-rating {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  background: rgba(13, 8, 6, 0.85);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--color-gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(6px);
}

.menu-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
  gap: 0.5rem;
}

.menu-card-title {
  font-size: 1.25rem;
  color: #fff;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.15rem;
  flex-grow: 1;
  line-height: 1.5;
}

.menu-card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}

.tag-mini {
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  background: #2b1d16;
  border-radius: var(--radius-sm);
  color: #d1bfb4;
}

.menu-card-actions {
  display: flex;
  gap: 0.65rem;
}

.btn-add-cart {
  flex-grow: 1;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  min-height: 46px;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  touch-action: manipulation;
}

.btn-add-cart:active {
  transform: scale(0.98);
}

.btn-customize {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  min-height: 46px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.88rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  touch-action: manipulation;
}

.btn-customize:active {
  border-color: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   Craft Section
   ========================================================================== */
.craft-section {
  position: relative;
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.craft-image-composition {
  position: relative;
}

.craft-main-img {
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: clamp(300px, 40vw, 460px);
  object-fit: cover;
}

.craft-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--color-surface-card);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  text-align: center;
}

.craft-floating-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-gold);
  line-height: 1;
  font-weight: 800;
}

.craft-floating-badge .badge-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0.25rem;
}

.craft-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.pillar-item {
  background: rgba(32, 21, 15, 0.6);
  border: 1px solid var(--color-border);
  padding: 1.15rem;
  border-radius: var(--radius-md);
}

.pillar-item .pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: block;
}

.pillar-item h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.pillar-item p {
  font-size: 0.82rem;
}

/* ==========================================================================
   Schedule & Pop-up Section
   ========================================================================== */
.schedule-section {
  background: var(--color-surface);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.schedule-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

.schedule-card.active-today {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, #2b170e 0%, #1c0f0a 100%);
  box-shadow: 0 0 20px rgba(255, 90, 31, 0.25);
}

.schedule-date-badge {
  display: inline-block;
  background: rgba(255, 90, 31, 0.15);
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
}

.schedule-card.active-today .schedule-date-badge {
  background: var(--color-primary);
  color: #fff;
}

.schedule-location h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.schedule-address {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.schedule-hours {
  font-size: 0.85rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 1.15rem;
}

/* ==========================================================================
   Catering Section
   ========================================================================== */
.catering-section {
  background: linear-gradient(135deg, #180e09 0%, #29150c 50%, #180e09 100%);
  position: relative;
}

.catering-calculator-wrap {
  background: var(--color-surface-card);
  border: 2px solid var(--color-border-glow);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 3rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}

.calculator-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.control-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.slider-val-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.slider-val-display .current-val {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--color-gold);
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  height: 10px;
  background: #3a2216;
  border-radius: var(--radius-full);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--color-primary);
  touch-action: pan-y;
}

.option-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.65rem;
}

.chip-select {
  background: #271912;
  border: 1px solid var(--color-border);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  user-select: none;
  min-height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  touch-action: manipulation;
}

.chip-select:active {
  border-color: var(--color-primary);
}

.chip-select.selected {
  background: rgba(255, 90, 31, 0.2);
  border-color: var(--color-primary);
  color: var(--color-gold);
  font-weight: 700;
}

.calculator-estimate-box {
  background: #150c08;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.estimate-header h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.estimate-price-wrap {
  text-align: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 1.25rem 0;
}

.estimate-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--color-gold);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.estimate-per-person {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.estimate-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}

.estimate-includes-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1c1b6;
}

.estimate-includes-list li span {
  color: var(--color-success);
}

/* ==========================================================================
   Reviews & Guarantee Section
   ========================================================================== */
.reviews-section {
  background: var(--color-bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.review-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.review-quote {
  font-size: 0.98rem;
  font-style: italic;
  color: #eeddd2;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--color-border);
  padding-top: 0.85rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

.author-info span {
  font-size: 0.75rem;
  color: var(--color-gold);
}

.guarantee-banner {
  background: linear-gradient(135deg, #381b10 0%, #1f0e08 100%);
  border: 2px dashed rgba(255, 183, 3, 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  margin-top: 3.5rem;
  position: relative;
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.guarantee-banner h3 {
  color: var(--color-gold);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  margin-bottom: 0.5rem;
}

.guarantee-banner p {
  max-width: 650px;
  margin: 0 auto 1.25rem;
  font-size: 0.98rem;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background: #080403;
  border-top: 1px solid var(--color-border);
  padding: 3.5rem 0 5.5rem;
  position: relative;
  z-index: 10;
}

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

.footer-col h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0.2rem 0;
  display: inline-block;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-contact-item span.icon {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid #1a0f0a;
  padding-top: 1.75rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

/* ==========================================================================
   Shopping Cart Drawer & Bottom Sheet
   ========================================================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(450px, 100vw);
  background: #140d09;
  border-left: 2px solid var(--color-border-glow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 999;
  transform: translateX(105%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a100b;
}

.cart-header h3 {
  font-size: 1.25rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-close-btn {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.cart-reward-bar {
  background: #1f140e;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.8rem;
}

.reward-progress-track {
  width: 100%;
  height: 6px;
  background: #332017;
  border-radius: var(--radius-full);
  margin-top: 0.35rem;
  overflow: hidden;
}

.reward-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

.cart-items-body {
  padding: 1.25rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-empty-state {
  text-align: center;
  padding: 2.5rem 1rem;
  margin: auto;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.cart-item {
  background: #1d120d;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 0.85rem;
  align-items: center;
}

.cart-item img {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.cart-item-customizations {
  font-size: 0.75rem;
  color: var(--color-gold);
  margin-bottom: 0.25rem;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 700;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.qty-btn {
  background: #2a1b13;
  border: 1px solid var(--color-border);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-weight: 700;
  touch-action: manipulation;
}

.qty-val {
  font-weight: 700;
  font-size: 0.92rem;
  min-width: 18px;
  text-align: center;
}

.cart-footer {
  padding: 1.25rem;
  background: #190f0a;
  border-top: 1px solid var(--color-border);
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
}

.promo-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.promo-input-group input {
  flex-grow: 1;
  background: #110906;
  border: 1px solid var(--color-border);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.promo-input-group input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.cart-subtotals {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.cart-subtotals .row {
  display: flex;
  justify-content: space-between;
  color: var(--color-text-muted);
}

.cart-subtotals .row.total {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  border-top: 1px solid var(--color-border);
  padding-top: 0.4rem;
  margin-top: 0.2rem;
}

.cart-subtotals .row.total span:last-child {
  color: var(--color-gold);
}

.checkout-action-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #170f0b;
  border: 2px solid var(--color-border-glow);
  border-radius: var(--radius-lg);
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.modal-header {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.modal-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.modal-content-body {
  padding: 1.5rem;
}

.modal-content-body h3 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.modal-option-group {
  margin-top: 1.25rem;
}

.modal-option-group h4 {
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 0.65rem;
}

.radio-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #231610;
  border: 1px solid var(--color-border);
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  min-height: 48px;
  touch-action: manipulation;
}

.radio-pill:active {
  border-color: var(--color-primary);
}

.radio-pill input[type="radio"] {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}

.receipt-box {
  background: #110906;
  border: 1px dashed var(--color-gold);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin: 1rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: #eedcd0;
  max-height: 250px;
  overflow-y: auto;
}

/* ==========================================================================
   Mobile Sticky Bottom Order Bar
   ========================================================================== */
.mobile-sticky-order-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18, 11, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border-glow);
  padding: 0.65rem 1rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom));
  z-index: 85;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: space-between;
}

.mobile-sticky-info {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-badge {
  font-size: 0.7rem;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.mobile-sticky-title {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 700;
}

.mobile-sticky-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-mobile-call {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.btn-mobile-order {
  min-height: 42px;
  padding: 0.5rem 1.15rem;
  font-size: 0.9rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  left: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 1050;
  pointer-events: none;
  align-items: center;
}

.toast {
  background: #1f120c;
  border: 1px solid var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  pointer-events: auto;
  animation: toastSlideIn 0.35s ease-out;
  max-width: 400px;
  width: 100%;
}

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

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid,
  .craft-grid,
  .catering-calculator-wrap {
    grid-template-columns: 1fr;
  }
  
  .hero-visual-wrap {
    max-width: 520px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .desktop-only-btn {
    display: none !important;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-sticky-order-bar {
    display: flex;
  }
  
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-review-pill {
    position: static;
    margin-top: 1rem;
  }
  
  .craft-pillars {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100vw;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card {
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
  }

  .brand-logo-img {
    height: 56px;
  }

  .nav-container {
    height: 74px;
  }

  .hero-brand-badge {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
    width: 100%;
  }

  .hero-brand-badge-logo {
    height: 48px;
  }

  .badge-brand-title {
    font-size: 1.05rem;
  }

  .badge-brand-sub {
    font-size: 0.72rem;
  }
}

@media (max-width: 540px) {
  .logo-text {
    display: none;
  }
  
  .announcement-bar {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
  }
  
  .announcement-content span:last-child {
    display: none;
  }
}
