/* ================================================================
   ESCONDIDIM — Premium Redesign 2026
   Paleta: Ocean Navy × Refined Gold × Ocean Teal
   Fontes: Playfair Display (headings) · Raleway (body)
   ================================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Backgrounds */
  --es-bg: #060F18;
  --es-navy: #071A2C;
  --es-navy-mid: #0C2540;

  /* Ocean surfaces */
  --es-teal-dark: #004953;
  --es-teal: #0D6B74;
  --es-teal-light: #16939E;

  /* Glass surfaces */
  --es-surface: rgba(0, 47, 58, 0.82);
  --es-surface-2: rgba(4, 20, 32, 0.92);

  /* Text */
  --es-text: #EDE8DC;
  --es-text-soft: rgba(237, 232, 220, 0.82);
  --es-muted: rgba(237, 232, 220, 0.55);

  /* Accent — Refined Gold */
  --es-accent: #C9A55A;
  --es-accent-light: #E4C880;
  --es-accent-dark: #9E7E3A;

  /* Borders */
  --es-border: rgba(201, 165, 90, 0.25);
  --es-border-teal: rgba(13, 107, 116, 0.40);
  --es-border-subtle: rgba(237, 232, 220, 0.10);

  /* Shadows */
  --es-shadow: 0 20px 48px rgba(0, 0, 0, 0.50);
  --es-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.35);
  --es-shadow-gold: 0 8px 28px rgba(201, 165, 90, 0.18);

  /* Hero overlay config */
  --es-hero-bg-opacity: 0.30;
}

/* ================================================================
   GLOBAL BASE
   ================================================================ */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', 'Poppins', sans-serif;
  font-weight: 400;
  color: var(--es-text);
  background-color: var(--es-bg);
  position: relative;
  background-image: url(../../images/funco.jpg), url(../../images/fundo.jpg), url(../../images/body-bg.jpg);
  background-size: cover, cover, cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Ocean depth overlay — whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 10% 30%, rgba(13, 107, 116, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 40% at 90% 70%, rgba(4, 20, 32, 0.38), transparent 60%),
    rgba(6, 15, 24, 0.80);
  pointer-events: none;
  z-index: -1;
}

/* Sections get explicit navy bg so body-bg doesn't bleed through */
.recipe_section,
.about_section {
  background-color: rgba(6, 15, 24, 0.55);
}

body a,
body a:visited {
  color: var(--es-text);
}

body a:hover,
body a:focus {
  color: var(--es-accent);
}

/* Global heading text colors */
.heading_container h2,
.heading_container h3,
.heading_container h4,
.heading_container p,
.detail-box h1,
.detail-box h2,
.detail-box h3,
.detail-box h4,
.detail-box p {
  color: var(--es-text);
}

/* Focus ring */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--es-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

.heading_container h2 {
  font-family: 'Playfair Display', "bodoni svtytwo sc itc tt book", serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--es-text);
}

/* Gold underline accent on headings */
.heading_container h2::before {
  background-color: var(--es-accent) !important;
  height: 3px;
  width: 56px;
}

/* ================================================================
   HERO AREA
   ================================================================ */

.hero_area {
  position: relative;
  background-image: none !important;
}

/* Background image layer */
.hero_area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../images/funco.jpg), url(../../images/fundo.jpg), url(../../images/body-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: var(--es-hero-bg-opacity);
  filter: saturate(0.80) contrast(1.06) brightness(0.88);
  pointer-events: none;
  z-index: 0;
}

