/** Shopify CDN: Minification failed

Line 440:0 Expected "}" to go with "{"

**/
/* Mobile-First Header Styles */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(var(--charcoal));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* Top Bar */
.header-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid hsla(var(--warm-white), 0.1);
}

.header-delivery-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsla(var(--warm-white), 0.8);
}

.header-delivery-icon {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--gold));
}

.header-phone {
  color: hsl(var(--gold));
  text-decoration: none;
}

/* Main Header */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo a {
  text-decoration: none;
}

.site-logo h1 {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: hsl(var(--gold));
  margin: 0;
  transition: opacity 0.3s ease;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-logo h1:hover {
  opacity: 0.9;
}

/* Navigation */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: hsl(var(--warm-white));
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--gold));
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: hsl(var(--gold));
}

.header-nav a:hover::after {
  width: 100%;
}

/* Header Actions - Mobile-Optimized */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-action-btn {
  position: relative;
  background: transparent;
  border: none;
  color: hsl(var(--warm-white));
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-action-btn:hover {
  background: hsla(var(--gold), 0.1);
  color: hsl(var(--gold));
}

.header-action-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  background: hsl(var(--burgundy));
  color: hsl(var(--warm-white));
  font-size: 0.75rem;
  border-radius: 9999px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 2px 8px hsla(var(--burgundy), 0.4);
}

/* Mobile Menu Toggle - Touch-Optimized */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: hsl(var(--warm-white));
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: hsl(var(--gold));
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;          /* makes it cover the whole screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;            /* full viewport height */
  background: hsl(var(--charcoal));
  z-index: 9999;            /* ensure it's above the sticky header */
  padding: 2rem;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

.mobile-nav.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.mobile-nav.active {
  display: block;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsla(var(--warm-white), 0.1);
  border: none;
  color: hsl(var(--warm-white));
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-close:hover {
  background: hsla(var(--gold), 0.2);
  color: hsl(var(--gold));
}

.btn-doordash {
  display: inline-block;
  background-color: #ff3008;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-doordash:hover {
  background-color: #cc2606;
  transform: translateY(-2px);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mobile-nav-links a {
  color: hsl(var(--warm-white));
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 1rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid hsla(var(--warm-white), 0.1);
  position: relative;
}

.mobile-nav-links a:hover {
  color: hsl(var(--gold));
  padding-left: 1.5rem;
}

.mobile-nav-links a::before {
  content: '→';
  position: absolute;
  left: 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover::before {
  opacity: 1;
  left: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .header-delivery-info span {
    display: inline;
  }
}

@media (max-width: 767px) {
  .header-delivery-info span {
    font-size: 0.75rem;
  }
  
  .header-phone {
    font-size: 0.75rem;
  }
  
  .site-logo h1 {
    font-size: 1.25rem;
  }
  
  .header-main {
    padding: 0.75rem 0;
  }
  
  .header-top-bar {
    padding: 0.375rem 0;
  }

  @media (max-width: 767px) {
  .header-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-align: left;
  }

  .header-delivery-info {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: hsla(var(--warm-white), 0.9);
    line-height: 1.5;
  }

  .header-delivery-info span {
    font-size: 0.95rem;
  }

  .header-phone {
    font-size: 1rem;
    font-weight: 600;
    color: hsl(var(--warm-white)) !important;
    text-decoration: none;
  }

  .header-delivery-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: hsl(var(--gold));
  }

  .btn-doordash {
    margin-top: 0.5rem;
    align-self: flex-start;
  }
}


  /* ------------------------------ */
/* Mobile Header Container Styles */
/* ------------------------------ */

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background-color: hsl(var(--charcoal));
  border-bottom: 1px solid hsla(var(--warm-white), 0.1);
  z-index: 101;
}

.mobile-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Mobile Logo Image */
.mobile-logo img {
  max-height: 100px;
  height: auto;
  width: auto;
  display: block;
}

.mobile-logo-text {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: hsl(var(--gold));
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Utility classes */
.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }
}
