/* ==========================================================================
   CAIÇARA DRINKERIA & HEADSHOP - HERO & COMPONENTS STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   1. HEADER & NAVIGATION (HERO & 3-STATE SCROLL ARCHITECTURE)
   -------------------------------------------------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease, background 250ms ease, padding 250ms ease, border-bottom 250ms ease;
  pointer-events: auto;
}

/* Estado 1 — Topo da Página (scrollY <= 30px): Visível, Transparente na Hero */
.header.state-hero-top {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  padding-bottom: 16px;
  min-height: 110px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: min-height 0.3s ease, padding 0.3s ease;
}

@media (min-width: 768px) {
  .header-container {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 1180px) {
  .header-container {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 14px 0;
    background: transparent;
    box-sizing: border-box;
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 52px;
    padding: 6px 14px;
    gap: 10px;
    background: rgba(3, 14, 33, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  }

  .header.state-fixed-visible {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    background: rgba(3, 14, 33, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header.state-fixed-visible .header-container {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 8px;
    min-height: 48px;
    box-shadow: none;
  }

  .header-logo-img {
    width: 255px !important;
    max-width: 60vw;
    height: auto;
  }

  .header.state-fixed-visible .header-logo-img {
    width: 230px !important;
    max-width: 55vw;
  }

  .header-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .btn-header-order {
    height: 24px;
    padding: 0 8px;
    font-size: 0.62rem;
    gap: 4px;
    letter-spacing: 0.02em;
    background: #0088ff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 136, 255, 0.4);
    border: none;
  }

  .btn-header-order-text {
    display: none !important;
  }

  .btn-header-order svg {
    width: 12px;
    height: 12px;
  }

  .order-badge-circle {
    width: 15px;
    height: 15px;
    font-size: 0.6rem;
    color: #0088ff;
  }

  .mobile-toggle {
    width: 27px;
    height: 27px;
    padding: 4px;
  }
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  width: clamp(336px, 26.2vw, 450px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.45));
  transition: width 0.3s ease, height 0.3s ease, transform 0.25s ease;
}

.header-logo-img:hover {
  transform: scale(1.03);
}

.nav-menu {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.7vw, 11px);
  white-space: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu-wrapper {
  display: none;
}

@media (min-width: 992px) {
  .nav-menu-wrapper {
    display: block;
  }
}

@media (max-width: 1180px) {
  .nav-menu {
    gap: 5px;
  }
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  height: 36px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.22s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.nav-divider {
  display: inline-block;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 300;
  margin: 0 3px;
  user-select: none;
}

.nav-link:hover, .nav-link.active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  text-shadow: none;
}

.header-right-group {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
  flex-shrink: 0;
}

/* Estado 2 — Durante a rolagem dentro da Hero (30px < scrollY && antes do final da Hero): Totalmente Escondido */
.header.state-hero-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;
  background: transparent;
}

/* Estado 3 — Quando entrar nas seções abaixo da Hero: Barra Fixa Glassmorphism Apple */
.header.state-fixed-visible {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 22, 55, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Brilho Superior Discreto de Lâmina de Vidro */
.header.state-fixed-visible::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.header.state-fixed-visible .header-container {
  min-height: 82px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header.state-fixed-visible .header-logo-img {
  width: clamp(207px, 16.4vw, 284px);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

/* Compensação de rolagem dos links âncora */
#categorias, #drinks, #headshop, #narguile, #loslos, #localizacao {
  scroll-margin-top: 90px;
}

/* Header Order Button (Pill Azul Vibrante com Borda Discreta) */
.btn-header-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  height: 42px;
  background: #00ace9;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 172, 233, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}
  font-size: 0.84rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 18px rgba(0, 123, 255, 0.4);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-header-order:hover {
  background: #0069d9;
  transform: scale(1.03);
  box-shadow: 0 6px 22px rgba(0, 123, 255, 0.55);
}

.order-badge-circle {
  background: #ffffff;
  color: #007bff;
  font-weight: 900;
  font-size: 0.8rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #00ace9;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-drawer.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer a {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.btn-close-drawer {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  color: #ffffff;
  background: none;
  border: none;
}

/* --------------------------------------------------------------------------
   2. HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  min-height: 780px;
  height: 100vh;
  max-height: 980px;
  position: relative;
  overflow: hidden;
  background-color: #00ace9;
  display: flex;
  align-items: center;
}

.hero-video-wrap,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
}

/* Overlay Completely Removed */
.hero-overlay-dark, .hero-overlay-brand {
  display: none !important;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 24px 60px;
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 125px);
}

@media (min-width: 768px) {
  .hero-container {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.hero-content-left {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 14px;
  margin-bottom: 14px;
}

.hero-logo-box {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-seo-h1 {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scaled Down Base Headline (Proportions Preserved via em units) */
.hero-headline {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(33px, 3.5vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

/* Proportional Size for 'Á NOVIDADE' (0.8em) */
.hero-headline-small {
  font-size: 0.8em;
  display: inline-block;
  font-weight: 800;
}

/* Proportional Size & Heavy Weight for 'CAIPIRINHAS COM ESPUMA' (1.25em) */
.hero-headline-highlight {
  color: #38b6ff;
  font-style: normal !important;
  font-weight: 900 !important;
  font-size: 1.25em !important;
  line-height: 1.05;
  letter-spacing: -0.01em;
  display: block;
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 2px rgba(56, 182, 255, 0.4);
}

/* Subtitle Positioned Under Headline, Above Subtext */
.hero-subtitle-tag {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-subtext {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  max-width: 440px;
  margin-bottom: 32px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

@media (min-width: 576px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Primary Button (Solid Bright Blue - No Gradient) */
.btn-hero-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  background: #007bff;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-hero-dark:hover {
  background: #0069d9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.55);
}

/* Secondary Button (Outline - No Gradient) */
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  background: transparent;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.25s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Gradient divider between Hero and Section 1 removed */
.hero-wave-divider {
  display: none !important;
}

@media (max-width: 991px) {
  .hero {
    min-height: 100svh;
    height: auto;
    padding: 290px 0 120px;
    position: relative;
    display: flex;
    align-items: stretch;
    background-color: #020b1a;
    overflow: hidden;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
  }



  .hero-container {
    padding: 0 28px; /* Aligned with the logo's 28px offset */
    min-height: auto;
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content-left {
    max-width: 55%;
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  /* Barra vertical removida conforme solicitado */
  .hero-content-left::before {
    display: none !important;
  }

  .hero-headline {
    font-size: clamp(19px, 5.2vw, 23px);
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  .hero-headline-small {
    font-size: 1em;
    font-weight: 800;
    color: #ffffff;
    display: block;
  }

  .hero-headline-highlight {
    color: #00a8ff;
    font-size: 1.45em !important;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-top: 6px;
    display: block;
    font-weight: 900 !important;
    text-shadow: 0 2px 16px rgba(0, 168, 255, 0.45);
  }

  .hero-subtitle-tag {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 14px;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  }

  .hero-subtext {
    font-size: 0.80rem;
    line-height: 1.48;
    color: rgba(255, 255, 255, 0.82);
    max-width: 100%;
    margin-bottom: 22px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 180px;
    gap: 12px;
    margin-top: 15px;
  }

  .btn-hero-dark, 
  .btn-hero-outline {
    width: 100%;
    height: 46px;
    font-size: 0.85rem;
    border-radius: 10px;
    justify-content: center;
    box-sizing: border-box;
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .btn-hero-dark {
    background: linear-gradient(135deg, #0088ff 0%, #0055ff 100%);
    box-shadow: 0 4px 14px rgba(0, 136, 255, 0.4);
    border: none;
  }

  .btn-hero-outline {
    background: rgba(3, 14, 33, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   3. DRINKS CATALOG SECTION (UNIFIED 4-COLUMN CATALOG GRID)
   -------------------------------------------------------------------------- */
#drinks,
.drinks-catalog {
  scroll-margin-top: calc(var(--main-header-height, 110px) + 24px);
}

.drinks-catalog {
  padding-top: 100px;
  padding-bottom: 120px;
  background-color: #00ace9;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12) 0%, transparent 70%),
    radial-gradient(circle at 10% 100%, rgba(36, 39, 86, 0.15) 0%, transparent 60%);
  position: relative;
  z-index: 5;
  overflow: visible;
}

/* Grade Principal: 1 Coluna Sidebar + 3 Colunas Cards */
.drinks-catalog-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  position: relative;
  overflow: visible;
}

/* Sidebar Container */
.drinks-sidebar {
  position: relative;
  width: 100%;
  align-self: stretch;
  overflow: visible;
}

/* Elemento Sticky Interno (Contém Título, Subtítulo e Categorias) */
.drinks-sidebar-sticky,
.drinks-sidebar-inner {
  position: sticky;
  top: calc(var(--main-header-height, 110px) + 24px);
  align-self: start;
  z-index: 5;
  max-height: none;
  overflow: visible;
}

/* Bloco do Título e Subtítulo dentro do Sticky */
.drinks-sidebar-heading {
  margin-bottom: 34px;
  text-align: left;
}

.drinks-sidebar-heading .drinks-catalog-title {
  margin: 0;
  max-width: 420px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #ffffff;
  text-wrap: balance;
}

.drinks-sidebar-heading .drinks-catalog-subtitle {
  max-width: 400px;
  margin: 24px 0 0;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-wrap: balance;
}

/* Container do Menu Vertical de Categorias */
.drinks-categories {
  background: rgba(36, 39, 86, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 0;
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.category-filter {
  width: 100%;
  padding: 16px 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: block;
}

.category-filter:last-child {
  border-bottom: none;
}

.category-filter:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.category-filter.active {
  color: #ffffff;
  background: #242756;
  border-left: 4px solid #00ace9;
}

/* Grade de Drinks (3 colunas no desktop) */
.drinks-grid {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 102px;
}

.drinks-empty-msg {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Tablet Layout */
@media (max-width: 1180px) {
  .drinks-catalog-layout {
    grid-template-columns: 230px repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .drinks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* Mobile Layout (< 767px) */
@media (max-width: 767px) {
  .drinks-catalog {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .drinks-catalog-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .drinks-sidebar {
    position: static;
    width: 100%;
  }

  .drinks-sidebar-sticky,
  .drinks-sidebar-inner {
    position: static;
    top: auto;
  }

  .drinks-sidebar-heading {
    margin-bottom: 24px;
  }

  .drinks-sidebar-heading .drinks-catalog-title {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.1;
    padding: 0 28px;
  }

  .drinks-sidebar-heading .drinks-catalog-subtitle {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 10px;
    padding: 0 28px;
    color: rgba(255, 255, 255, 0.85);
  }

  .drinks-categories {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 6px 12px;
    gap: 8px;
    border-radius: 12px;
    width: 100%;
  }

  .drinks-categories::-webkit-scrollbar {
    display: none;
  }

  .category-filter {
    width: auto;
    border-bottom: none;
    padding: 10px 18px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .category-filter.active {
    border-left: none;
    background: #242756;
  }

  .drinks-grid {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 0;
  }
}

.drink-card-white {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.drink-card-white:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14), 0 6px 16px rgba(0, 0, 0, 0.06);
}

.btn-add-circle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(36, 39, 86, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(36, 39, 86, 0.35);
  z-index: 10;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.btn-add-circle:hover {
  transform: scale(1.12);
  background: #00ace9;
  box-shadow: 0 8px 22px rgba(0, 172, 233, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-add-circle svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.drink-card-img-box {
  width: 100%;
  height: 235px;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.drink-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drink-card-white:hover .drink-card-img-box img {
  transform: scale(1.05);
}

.drink-img-placeholder {
  font-size: 2.2rem;
  font-weight: 900;
  color: #cbd5e1;
}

.drink-card-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.drink-card-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.drink-card-description {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.drink-card-price {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  color: #0284c7;
  white-space: nowrap;
  margin-bottom: 18px;
  display: block;
  letter-spacing: -0.01em;
}

.drink-card-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.drink-card-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  background: rgba(2, 132, 199, 0.06);
  border: 1px solid rgba(2, 132, 199, 0.22);
  color: #0284c7;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.btn-card-add-pedido {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  background-color: #242756;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(36, 39, 86, 0.25);
}

.btn-card-add-pedido:hover {
  background-color: #00ace9;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 172, 233, 0.42);
}

.btn-card-add-pedido svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* --------------------------------------------------------------------------
   5. HEADSHOP & TABACARIA SECTION (100% REFACTORED TO FIDELITY SPECIFICATION)
   -------------------------------------------------------------------------- */
.headshop-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: auto;
  background-color: #031637;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .headshop-section {
    display: grid;
    grid-template-columns: minmax(480px, 52%) 1fr;
    min-height: 720px;
  }
}

/* Coluna Esquerda: Foto Real da Loja (Flush total a Esquerda) */
.headshop-image {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 720px;
  margin: 0;
  padding: 0;
  border: none;
}

@media (min-width: 992px) {
  .headshop-image {
    display: block;
  }
}

.headshop-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
}

/* Coluna Direita: Conteúdo Institucional */
.headshop-content {
  width: 100%;
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #031637;
}

@media (min-width: 992px) {
  .headshop-content {
    padding: clamp(50px, 5vw, 80px) clamp(40px, 5vw, 90px) clamp(60px, 6vw, 90px);
  }
}

/* Cabeçalho */
.headshop-header {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .headshop-header {
    margin-bottom: 28px;
  }
}

.headshop-tag-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #00ace9;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.headshop-main-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.headshop-title-highlight {
  color: #00ace9;
  font-weight: 900;
}

/* Mobile Photo Placement */
.headshop-mobile-image {
  display: block;
  width: 100vw;
  margin-left: -24px;
  margin-right: -24px;
  height: clamp(340px, 50vh, 460px);
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .headshop-mobile-image {
    display: none;
  }
}

.headshop-mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

/* Apresentação */
.headshop-description {
  max-width: 780px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .headshop-description {
    margin-bottom: 36px;
  }
}

.headshop-text-p1 {
  margin-bottom: 12px;
}

.headshop-text-p2 {
  color: rgba(255, 255, 255, 0.75);
}

/* Subtítulos de Seção */
.headshop-subtitle {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.90rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Lista de Produtos (2 Colunas, Marcador #00ace9, Sem Cards) */
.headshop-products {
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .headshop-products {
    margin-bottom: 40px;
  }
}

.headshop-products-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 780px;
}

@media (min-width: 640px) {
  .headshop-products-columns {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.headshop-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.headshop-products-list li {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  background-color: #00ace9;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Bloco de Marcas */
.headshop-brands {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .headshop-brands {
    margin-bottom: 32px;
  }
}

.headshop-brands-text {
  max-width: 800px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.headshop-brands-text p {
  margin-bottom: 16px;
}

.headshop-brands-text p:last-child {
  margin-bottom: 0;
}

/* Grade de Marcas (2 linhas no desktop) */
.headshop-brands-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
}

.headshop-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.headshop-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  user-select: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.headshop-brand-badge:hover {
  border-color: #00ace9;
  background: rgba(0, 172, 233, 0.08);
}

/* Botão do WhatsApp */
.headshop-btn-wrapper {
  width: 100%;
  max-width: 440px;
}

.btn-headshop-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 32px;
  background-color: #00ace9;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 172, 233, 0.3);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-headshop-wa svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.btn-headshop-wa:hover {
  background-color: #0096cc;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 172, 233, 0.45);
}

/* --------------------------------------------------------------------------
   5.5. NARGUILÉ & ACESSÓRIOS SECTION (VITRINE INSTITUCIONAL PADRÃO HEADSHOP)
   -------------------------------------------------------------------------- */
.narguile-section {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #00ace9;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 70%),
    radial-gradient(circle at 10% 100%, rgba(36, 39, 86, 0.15) 0%, transparent 60%);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

@media (min-width: 992px) {
  .narguile-section {
    grid-template-columns: 1fr minmax(480px, 52%);
  }
}

/* Coluna Esquerda: Conteúdo Institucional */
.narguile-content {
  width: 100%;
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: transparent;
}

@media (min-width: 992px) {
  .narguile-content {
    padding: clamp(50px, 5vw, 80px) clamp(40px, 5vw, 90px) clamp(60px, 6vw, 90px);
  }
}

/* Cabeçalho */
.narguile-header {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .narguile-header {
    margin-bottom: 28px;
  }
}

.narguile-tag-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #242756;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.narguile-main-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  color: #242756;
  margin: 0;
  letter-spacing: -0.02em;
  max-width: 680px;
}

.narguile-title-l1 {
  font-size: 1.25em;
  display: inline-block;
}

.narguile-title-white,
.narguile-title-highlight {
  color: #ffffff;
  font-weight: 900;
  font-size: 1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  display: inline-block;
}

.narguile-title-l3 {
  font-size: 1.40em;
  display: inline-block;
}

/* Mobile Photo Placement */
.narguile-mobile-image {
  display: block;
  width: 100vw;
  margin-left: -24px;
  margin-right: -24px;
  height: clamp(340px, 50vh, 460px);
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .narguile-mobile-image {
    display: none;
  }
}

.narguile-mobile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

/* Apresentação */
.narguile-description {
  max-width: 780px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.55;
  color: #242756;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .narguile-description {
    margin-bottom: 36px;
  }
}

.narguile-text-p1 {
  margin-bottom: 12px;
}

.narguile-text-p2 {
  color: rgba(36, 39, 86, 0.88);
}

/* Subtítulos de Seção */
.narguile-subtitle {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.05rem, 1.1vw, 1.15rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Lista de Produtos (3 Colunas, Marcador Branco, Sem Cards) */
.narguile-products {
  margin-bottom: 32px;
}

@media (min-width: 992px) {
  .narguile-products {
    margin-bottom: 40px;
  }
}

.narguile-products-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 820px;
}

@media (min-width: 640px) {
  .narguile-products-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.narguile-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.narguile-products-list li {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: #242756;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.narguile-products-list .bullet-dot {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Bloco de Marcas */
.narguile-brands {
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .narguile-brands {
    margin-bottom: 32px;
  }
}

.narguile-brands-text {
  max-width: 800px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
  color: rgba(36, 39, 86, 0.92);
  font-weight: 600;
  margin-bottom: 20px;
}

.narguile-brands-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 840px;
}

.narguile-brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.narguile-brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(36, 39, 86, 0.35);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #242756;
  white-space: nowrap;
  user-select: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.narguile-brand-badge:hover {
  border-color: #242756;
  background: rgba(36, 39, 86, 0.12);
  transform: translateY(-2px);
}

/* Botão do WhatsApp (Estilo Headshop) */
.narguile-btn-wrapper {
  width: 100%;
  max-width: 440px;
}

.btn-narguile-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 32px;
  background-color: #242756;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(36, 39, 86, 0.3);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.btn-narguile-wa svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.btn-narguile-wa:hover {
  background-color: #1a1d42;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(36, 39, 86, 0.45);
}

/* Coluna Direita Desktop: Foto Real (Flush a Direita) */
.narguile-image {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .narguile-image {
    display: block;
  }
}

.narguile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}
  box-shadow: 0 6px 20px rgba(0, 172, 233, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

@media (min-width: 576px) {
  .btn-narguile-wa {
    width: auto;
  }
}

.btn-narguile-wa:hover {
  background: #0096cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 172, 233, 0.5);
}

/* Right Column Photo Styling */
.narguile-content-right {
  display: none;
  height: 100%;
}

@media (min-width: 992px) {
  .narguile-content-right {
    display: flex;
  }
}

.narguile-mobile-photo-box {
  display: flex;
  margin-bottom: 28px;
}

@media (min-width: 992px) {
  .narguile-mobile-photo-box {
    display: none;
  }
}

.narguile-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.narguile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.narguile-placeholder-box {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(0, 172, 233, 0.15) 0%, rgba(36, 39, 86, 0.6) 100%);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.narguile-placeholder-box svg {
  width: 54px;
  height: 54px;
  color: #00ace9;
}

/* --------------------------------------------------------------------------
   5.8. SORVETES LOS LOS SECTION (100% VIEWPORT ANCHORED SHOWCASE)
   -------------------------------------------------------------------------- */
.loslos-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding-top: 80px;
  padding-bottom: 120px;
  background-color: #f9efe2;
  color: #242756;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .loslos-section {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.loslos-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.loslos-content-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

@media (min-width: 992px) {
  .loslos-content-left {
    width: 45%;
    max-width: 600px;
  }
}

.loslos-tag-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #242756;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.loslos-dash-accent {
  color: #f97316;
  font-weight: 900;
}

.loslos-main-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
  line-height: 1.05;
}

.loslos-title-line-1 {
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  font-weight: 900;
  color: #242756;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  display: block;
  white-space: nowrap;
}

.loslos-title-line-2 {
  font-size: clamp(1.8rem, 2.8vw, 3.0rem);
  font-weight: 900;
  color: #f97316;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 4px;
  display: block;
  white-space: nowrap;
}

.loslos-title-line-3 {
  font-size: clamp(2.4rem, 3.75vw, 3.9rem);
  font-weight: 900;
  color: #242756;
  letter-spacing: -0.02em;
  display: block;
  white-space: nowrap;
}

.loslos-text-main {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #242756;
  margin-bottom: 14px;
  font-weight: 600;
}

.loslos-text-sub {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #242756;
  opacity: 0.85;
  margin-bottom: 28px;
}

/* Institutional Product Badges: Palitos (Orange) & Cups (Green) */
.loslos-product-tags-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.loslos-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  user-select: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.loslos-product-tag.tag-palitos {
  background: rgba(249, 115, 22, 0.04);
  border: 2px solid #f97316;
  color: #f97316;
}

.loslos-product-tag.tag-cups {
  background: rgba(69, 168, 100, 0.04);
  border: 2px solid #45a864;
  color: #45a864;
}

/* Button & Playful WhatsApp Note */
.loslos-btn-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.btn-loslos-wa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 24px;
  background: #242756;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(36, 39, 86, 0.25);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 440px;
}

.btn-loslos-wa-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wa-icon-bubble svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.btn-wa-arrow {
  display: flex;
  align-items: center;
}

.btn-loslos-wa:hover {
  background: #191c42;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(36, 39, 86, 0.35);
}

.loslos-wa-note {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  font-style: italic;
  color: #242756;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.note-arrow {
  font-size: 1.2rem;
  font-style: normal;
  color: #242756;
}

/* Imagem dos Produtos Ancorada no Limite Direito da Viewport (right: 0) */
.loslos-products {
  position: relative;
  top: auto;
  right: auto;
  transform: none;
  width: 100%;
  height: auto;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

@media (min-width: 992px) {
  .loslos-products {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: clamp(527px, 44.2vw, 833px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    margin-top: 0;
  }
}

.loslos-products img {
  width: 100%;
  height: 100%;
  max-height: 646px;
  object-fit: contain;
  object-position: right center;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: none;
  border: none;
}

/* --------------------------------------------------------------------------
   7. FOOTER (Refactored — 3 columns)
   -------------------------------------------------------------------------- */
.footer {
  background: #020b20;
  color: #ffffff;
  padding: 90px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
    align-items: start;
  }
}

/* Coluna 1: Apresentação */
.footer-about-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-about {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-about p {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* Colunas 2 e 3 */
.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* Links clicáveis */
.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #00ace9;
}

/* Barra inferior */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-admin-link {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-admin-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   8. DRAWER & MODALS
   -------------------------------------------------------------------------- */
.cart-drawer-overlay, .admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-drawer-overlay.open, .admin-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: #f8fafc;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.cart-drawer-header {
  padding: 24px;
  background: #242756;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 2;
}

.cart-drawer-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.btn-close-cart {
  color: #ffffff;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.btn-close-cart:hover {
  opacity: 1;
}

.cart-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
  background: #ffffff;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-item-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
}

.cart-item-unit-price {
  font-size: 0.85rem;
  color: #64748b;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-qty {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #334155;
  transition: background 0.2s;
}

.btn-qty:hover {
  background: #e2e8f0;
}

.cart-item-qty {
  font-weight: 800;
  font-size: 0.95rem;
  min-width: 16px;
  text-align: center;
}

.btn-remove-item {
  color: #94a3b8;
  background: none;
  border: none;
  margin-left: 4px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-remove-item svg {
  width: 18px;
  height: 18px;
}

.btn-remove-item:hover {
  color: #ef4444;
  background: #fee2e2;
}

.cart-summary-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
}

.cart-summary-total {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
}

.cart-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.cart-form-group label {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  letter-spacing: 0.5px;
}

.cart-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  background: #f8fafc;
  color: #0f172a;
  transition: all 0.2s ease;
}

.cart-input:focus {
  outline: none;
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.1);
}

.cart-input::placeholder {
  color: #94a3b8;
}

/* Segmented Control for Delivery/Pickup */
.segmented-control {
  display: flex;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
}

.segmented-control input[type="radio"] {
  display: none;
}

.segmented-control label {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #64748b;
  text-transform: none;
  letter-spacing: normal;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.segmented-control input[type="radio"]:checked + label {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Address Section */
.address-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.address-section-header {
  margin-bottom: 16px;
}

.address-section-header label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #475569;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.address-hint {
  font-size: 0.85rem;
  color: #64748b;
}

.address-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.address-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.address-grid .cart-form-group {
  margin-bottom: 0;
}

.address-grid .cart-input {
  background: #ffffff;
}

@media (min-width: 768px) {
  .address-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* Delivery Notice Card */
.delivery-notice-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 16px;
  border-radius: 10px;
  margin-top: 12px;
  margin-bottom: 32px;
  line-height: 1.4;
}

.delivery-notice-card .info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Main Submit Button */
.main-submit {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.05rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.2s ease;
  margin-bottom: 24px;
}

.main-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.admin-card {
  background: #ffffff;
  color: #0b1220;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  margin: auto;
  position: relative;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.admin-table th, .admin-table td {
  padding: 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  font-size: 0.88rem;
}

.admin-table th {
  background: #f1f5f9;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   9. PRODUCT SELECTION MODAL
   -------------------------------------------------------------------------- */
.product-modal-card {
  background: #ffffff;
  color: #0b1220;
  width: 92%;
  max-width: 520px;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin: auto;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.btn-close-modal {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
}

.product-modal-header {
  margin-bottom: 20px;
}

.product-modal-title {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 8px 0 6px;
  color: #0b1220;
  text-transform: uppercase;
}

.product-modal-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
}

.modal-section-box {
  margin-bottom: 20px;
}

.modal-section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0b1220;
  margin-bottom: 10px;
}

.modal-options-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-option-card:hover, .modal-option-card:has(:checked) {
  border-color: #0284c7;
  background: #f0f9ff;
}

.option-card-body {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 800;
  font-size: 0.92rem;
}

.option-card-price {
  color: #0284c7;
}

.modal-sabores-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-sabor-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-sabor-pill:has(:checked) {
  border-color: #242756;
  background: #242756;
  color: #ffffff;
}

.modal-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}

.modal-qty-label {
  font-weight: 800;
  font-size: 0.9rem;
  color: #0b1220;
}

/* --------------------------------------------------------------------------
   LOCATION / ONDE ESTAMOS SECTION
   -------------------------------------------------------------------------- */
.location-section {
  width: 100%;
  background: #031637;
  position: relative;
  overflow: hidden;
}

/* Header: 2-column grid (text left, buttons right) */
.location-header {
  width: min(100% - 48px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 64px 20px 48px;
}

@media (min-width: 768px) {
  .location-header {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 64px;
    padding: 80px 0 64px;
  }
}

/* Left column: info */
.location-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00ace9;
  margin-bottom: 16px;
  padding: 6px 18px;
  border: 1.5px solid rgba(0, 172, 233, 0.35);
  border-radius: 100px;
  background: rgba(0, 172, 233, 0.08);
}

.location-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 14px;
  line-height: 1.15;
}

.location-subtitle {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
}

.location-text {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
}

/* Right column: buttons stacked */
.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.btn-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-location svg {
  flex-shrink: 0;
}

.btn-location-gmaps {
  background-color: #00ace9;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 172, 233, 0.35);
}

.btn-location-gmaps:hover {
  background-color: #0096cc;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 172, 233, 0.5);
}

.btn-location-waze {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-location-waze:hover {
  background-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Map: full-width, edge-to-edge */
.location-map {
  width: 100%;
  height: 528px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .location-map {
    height: 720px;
  }
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   ORDER SUMMARY BAR (FIXED BOTTOM)
   -------------------------------------------------------------------------- */
.order-summary-wrapper {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(150%);
  width: calc(100% - 24px);
  max-width: 960px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
}

.order-summary-wrapper.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.order-summary-wrapper.hidden-by-footer {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
}

.order-summary-bar {
  background: rgba(3, 22, 55, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.order-summary-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ace9, transparent);
  opacity: 0.5;
}

.order-summary-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.order-summary-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ace9;
  flex-shrink: 0;
}

.order-summary-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.order-summary-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.order-summary-details {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.order-summary-details strong {
  color: #ffffff;
  font-weight: 600;
}

.btn-order-summary {
  background: #00ace9;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  padding: 0 20px;
  height: 44px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.btn-order-summary:hover {
  background: #0096cc;
  transform: translateY(-2px);
}

.btn-order-summary:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  cursor: not-allowed;
  transform: none;
}

@media (min-width: 768px) {
  .order-summary-wrapper {
    bottom: 24px;
    width: min(calc(100% - 40px), 960px);
  }
  
  .order-summary-bar {
    padding: 16px 24px;
  }
  
  .order-summary-icon {
    width: 48px;
    height: 48px;
  }
  
  .order-summary-title {
    font-size: 0.95rem;
  }
  
  .order-summary-details {
    font-size: 0.9rem;
  }
  
  .btn-order-summary {
    height: 52px;
    padding: 0 28px;
    font-size: 0.95rem;
  }
}

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 850;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
}



@media (max-width: 767px) {
  .floating-whatsapp {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
  }
  
  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}

/* --- MOBILE DRINKS CAROUSELS --- */
.mobile-drinks-carousels-wrapper {
  display: none;
}

@media (max-width: 767px) {
  .mobile-drinks-carousels-wrapper {
    display: block;
    margin-top: 24px;
  }

  .drinks-categories,
  .drinks-grid {
    display: none !important;
  }

  .mobile-drink-category {
    margin-top: 36px;
  }

  .mobile-drink-category:first-child {
    margin-top: 0;
  }

  .mobile-drink-category__title {
    margin: 0 0 14px;
    padding: 0 28px;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(22px, 5.8vw, 26px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.035em;
  }

  .mobile-drink-category__track {
    display: flex;
    gap: 14px;
    width: 100%;
    overflow-x: auto;
    padding: 4px 28px 22px;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mobile-drink-category__track::-webkit-scrollbar {
    display: none;
  }

  .mobile-drink-category__track > .drink-card-white {
    flex: 0 0 min(78vw, 320px);
    scroll-snap-align: start;
    width: auto;
    margin: 0;
  }
}

/* ==========================================================================
   PÁGINA DEDICADA /CARDAPIO STYLES
   ========================================================================== */

/* Regra global para ocultar botão flutuante quando necessário */
.floating-whatsapp.is-hidden {
  display: none !important;
}

/* --- Cardapio Header --- */
.cardapio-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(2, 11, 26, 0.88) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.is-cardapio-mode .btn-header-order-text {
  display: inline !important;
}

.btn-back-home-link {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  margin-left: 4px;
}

.btn-back-home-link:hover {
  color: #00ace9;
}

@media (max-width: 767px) {
  .btn-back-home-link {
    display: none !important;
  }
}

.btn-cardapio-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.btn-cardapio-search:hover {
  background: rgba(0, 168, 255, 0.2);
  border-color: #00a8ff;
  color: #00a8ff;
}

@media (max-width: 767px) {
  .is-cardapio-mode .header-container {
    padding: 8px 12px !important;
    min-height: 52px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
  }

  .is-cardapio-mode .header-left-group {
    flex: 1 1 auto;
    min-width: 0;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .is-cardapio-mode .header-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .is-cardapio-mode .header-logo-img {
    width: clamp(110px, 32vw, 135px) !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .is-cardapio-mode .header-right-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
  }

  .is-cardapio-mode .btn-cardapio-search {
    display: none !important;
  }

  .is-cardapio-mode .btn-header-order-text {
    display: none !important;
  }

  .is-cardapio-mode .btn-header-order {
    min-height: 38px !important;
    width: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }

  .is-cardapio-mode .btn-header-order svg {
    width: 18px !important;
    height: 18px !important;
  }

  .is-cardapio-mode .btn-header-order .cart-count-badge {
    position: absolute !important;
    top: -4px !important;
    right: -4px !important;
    margin: 0 !important;
    width: 18px !important;
    height: 18px !important;
    font-size: 0.65rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* --- Cardapio Banner Hero (100% largura com texto sobreposto) --- */
.cardapio-banner-hero,
.cardapio-hero {
  width: 100%;
  height: 500px; /* Desktop: altura fixa 500px */
  margin-top: var(--main-header-height, 66px);
  background-image: url('../assets/images/backgroun-cardapio-caicara-desktop.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.cardapio-hero-container {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Posiciona o texto no lado esquerdo no desktop, preservando os copos à direita */
}

.cardapio-hero-text-box {
  max-width: 460px;
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.cardapio-hero-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 168, 255, 0.2);
  border: 1px solid rgba(0, 168, 255, 0.35);
  border-radius: 20px;
  color: #00a8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.cardapio-hero-title {
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.cardapio-hero-subtitle {
  font-size: clamp(14px, 2.2vw, 17px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cardapio-hero-mobile-br {
  display: none;
}

@media (max-width: 1024px) {
  .cardapio-hero-mobile-br {
    display: block;
  }
}

@media (max-width: 767px) {
  .cardapio-banner-hero,
  .cardapio-hero {
    height: 360px; /* Mobile: altura fixa 360px */
    background-image: url('../assets/images/backgroun-cardapio-caicara-mobile.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .cardapio-hero-container {
    justify-content: flex-start;
  }

  .cardapio-hero-text-box {
    max-width: 85%;
    padding: 0 16px;
  }

  .cardapio-hero-title {
    font-size: 34px !important; /* Aumento de 20% em relação aos 28px originais no mobile */
    line-height: 1.15;
  }
}

/* --- Cardapio Sticky Nav --- */
.cardapio-sticky-nav {
  position: sticky;
  top: var(--main-header-height, 66px);
  z-index: 900;
  background: rgba(2, 11, 26, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.cardapio-nav-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cardapio-categories-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.cardapio-categories-scroll::-webkit-scrollbar {
  display: none;
}

.cardapio-cat-pill {
  flex: 0 0 auto;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cardapio-cat-pill:hover,
.cardapio-cat-pill.active {
  background: #00a8ff;
  border-color: #00a8ff;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 168, 255, 0.35);
}

/* --- Texto Introdutório --- */
.cardapio-intro-text-section {
  padding: 32px 0 12px;
  background: #020b1a;
}

.cardapio-intro-title {
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.cardapio-intro-subtitle {
  font-size: clamp(14px, 2.5vw, 17px);
  color: #94a3b8;
  line-height: 1.45;
  margin: 0;
}

/* --- Modal de Busca --- */
.cardapio-search-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background: rgba(2, 11, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.cardapio-search-modal-card {
  background: #06142a;
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.cardapio-search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cardapio-search-modal-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
}

.btn-close-search-modal {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.cardapio-search-modal-input-box {
  position: relative;
  width: 100%;
}

.cardapio-search-modal-input-box .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #00a8ff;
}

.cardapio-categories-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
}

.cardapio-categories-scroll::-webkit-scrollbar {
  display: none;
}

.cardapio-cat-pill {
  flex: 0 0 auto;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cardapio-cat-pill:hover,
.cardapio-cat-pill.active {
  background: #00a8ff;
  border-color: #00a8ff;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 168, 255, 0.35);
}

/* --- Cardapio Products Grid --- */
.cardapio-products-section {
  padding: 40px 0 120px;
  background: #020b1a;
}

.cardapio-category-block {
  margin-bottom: 48px;
}

.cardapio-category-block:last-child {
  margin-bottom: 0;
}

.cardapio-category-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.cardapio-category-title {
  font-size: clamp(22px, 4.8vw, 28px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.01em;
  margin: 0;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cardapio-category-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: #00ace9;
  border-radius: 2px;
}

.cardapio-category-count {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.cardapio-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 640px) {
  .cardapio-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .cardapio-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.cardapio-empty-msg {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
  font-size: 0.92rem;
}

/* --- Cardapio Compact Card --- */
.cardapio-compact-card {
  background: #06142a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cardapio-compact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 168, 255, 0.3);
}

.cardapio-card-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #020b1a;
  overflow: hidden;
}

.cardapio-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cardapio-compact-card:hover .cardapio-card-img-box img {
  transform: scale(1.05);
}

.cardapio-card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 2px 8px;
  background: rgba(2, 11, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #00a8ff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cardapio-card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cardapio-card-title {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.25;
}

.cardapio-card-desc {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cardapio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 6px;
}

.cardapio-card-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
}

.btn-cardapio-add {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00a8ff;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.btn-cardapio-add:hover {
  background: #0088ff;
  transform: scale(1.08);
}

/* --- Cardapio Footer --- */
.cardapio-footer {
  background: #010611;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0 100px;
  color: #64748b;
  font-size: 0.82rem;
}

.cardapio-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.cardapio-footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 6px;
}

.cardapio-footer-desc {
  color: #94a3b8;
  margin: 0;
}

.cardapio-footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.cardapio-footer-link {
  color: #00a8ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.cardapio-footer-link:hover {
  text-decoration: underline;
}

.cardapio-footer-addr {
  color: #64748b;
}

.cardapio-footer-copy {
  margin-top: 12px;
  font-size: 0.75rem;
  color: #475569;
}

/* --- Botão Final Enviar Meu Pedido (/cardapio) --- */
.cardapio-final-order {
  width: 100%;
  padding: 40px 20px 56px;
  background: transparent;
  box-sizing: border-box;
}

.cardapio-final-order__button {
  width: min(100%, 720px);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: 0;
  border-radius: 18px;
  background: #00ace9;
  color: #ffffff;

  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;

  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 172, 233, 0.24);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cardapio-final-order__button:hover {
  background: #0098cf;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 172, 233, 0.35);
}

.cardapio-final-order__button svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Compatibilidade com a barra flutuante quando o carrinho possui itens */
body.has-order-summary .cardapio-final-order {
  padding-bottom: 140px;
}

@media (max-width: 767px) {
  .cardapio-final-order {
    padding: 32px 16px 48px;
  }

  .cardapio-final-order__button {
    width: 100%;
    min-height: 58px;
    border-radius: 16px;
    font-size: 1.05rem;
  }
}

/* --- Seção Textual de SEO (Homepage) --- */
.seo-text-section {
  padding: 60px 0;
  background: #020b1a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.seo-section-content {
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-section-content p {
  font-size: clamp(14px, 2.2vw, 16px);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

/* --- Home Header Mobile Custom Grid Layout --- */
@media (max-width: 767px) {
  body:not(.is-cardapio-mode) .home-header-mobile {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    align-items: center !important;
    gap: 10px !important;
    width: calc(100% - 24px) !important;
    margin: 12px auto 0 !important;
    padding: 10px 12px !important;
    padding-left: max(12px, env(safe-area-inset-left)) !important;
    padding-right: max(12px, env(safe-area-inset-right)) !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    background: rgba(3, 14, 33, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 40px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .header-logo {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .header-logo img {
    display: block !important;
    width: clamp(138px, 38vw, 180px) !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .order-button {
    flex: 0 0 auto !important;
    min-width: 82px !important;
    height: 48px !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    background: #0088ff !important;
    border-radius: 12px !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 136, 255, 0.4) !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .order-button svg {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .order-count {
    width: 28px !important;
    height: 28px !important;
    flex: 0 0 28px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #0088ff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .menu-toggle {
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .menu-toggle span {
    display: block !important;
    width: 28px !important;
    height: 3px !important;
    min-height: 3px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    flex: 0 0 3px !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .menu-toggle svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
    overflow: visible !important;
  }

  /* Prevent horizontal scrolling globally */
  html, body {
    max-width: 100% !important;
    overflow-x: clip !important;
  }
}

/* Breakpoint extra for screen sizes up to 390px */
@media (max-width: 390px) {
  body:not(.is-cardapio-mode) .home-header-mobile {
    gap: 7px !important;
    padding-inline: 9px !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .header-logo img {
    width: clamp(122px, 35vw, 145px) !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .order-button {
    min-width: 74px !important;
    height: 44px !important;
    padding-inline: 9px !important;
  }

  body:not(.is-cardapio-mode) .home-header-mobile .menu-toggle {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }
}