/* Ocean cinematic gradient overlay */
.hero_area::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 15% 55%, rgba(13, 107, 116, 0.40), transparent 62%),
    radial-gradient(ellipse 55% 45% at 82% 22%, rgba(201, 165, 90, 0.22), transparent 55%),
    linear-gradient(180deg,
      rgba(6, 15, 24, 0.80) 0%,
      rgba(6, 15, 24, 0.45) 38%,
      rgba(6, 15, 24, 0.85) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero_area > * {
  position: relative;
  z-index: 2;
}

/* ================================================================
   HEADER / NAVBAR PILL
   ================================================================ */

.header_section {
  padding: 14px 0;
  position: relative;
  z-index: 3000;
}

/* White-pill nav bar */
.es-white-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(237, 232, 220, 0.97);
  border: 1px solid rgba(201, 165, 90, 0.30);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(201, 165, 90, 0.12);
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.es-white-menu-brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  flex: 0 0 auto;
  transition: background 0.22s ease;
}

.es-white-menu-brand:hover {
  background: rgba(201, 165, 90, 0.14);
}

.es-white-menu-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
  padding-right: 14px;
}

.es-white-menu .es-white-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1a1208;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  margin: 0;
  transition: background 0.22s ease, color 0.22s ease;
}

.es-white-menu .es-white-menu-link:hover {
  background: rgba(201, 165, 90, 0.22);
  color: #0C2540;
  text-decoration: none;
}

.es-white-menu .es-white-menu-link i {
  font-size: 13px;
  color: var(--es-teal);
}

/* Nav right container */
.es-nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* Hide hamburger on desktop */
@media (min-width: 576px) {
  .custom_menu-btn {
    display: none;
  }
}

/* Brand logo sizes */
.es-brand-logo {
  height: 84px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  display: block;
}

.es-white-menu .es-brand-logo {
  height: 58px;
  max-width: 300px;
}

@media (max-width: 575px) {
  .es-brand-logo {
    height: 64px;
    max-width: 320px;
  }
  .es-white-menu .es-brand-logo {
    height: 46px;
    max-width: 240px;
  }
  .es-white-menu {
    padding: 5px;
    gap: 4px;
  }
  .es-white-menu .es-white-menu-link {
    padding: 9px 10px;
    font-size: 0.88rem;
    gap: 0;
  }
  .es-white-menu-text {
    display: none;
  }
  .es-white-menu-brand {
    padding: 6px 8px;
  }
}

/* ================================================================
   HERO BRAND + SEARCH
   ================================================================ */

.es-hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.es-hero-brand-img {
  width: min(520px, 92vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.48));
}

/* Slider description */
.slider_section .detail-box p {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: rgba(237, 232, 220, 0.78);
}

/* Hero search pill */
.find_container {
  padding: 0;
}

.es-hero-search-row {
  display: flex;
  align-items: center;
  background: rgba(237, 232, 220, 0.97);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  max-width: 680px;
  margin: 24px auto 0;
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.50), 0 0 0 1px rgba(201, 165, 90, 0.14);
  border: 1.5px solid rgba(201, 165, 90, 0.42);
}

.es-hero-search-icon {
  flex: 0 0 auto;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.32);
  margin-right: 10px;
  pointer-events: none;
}

.es-hero-search-row .form-control {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  height: 46px !important;
  color: #1a1a1a !important;
  font-size: 0.95rem !important;
  font-family: 'Raleway', sans-serif !important;
  font-weight: 400;
}

.es-hero-search-row .form-control::placeholder {
  color: rgba(0, 0, 0, 0.38) !important;
}

.es-hero-search-btn {
  flex: 0 0 auto !important;
  background: var(--es-accent) !important;
  color: #000 !important;
  border-radius: 999px !important;
  padding: 11px 28px !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  border: none !important;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.22s ease, color 0.22s ease;
  margin-left: 8px;
  font-family: 'Raleway', sans-serif !important;
}

.es-hero-search-btn:hover {
  background: var(--es-teal-dark) !important;
  color: var(--es-text) !important;
}

@media (max-width: 575px) {
  .es-hero-search-row {
    padding: 5px 5px 5px 14px;
    margin-top: 16px;
  }
  .es-hero-search-btn {
    padding: 9px 14px !important;
    font-size: 0.78rem !important;
  }
}

/* ================================================================
   HERO SLIDER CAROUSEL — circular food images
   ================================================================ */

.slider_section .slider_container .img-box img {
  border: 7px solid rgba(201, 165, 90, 0.32);
  border-radius: 100%;
  transition: border-color 0.3s ease;
}

.slider_section .slider_container .slick-active .img-box img {
  border-color: rgba(201, 165, 90, 0.55);
}

.slider_section .slider_container .slick-prev,
.slider_section .slider_container .slick-next {
  background-color: var(--es-accent);
  color: #000;
}

.slider_section .slider_container .slick-prev:hover,
.slider_section .slider_container .slick-next:hover {
  background-color: var(--es-accent-light);
  color: #000;
}

/* ================================================================
   CATEGORY CARDS (Home)
   ================================================================ */

.es-cat-card {
  display: block;
  text-align: center;
  margin-top: 28px;
  border-radius: 20px;
  text-decoration: none !important;
  color: inherit !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}

.es-cat-card:hover,
.es-cat-card:focus {
  transform: translateY(-9px);
  text-decoration: none !important;
  color: inherit !important;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(201, 165, 90, 0.36);
}

.es-cat-card .img-box {
  border-radius: 0 28px 0 28px;
  overflow: hidden;
  height: 155px;
  border: 1px solid rgba(13, 107, 116, 0.25);
  transition: border-color 0.28s ease;
}

.es-cat-card:hover .img-box {
  border-color: rgba(201, 165, 90, 0.45);
}

.es-cat-card .img-box img {
  border-radius: 0 !important;
  width: 100% !important;
  height: 155px !important;
  object-fit: cover;
  transition: transform 0.32s ease, filter 0.32s ease;
  filter: saturate(0.90) brightness(0.88);
}

.es-cat-card:hover .img-box img {
  transform: scale(1.07);
  filter: saturate(1.06) brightness(1.05);
}

.es-cat-card .detail-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 14px;
}

.es-cat-card .detail-box h4 {
  font-family: 'Playfair Display', "bodoni svtytwo sc itc tt book", serif;
  font-weight: 700;
  font-size: 1.0rem;
  color: var(--es-text);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.es-cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--es-accent);
  border-radius: 100%;
  color: #000;
  font-size: 12px;
  transition: transform 0.24s ease, background 0.24s ease;
  flex: 0 0 auto;
}

.es-cat-card:hover .es-cat-arrow {
  transform: translateX(6px);
  background: var(--es-accent-light);
}

/* "Ver Cardápio" button */
.recipe_section .btn-box {
  margin-bottom: 42px;
}

.recipe_section {
  padding-bottom: 18px;
}

.recipe_section .btn-box a {
  display: inline-block;
  padding: 12px 52px;
  background-color: var(--es-accent);
  color: #000;
  border-radius: 999px;
  border: 1px solid var(--es-accent);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: all 0.28s ease;
}

.recipe_section .btn-box a:hover {
  background-color: transparent;
  color: var(--es-accent);
  border-color: var(--es-accent);
}

/* ================================================================
   COMO PEDIR — App Section
   ================================================================ */

.app_section {
  position: relative;
  background-image: none !important;
  background-color: transparent;
  padding: 96px 0 84px 0 !important;
}

/* Subtle texture layer */
.app_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../images/funco.jpg), url(../../images/fundo.jpg), url(../../images/body-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.07;
  filter: saturate(0.60) contrast(1.05) brightness(0.68);
  pointer-events: none;
  z-index: 0;
}

/* Ocean cinematic overlay */
.app_section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 82% 52%, rgba(13, 107, 116, 0.30), transparent 65%),
    radial-gradient(ellipse 65% 45% at 12% 20%, rgba(201, 165, 90, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(6, 15, 24, 0.84), rgba(6, 15, 24, 0.94));
  pointer-events: none;
  z-index: 1;
}

.app_section > * {
  position: relative;
  z-index: 2;
}

/* Howto heading */
.es-howto h2 {
  font-family: 'Playfair Display', "bodoni svtytwo sc itc tt book", serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: var(--es-text);
}

/* Howto step cards — glass teal */
.es-howto .es-howto-steps {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.es-howto-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(201, 165, 90, 0.18);
  background: rgba(0, 47, 58, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.es-howto-step:hover {
  border-color: rgba(201, 165, 90, 0.44);
  background: rgba(0, 47, 58, 0.60);
}

/* Gold numbered circle */
.es-howto-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--es-accent);
  color: #000;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 4px 14px rgba(201, 165, 90, 0.30);
}

.es-howto-step-text strong {
  display: block;
  color: var(--es-text);
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.03em;
}

.es-howto-muted {
  margin-top: 3px;
  color: var(--es-muted);
  font-family: 'Raleway', sans-serif;
  font-size: 0.93rem;
  line-height: 1.3;
}

/* Howto action buttons */
.es-howto-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.es-howto-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
  border: 1px solid rgba(237, 232, 220, 0.22);
  letter-spacing: 0.05em;
  font-size: 0.84rem;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.es-howto-btn:hover {
  text-decoration: none;
}

.es-howto-btn--primary {
  background: var(--es-accent);
  color: #000;
  border-color: var(--es-accent);
}

.es-howto-btn--primary:hover {
  background: transparent;
  color: var(--es-accent);
  border-color: var(--es-accent);
}

.es-howto-btn--outline {
  background: transparent;
  color: var(--es-text);
  border-color: rgba(237, 232, 220, 0.30);
}

.es-howto-btn--outline:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

.es-howto-btn--secondary {
  background: rgba(13, 107, 116, 0.25);
  color: var(--es-text);
  border-color: rgba(13, 107, 116, 0.38);
}

.es-howto-btn--secondary:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
  background: rgba(201, 165, 90, 0.08);
}

/* Phone mockup */
.es-howto-phone img {
  filter: drop-shadow(0 22px 46px rgba(0, 0, 0, 0.62));
}

@media (max-width: 767px) {
  .app_section {
    padding: 68px 0 58px 0 !important;
  }
}

/* ================================================================
   CONTACT / ABOUT SECTION
   ================================================================ */

.about_section .img-box img {
  border-radius: 20px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.58));
  border: 1px solid rgba(201, 165, 90, 0.18);
}

/* Prevent template circle-link from breaking pill buttons */
.about_section .detail-box a.es-howto-btn {
  display: inline-flex !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  border-radius: 999px !important;
  font-size: inherit !important;
}

/* ================================================================
   INFO SECTION (footer top)
   ================================================================ */

.info_section {
  color: var(--es-text);
  padding: 52px 0;
  background-color: var(--es-navy);
  border-top: 1px solid rgba(201, 165, 90, 0.18);
}

.info_section .contact_box a {
  margin: 0 10px;
  font-size: 24px;
  color: var(--es-text-soft);
  transition: color 0.22s ease, transform 0.22s ease;
  display: inline-block;
}

.info_section .contact_box a:hover {
  color: var(--es-accent);
  transform: translateY(-3px);
}

.info_section .social_box a {
  margin: 0 20px;
  font-size: 20px;
  color: var(--es-text-soft);
  transition: color 0.22s ease, transform 0.22s ease;
  display: inline-block;
}

.info_section .social_box a:hover {
  color: var(--es-accent);
  transform: translateY(-3px);
}

.info_section .info_links {
  margin: 28px 0;
}

.info_section .info_links ul {
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.info_section .info_links ul li {
  list-style-type: none;
  position: relative;
  margin: 0 8px;
}

.info_section .info_links ul li a {
  color: var(--es-muted);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  text-transform: uppercase;
  transition: color 0.22s ease;
}

.info_section .info_links ul li a:hover {
  color: var(--es-accent);
}

/* ================================================================
   FOOTER
   ================================================================ */

.footer_container {
  background-image: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
  background-color: transparent;
}

.footer_section {
  position: relative;
  text-align: center;
  background-color: var(--es-navy);
  border-top: 1px solid rgba(201, 165, 90, 0.10);
}

.footer_section p {
  color: var(--es-muted);
  padding: 22px 0 26px;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
}

.footer_section p a {
  color: inherit;
}

/* ================================================================
   OVERLAY MENU (mobile)
   ================================================================ */

.overlay {
  height: 100dvh;
  width: 100vw;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: rgba(6, 15, 24, 0.97);
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
  color: var(--es-text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.overlay .closebtn:hover {
  color: var(--es-accent);
}

.overlay a {
  padding: 0;
  text-decoration: none;
  font-size: 22px;
  color: var(--es-text);
  display: block;
  transition: color 0.3s;
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.06em;
  opacity: 0;
}

.overlay a:hover {
  color: var(--es-accent);
}

.overlay-content {
  position: relative;
  top: 0;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 96px 24px 40px;
  text-align: center;
  margin-top: 0;
}

.menu_width {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu_width.overlay a {
  opacity: 1;
}

.custom_menu-btn {
  z-index: 9;
  position: absolute;
  right: 0;
  top: 14px;
}

.custom_menu-btn button {
  outline: none;
  border: 1px solid rgba(237, 232, 220, 0.28);
  background-color: rgba(6, 15, 24, 0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.custom_menu-btn button img {
  width: 20px;
  filter: brightness(0) invert(1);
}

.menu_btn-style {
  position: fixed;
  right: 15px;
  top: 29px;
}

.custom_menu-btn.menu_btn-style {
  right: 14px !important;
  top: 16px !important;
  transform: none !important;
}

.menu_btn-style button {
  background-color: rgba(237, 232, 220, 0.98);
  border-color: rgba(201, 165, 90, 0.34);
}

.menu_btn-style button img {
  filter: brightness(0) saturate(100%);
}

/* ================================================================
   ESCONDIDIM — HIDE UTILITY
   ================================================================ */

.es-hide {
  display: none !important;
}

/* ================================================================
   ===== CARDÁPIO PAGE STYLES =====
   ================================================================ */

body.menu_page {
  --es-bg: rgba(0, 0, 0, 0.65);
  --es-surface: rgba(0, 47, 58, 0.72);
  --es-surface-2: rgba(4, 20, 32, 0.90);
  --es-muted: rgba(237, 232, 220, 0.72);
  --es-border: rgba(201, 165, 90, 0.22);

  background-color: #050505;
  color: var(--es-text);
  background-image: url(../../images/funco.jpg), url(../../images/fundo.jpg), url(../../images/body-bg.jpg);
  background-size: cover, cover, cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* No duplicate hero overlay on menu page */
body.menu_page .hero_area::before,
body.menu_page .hero_area::after {
  display: none;
}

body.menu_page .hero_area {
  background-image: none;
  background-color: transparent;
}

/* Sticky header with blur — menu page */
body.menu_page .header_section {
  position: sticky;
  top: 0;
  z-index: 1050;
  padding: 12px 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

/* Menu page navbar brand */
body.menu_page .navbar-brand span {
  letter-spacing: 0.5px;
}

/* ---- Floating "View Cart" button ---- */
.es-view-cart-btn {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--es-accent);
  background: var(--es-accent);
  color: #000;
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.52), 0 0 0 1px rgba(201, 165, 90, 0.26);
  transform: translateY(14px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.22s ease;
}

.es-view-cart-btn.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.es-view-cart-btn:hover {
  background: transparent;
  color: var(--es-accent);
}

@media (min-width: 576px) {
  .es-view-cart-btn {
    left: auto;
    right: 20px;
    width: 250px;
  }
}

/* ---- Category tabs (in-flow under main menu) ---- */
body.menu_page .es-categories {
  position: relative;
  top: 0;
  left: auto;
  right: auto;
  width: 100%;
  z-index: 1;
  background: rgba(6, 15, 24, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

body.menu_page main.layout_padding2-top {
  padding-top: 34px !important;
}

.es-categories .es-cat-scroll {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.es-categories .es-cat-scroll::-webkit-scrollbar {
  height: 4px;
}

.es-categories .es-cat-scroll::-webkit-scrollbar-thumb {
  background: rgba(201, 165, 90, 0.28);
  border-radius: 999px;
}

.es-cat-btn {
  white-space: nowrap;
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 165, 90, 0.22);
  background: rgba(0, 47, 58, 0.38);
  color: var(--es-text);
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  transition: all 0.22s ease;
}

.es-cat-btn:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

.es-cat-btn.is-active {
  border-color: var(--es-accent);
  background: rgba(201, 165, 90, 0.18);
  color: var(--es-accent);
}

/* ---- Section title ---- */
.es-section-title {
  margin: 30px 0 16px 0;
  font-family: 'Playfair Display', "bodoni svtytwo sc itc tt book", serif;
  font-weight: 700;
  color: var(--es-text);
  letter-spacing: 0.03em;
  scroll-margin-top: calc(var(--es-menu-header-h, 104px) + 16px);
}

.es-section-title small {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  color: var(--es-muted);
  font-weight: 400;
}

/* ---- Product cards ---- */
.es-product-card {
  background: rgba(0, 47, 58, 0.72);
  border: 1px solid rgba(201, 165, 90, 0.18);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--es-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.es-product-card:hover {
  border-color: rgba(201, 165, 90, 0.42);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(201, 165, 90, 0.20);
  transform: translateY(-3px);
}

.es-product-cover {
  height: 145px;
  background-color: rgba(0, 47, 58, 0.50);
  background-image: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.55)), var(--es-cover-image);
  background-size: cover;
  background-position: center;
  border-bottom: none;
}

.es-product-body {
  padding: 14px 14px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

body.menu_page .es-product-card {
  background: linear-gradient(180deg, rgba(0, 47, 58, 0.80), rgba(4, 20, 32, 0.90));
  border-color: rgba(201, 165, 90, 0.20);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

body.menu_page .es-product-cover {
  background-image:
    linear-gradient(180deg, rgba(13, 107, 116, 0.08), rgba(0, 0, 0, 0.55)),
    var(--es-cover-image);
}

body.menu_page .es-product-body {
  background: rgba(0, 0, 0, 0.06);
}

.es-product-name {
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25rem;
  color: var(--es-text);
  font-family: 'Raleway', sans-serif;
}

.es-product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.es-product-price {
  font-weight: 800;
  color: var(--es-accent);
  font-family: 'Raleway', sans-serif;
}

.es-product-unit {
  color: var(--es-muted);
  font-size: 0.9rem;
}

.es-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ---- Action buttons ---- */
.es-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background-color: var(--es-accent);
  color: #000;
  border: 1px solid var(--es-accent);
  font-weight: 800;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.03em;
  width: 100%;
  transition: all 0.25s ease;
}

.es-btn-primary:hover {
  background: transparent;
  color: var(--es-accent);
}

.es-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--es-text);
  border: 1px solid rgba(201, 165, 90, 0.28);
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  width: 100%;
  transition: all 0.25s ease;
}

.es-btn-secondary:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

/* ---- Quantity controls ---- */
.es-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.es-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  border: 1px solid rgba(201, 165, 90, 0.20);
  background: rgba(0, 47, 58, 0.42);
  color: var(--es-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

.es-qty-btn:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

.es-qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 800;
  color: var(--es-text);
  font-family: 'Raleway', sans-serif;
}

/* ---- Cart icon button ---- */
.es-cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid rgba(201, 165, 90, 0.22);
  background: rgba(0, 47, 58, 0.40);
  color: var(--es-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

.es-cart-btn:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

.es-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--es-accent);
  color: #000;
  font-weight: 700;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.38);
}

/* ---- In-bar search (menu page) ---- */
.es-white-menu--catalog {
  background: rgba(237, 232, 220, 0.97);
  border: 1px solid rgba(201, 165, 90, 0.30);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(201, 165, 90, 0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.es-cart-btn--inbar {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  color: #0c0c0c;
  flex: 0 0 auto;
}

.es-cart-btn--inbar:hover {
  border-color: var(--es-accent);
  color: #000;
  background: rgba(255, 229, 55, 0.55);
}

.es-white-menu-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 420px;
  min-width: 220px;
  margin: 0 10px;
}

.es-white-menu-search input[type="search"] {
  width: 100%;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  color: #0c0c0c;
  padding: 0 14px;
  outline: none;
  font-family: 'Raleway', sans-serif;
  transition: border-color 0.22s ease;
}

.es-white-menu-search input[type="search"]:focus {
  border-color: rgba(201, 165, 90, 0.55);
}

.es-white-menu-search input::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

.es-white-menu-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.04);
  color: #0c0c0c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

.es-white-menu-search-btn:hover {
  border-color: var(--es-accent);
  color: #000;
  background: rgba(255, 229, 55, 0.55);
}

body.menu_page .es-white-menu .es-white-menu-link {
  color: #1a1208;
}

body.menu_page .es-white-menu .es-white-menu-link i {
  color: var(--es-teal);
}

/* ---- User option (menu page) ---- */
body.menu_page .User_option {
  margin-right: 0;
  flex-wrap: wrap;
  gap: 10px;
}

body.menu_page .User_option .form-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  flex: 1 1 280px;
}

body.menu_page .User_option .form-inline input[type="search"],
body.menu_page .User_option .form-inline input[type="text"] {
  display: block;
  width: min(360px, 52vw);
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(201, 165, 90, 0.18);
  background: rgba(0, 47, 58, 0.40);
  color: var(--es-text);
  padding: 0 14px;
  font-family: 'Raleway', sans-serif;
}

body.menu_page .User_option .form-inline input::placeholder {
  color: var(--es-muted);
}

body.menu_page .User_option .form-inline button.nav_search-btn {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid rgba(201, 165, 90, 0.18);
  background: rgba(0, 47, 58, 0.38);
  color: var(--es-text);
  transition: all 0.22s ease;
}

body.menu_page .User_option .form-inline button.nav_search-btn:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

/* ---- Hamburger (menu page) ---- */
body.menu_page .custom_menu-btn {
  position: static;
}

body.menu_page .custom_menu-btn button {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  border: 1px solid rgba(201, 165, 90, 0.22);
  background: rgba(0, 47, 58, 0.38);
  color: var(--es-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

body.menu_page .custom_menu-btn button:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

/* ---- Cart drawer ---- */
.es-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  z-index: 2000;
}

.es-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 92vw);
  background:
    radial-gradient(1000px 380px at -12% -12%, rgba(13, 107, 116, 0.28), rgba(13, 107, 116, 0.00) 60%),
    linear-gradient(180deg, rgba(0, 47, 58, 0.18), rgba(0, 0, 0, 0.00) 35%),
    rgba(6, 18, 30, 0.98);
  border-left: 1px solid rgba(201, 165, 90, 0.22);
  box-shadow: -20px 0 48px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 2010;
  display: flex;
  flex-direction: column;
}

.es-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

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

.es-cart-header {
  padding: 18px 16px 14px 16px;
  border-bottom: 1px solid rgba(201, 165, 90, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: linear-gradient(90deg, rgba(13, 107, 116, 0.22), rgba(13, 107, 116, 0.00) 60%);
}

.es-cart-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--es-text);
  letter-spacing: 0.03em;
}

.es-cart-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  margin-top: 6px;
  background: var(--es-accent);
  opacity: 0.88;
}

.es-cart-close {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  border: 1px solid rgba(201, 165, 90, 0.26);
  background: rgba(13, 107, 116, 0.14);
  color: var(--es-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

.es-cart-close:hover {
  border-color: var(--es-accent);
  color: var(--es-accent);
}

.es-cart-body {
  padding: 14px 16px;
  overflow: auto;
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
}

.es-cart-item {
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(201, 165, 90, 0.22);
  border-radius: 16px;
  background: rgba(0, 47, 58, 0.45);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  transition: border-color 0.22s ease;
}

.es-cart-item:hover {
  border-color: rgba(201, 165, 90, 0.42);
}

.es-cart-item-name {
  font-weight: 800;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: var(--es-text);
}

.es-cart-item-sub {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--es-muted);
  font-size: 0.92rem;
}

.es-cart-item-note {
  margin-top: 6px;
  color: var(--es-muted);
  font-size: 0.92rem;
}

.es-cart-footer {
  padding: 14px 16px 18px 16px;
  border-top: 1px solid rgba(201, 165, 90, 0.14);
  background: linear-gradient(180deg, rgba(13, 107, 116, 0.14), rgba(4, 20, 32, 0.28));
}

.es-cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.28);
  background: rgba(0, 47, 58, 0.32);
}

.es-cart-total strong {
  color: var(--es-accent);
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
}

.es-form-label {
  font-size: 0.88rem;
  color: var(--es-muted);
  margin-bottom: 6px;
  font-family: 'Raleway', sans-serif;
}

.es-form-control {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(201, 165, 90, 0.18);
  background: rgba(0, 47, 58, 0.36);
  color: var(--es-text);
  padding: 10px 12px;
  resize: vertical;
  font-family: 'Raleway', sans-serif;
  transition: border-color 0.22s ease;
}

.es-form-control:focus {
  border-color: rgba(201, 165, 90, 0.52);
  outline: none;
}

.es-form-control::placeholder {
  color: var(--es-muted);
}

.es-btn-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 420px) {
  .es-btn-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Modal (menu page) ---- */
body.menu_page .modal-content {
  background:
    radial-gradient(800px 280px at 0% 0%, rgba(13, 107, 116, 0.28), rgba(13, 107, 116, 0) 55%),
    rgba(6, 18, 30, 0.97);
  border: 1px solid rgba(201, 165, 90, 0.20);
  border-radius: 18px;
  color: var(--es-text);
}

body.menu_page .modal-header {
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

body.menu_page .modal-footer {
  border-top: 1px solid rgba(201, 165, 90, 0.12);
}

body.menu_page .close {
  color: var(--es-text);
  opacity: 0.85;
}

body.menu_page .close:hover {
  color: var(--es-accent);
  opacity: 1;
}

/* ================================================================
   MOBILE RESPONSIVE
   ================================================================ */

@media (max-width: 575px) {
  body:not(.menu_page) .es-nav-right {
    position: relative;
  }

  body:not(.menu_page) .es-white-menu-links {
    display: none;
  }

  body:not(.menu_page) .es-white-menu {
    padding-right: 54px;
  }

  body:not(.menu_page) .custom_menu-btn {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
  }

  body:not(.menu_page) .custom_menu-btn.menu_btn-style button {
    opacity: 0;
    pointer-events: none;
  }

  .es-categories {
    top: var(--es-menu-header-h, 92px);
  }

  body.menu_page .User_option .form-inline input[type="search"],
  body.menu_page .User_option .form-inline input[type="text"] {
    width: min(240px, 58vw);
  }

  body.menu_page .es-white-menu--catalog {
    flex-wrap: wrap;
    border-radius: 26px;
    padding: 6px;
  }

  body.menu_page .es-white-menu--catalog .es-white-menu-search {
    order: 3;
    flex: 1 1 100%;
    margin: 6px 6px 2px 6px;
  }

  body.menu_page .es-white-menu--catalog .es-white-menu-links {
    order: 2;
  }
}
