/* Custom Traditional Navigation Styles */

:root {
  --background: #f2e6cf !important;
}

body {
  background-color: #f2e6cf !important;
  background-image: linear-gradient(#f2e6cfd1, #f2e6cfd1), url(../images/bg-texture.png) !important;
}

img {
  filter: saturate(1.12) contrast(1.04) brightness(1.02) !important;
}

.custom-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: none;
  transition: all 0.3s ease;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.header-container {
  max-width: 100%;
  padding: 1.25rem 2.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #1a1a1a;
}

/* Adjust layout on very large screens */
@media (min-width: 1440px) {
  .header-container {
    padding: 1.5rem 2.5rem;
  }
}

.header-logo {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  display: block;
  transition: transform 0.2s ease;
}

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

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: 2rem;
}

.nav-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-transform: lowercase;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
  letter-spacing: 0.05em;
  transition: color 0.25s ease;
}

.nav-item:hover {
  color: #3a3a3a;
}

.nav-item::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #1a1a1a;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

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

.reserve-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  text-transform: lowercase;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border: 1px solid #1a1a1a;
  color: #faf8f5;
  background-color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
}

.reserve-btn:hover {
  background-color: transparent;
  color: #1a1a1a;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
}

.lang-link {
  color: #8c8c8c;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  padding: 0.1rem 0.3rem;
}

.lang-link:hover {
  color: #1a1a1a;
}

.lang-link.active {
  color: #1a1a1a;
  font-weight: 600;
}

.lang-separator {
  color: #8c8c8c;
  pointer-events: none;
}

/* Hamburger Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.hamburger-bar {
  width: 100%;
  height: 1.5px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}

/* Mobile Navigation Dropdown */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #faf8f5;
  border-bottom: 1px solid #1a1a1a;
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 999;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  
  .header-actions .reserve-btn,
  .header-actions .lang-selector {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: flex;
  }
  
  /* Mobile menu open states */
  .mobile-menu-toggle.is-active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-menu-toggle.is-active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.is-active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .mobile-nav.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.mobile-nav-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  text-transform: lowercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #eae6e1;
  padding-bottom: 0.75rem;
  letter-spacing: 0.05em;
  transition: padding-left 0.2s ease;
}

.mobile-nav-item:hover {
  padding-left: 0.25rem;
}

.mobile-reserve-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  text-transform: lowercase;
  font-weight: 600;
  padding: 0.75rem;
  border: 1px solid #1a1a1a;
  color: #faf8f5;
  background-color: #1a1a1a;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.mobile-reserve-btn:hover {
  background-color: transparent;
  color: #1a1a1a;
}

.mobile-lang-selector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
}

.mobile-lang-link {
  color: #8c8c8c;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
}

.mobile-lang-link.active {
  color: #1a1a1a;
  font-weight: 600;
}

.mobile-lang-separator {
  color: #8c8c8c;
}

/* Ementa Accordion Styles */
.ementa-meio.accordion-active .ementa-meio-seta {
  transform: rotate(90deg) !important;
  opacity: 1 !important;
}
.ementa-meio.accordion-active .ementa-big-titulo {
  color: var(--principal, #c3723b) !important;
  transition: color 0.3s ease;
}
.ementa-meio-seta {
  transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.ementa-panel .ementa-open-lista {
  border: 1px solid #000 !important;
  overflow: visible !important;
}

/* Add bottom border to the last category row when closed */
.ementa-item-last .ementa-meio:not(.accordion-active) {
  border-bottom: 1px solid var(--border) !important;
}

/* Restaurant Info Section */
.restaurante-section {
  padding-top: 4em;
  padding-bottom: 4em;
}

.restaurante-container {
  background-color: var(--white);
  padding: 3.75em;
}

.restaurante-inner {
  border: 1px solid var(--black);
  padding: 4.375em 3.75em;
  display: flex;
  flex-direction: column;
}

.restaurante-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 3.5em;
  font-weight: 300;
  text-transform: lowercase;
  margin-bottom: 0.8em;
  text-align: center;
  color: var(--black);
  letter-spacing: -0.02em;
}

.restaurante-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2.5em;
}

.restaurante-logo-link {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.restaurante-logo-link:hover {
  transform: scale(1.02);
}

.restaurante-logo-img {
  height: 4.5em;
  width: auto;
  display: block;
}

.restaurante-line {
  height: 1px;
  background-color: var(--border);
  margin-bottom: 3em;
  width: 100%;
}

.restaurante-content {
  display: flex;
  gap: 4em;
}

.restaurante-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.restaurante-col.border-left {
  border-left: 1px solid var(--border);
  padding-left: 4em;
}

.restaurante-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.125em;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--principal, #c3723b);
  margin-top: 0;
  margin-bottom: 0.6em;
  letter-spacing: 0.05em;
}

.restaurante-subtitle:not(:first-child) {
  margin-top: 2em;
}

.restaurante-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9375em;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
}

.restaurante-link {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.restaurante-link:hover {
  color: var(--principal, #c3723b);
  border-bottom-color: var(--principal, #c3723b);
}

.restaurante-btn-link {
  display: inline-block;
  color: var(--principal, #c3723b);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--principal, #c3723b);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.restaurante-btn-link:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

.restaurante-reserve-btn {
  display: inline-block;
  align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9375em;
  font-weight: 600;
  text-transform: lowercase;
  padding: 0.6em 1.5em;
  border: 1px solid var(--black);
  color: var(--white);
  background-color: var(--black);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  margin-top: 0.5em;
}

.restaurante-reserve-btn:hover {
  background-color: transparent;
  color: var(--black);
}

.mt-18 {
  margin-top: 1.1em;
}

/* Responsive styles */
@media (max-width: 991px) {
  .restaurante-inner {
    padding: 3em 2em;
  }
  .restaurante-title {
    font-size: 2.8em;
  }
  .restaurante-logo-img {
    height: 4em;
  }
}

@media (max-width: 767px) {
  .restaurante-section {
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }
  .restaurante-container {
    padding: 1.5em;
  }
  .restaurante-inner {
    padding: 2.5em 1.5em;
  }
  .restaurante-title {
    font-size: 2.2em;
    margin-bottom: 0.6em;
  }
  .restaurante-logo-wrap {
    margin-bottom: 2em;
  }
  .restaurante-logo-img {
    height: 3.2em;
  }
  .restaurante-content {
    flex-direction: column;
    gap: 2.5em;
  }
  .restaurante-col.border-left {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 2.5em;
  }
  .restaurante-subtitle:not(:first-child) {
    margin-top: 1.5em;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE – Tablet / Mobile / Small Mobile
   ═══════════════════════════════════════════════════════ */

/* ── Tablet (max-width: 991px) ── */
@media (max-width: 991px) {
  .header-container {
    padding: 1rem 1.75rem;
  }
  .mobile-nav {
    left: 2.5em;
    right: 2.5em;
    width: auto;
    border-left: 1px solid #1a1a1a;
    border-right: 1px solid #1a1a1a;
  }
  .logo-img {
    height: 32px;
  }
  .slider-controls-wrap {
    transform: scale(0.9);
  }
  .sobre-text-wrap {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

/* ── Mobile (max-width: 767px) ── */
@media (max-width: 767px) {
  .header-container {
    padding: 1rem 1.25rem;
  }
  .custom-header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .mobile-nav {
    left: 1.25rem;
    right: 1.25rem;
  }
  .logo-img {
    height: 28px;
  }

  /* Ementa panels: stack content, hide side columns */
  .ementa-panel > div {
    flex-wrap: wrap !important;
  }
  .ementa-panel .ementa-lados {
    display: none !important;
  }
  .ementa-panel > div > div:not(.ementa-lados) {
    border-left: none !important;
    border-right: none !important;
    padding-left: 1em !important;
    padding-right: 1em !important;
  }

  /* Ementa menu items: prevent overflow */
  .ementa-open-lista-titulo {
    word-break: break-word;
  }
  .ementa-open-lista-item {
    gap: 0.5em;
  }

  /* Sobre section: proper image sizing */
  .sobre-img-wrap {
    max-height: 60vh;
  }
  .sobre-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .sobre-text-wrap {
    padding-left: 1em;
    padding-right: 1em;
  }

  /* Gallery slider */
  .slider-controls-wrap {
    transform: scale(0.85);
  }
  .sobre-slider-img-wrap {
    width: 100%;
  }
}

/* ── Small Mobile (max-width: 479px) ── */
@media (max-width: 479px) {
  .header-container {
    padding: 0.75rem 1rem;
  }
  .custom-header {
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
  .mobile-nav {
    left: 0.75em;
    right: 0.75em;
  }
  .logo-img {
    height: 24px;
  }

  /* Ementa titles: ensure they fit */
  .ementa-item {
    height: 4rem !important;
  }
  .ementa-big-titulo {
    font-size: 1.4rem !important;
  }
  .ementa-panel > div > div:not(.ementa-lados) {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
    padding-top: 1.5em !important;
    padding-bottom: 1.5em !important;
  }

  /* Reduce section padding */
  .page-padding {
    padding-left: 0.75em !important;
    padding-right: 0.75em !important;
  }

  /* Gallery slider */
  .slider-controls-wrap {
    transform: scale(0.8);
  }
}

/* ── end responsive ── */

/* ── Reservation Modal Overlay ── */
.reservation-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.reservation-overlay.active {
  opacity: 1;
  visibility: visible;
}

.reservation-modal {
  position: relative;
  width: 92vw;
  max-width: 440px;
  background: #faf8f5;
  border: 1px solid #1a1a1a;
  overflow: hidden;
  transform: translateY(24px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.reservation-overlay.active .reservation-modal {
  transform: translateY(0);
}

/* Close button */
.reservation-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: 1px solid #1a1a1a;
  background: transparent;
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.reservation-modal-close:hover {
  background: #1a1a1a;
  color: #faf8f5;
}

/* Modal header */
.reservation-header {
  padding: 2.5rem 2rem 1.5rem;
  border-bottom: 1px solid #1a1a1a;
}
.reservation-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 300;
  text-transform: lowercase;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin: 0;
}
.reservation-subtitle {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  color: #8c8c8c;
  letter-spacing: 0.04em;
  margin: 0.5rem 0 0;
}

/* Form body */
.reservation-body {
  padding: 1.75rem 2rem 2rem;
}
.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.reservation-row {
  display: flex;
  gap: 1rem;
}
.reservation-row > .reservation-field {
  flex: 1;
}
.reservation-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.reservation-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: lowercase;
  color: #1a1a1a;
  letter-spacing: 0.06em;
}
.reservation-input,
.reservation-select,
.reservation-textarea {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  background: transparent;
  border: none;
  border-bottom: 1px solid #c8c4bf;
  padding: 0.55rem 0;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
.reservation-input:focus,
.reservation-select:focus,
.reservation-textarea:focus {
  border-bottom-color: #1a1a1a;
}
.reservation-input::placeholder,
.reservation-textarea::placeholder {
  color: #b0aca7;
}
.reservation-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%231a1a1a' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}
.reservation-textarea {
  resize: none;
  min-height: 50px;
  font-size: 13px;
}

/* Submit */
.reservation-submit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 2rem;
  border: 1px solid #1a1a1a;
  color: #faf8f5;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 0.5rem;
  width: 100%;
}
.reservation-submit:hover {
  background-color: transparent;
  color: #1a1a1a;
}

/* Success state */
.reservation-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
  gap: 1rem;
}
.reservation-success.show {
  display: flex;
}
.reservation-success-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.reservation-success-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 20px;
  font-weight: 300;
  text-transform: lowercase;
  color: #1a1a1a;
  letter-spacing: 0.05em;
}
.reservation-success-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: #8c8c8c;
  line-height: 1.6;
  max-width: 280px;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .reservation-modal {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    border: none;
  }
  .reservation-header {
    padding: 2rem 1.5rem 1.25rem;
  }
  .reservation-body {
    padding: 1.5rem 1.5rem 2rem;
  }
  .reservation-row {
    flex-direction: column;
    gap: 1.1rem;
  }
  .reservation-title {
    font-size: 20px;
  }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN OPTIMIZATIONS (Tablet & Mobile)
   ═══════════════════════════════════════════════════════ */

/* ── Tablet Optimization (max-width: 991px) ── */
@media (max-width: 991px) {
  /* Concept section overrides to prevent squeezed layout */
  .sobre-component {
    padding: 3rem 2rem !important;
  }
  .sobre-linha-component {
    display: block !important;
  }
  .sobre-img-wrap {
    margin: 0 0 2rem 0 !important;
    height: auto !important;
    max-height: 450px !important;
    width: 100% !important;
  }
  .sobre-text-component {
    display: block !important;
    padding: 0 !important;
  }
  .sobre-text-wrap {
    max-width: 100% !important;
    padding: 0 1.5rem !important;
  }
  .sobre-slider-component {
    margin-left: 0 !important;
    margin-top: 2.5rem !important;
    width: 100% !important;
  }

  /* Swiper responsive dimensions */
  .swiper {
    width: 100% !important;
    height: 320px !important;
  }
  .sobre-slider {
    padding-bottom: 1.5rem !important;
    width: 100% !important;
  }
  .slider-controls {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  /* Typography headings adjustments */
  .ibm-56-300 {
    font-size: 2.75rem !important;
    line-height: 1.2 !important;
  }
  .ibm-15-400 {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
  }
  .ementa-big-titulo {
    font-size: 2.5rem !important;
  }

  /* Ementa accordion styling updates */
  .ementa-meio {
    padding-left: 2rem !important;
    padding-right: 2.5rem !important;
  }
  
  .ementa-component {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .ementa-open-lista {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    margin-top: 2rem !important;
    padding-top: 2rem !important;
  }
  .ementa-open-lista-titulo {
    white-space: normal !important;
    font-size: 1.1rem !important;
    line-height: 1.4 !important;
  }

  /* Restaurante section row optimization */
  .restaurante-content {
    gap: 2rem !important;
  }
  .restaurante-col.border-left {
    padding-left: 2rem !important;
  }

  /* Reservation popup overflow scroll protection */
  .reservation-modal {
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
}

/* ── Mobile Optimization (max-width: 767px) ── */
@media (max-width: 767px) {
  /* Concept section spacing */
  .sobre-component {
    padding: 2.5rem 1.25rem !important;
  }
  .sobre-img-wrap {
    margin: 0 0 1.5rem 0 !important;
    max-height: 320px !important;
  }
  .sobre-slider-component {
    margin-top: 2rem !important;
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
    width: auto !important;
  }

  /* Swiper responsive dimensions (Mobile) */
  .swiper {
    width: 100% !important;
    height: 330px !important;
  }
  .sobre-slider {
    padding-bottom: 1rem !important;
    width: 100% !important;
  }
  .sobre-slider-component .sobre-slider-wrap {
    transform: scale(0.95) !important;
  }
  .slider-controls {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .slider-buton-arrow {
    width: 1.25rem !important;
    height: auto !important;
  }

  /* General Typography scale */
  .ibm-56-300 {
    font-size: 2rem !important;
  }
  .ibm-15-400 {
    font-size: 0.95rem !important;
  }
  .ementa-item {
    height: 4.5rem !important;
  }
  .ementa-big-titulo {
    font-size: 1.6rem !important;
  }
  .ementa-meio-seta {
    width: 1.25rem !important;
    height: auto !important;
  }

  /* Hide vertical text columns to give menu full width */
  .ementa-item .ementa-lados {
    display: none !important;
  }
  .ementa-meio {
    width: 100% !important;
    border-left: none !important;
    border-right: none !important;
    padding-left: 1.25rem !important;
    padding-right: 1.5rem !important;
  }

  /* Ementa component spacing adjustments (Mobile) */
  .ementa-component {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Menu lists inside open category panels */
  .ementa-open-lista {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    margin-top: 1.25rem !important;
    padding-top: 1.25rem !important;
  }
  .ementa-open-lista-item {
    margin-bottom: 1.25rem !important;
    gap: 0.75rem !important;
  }
  .ementa-open-lista-descricao {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding-right: 0 !important;
    flex: 1;
  }
  .ementa-open-lista-titulo {
    white-space: normal !important;
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
  }
  .ementa-open-lista-sub-titulo {
    margin-left: 0 !important;
    margin-top: 0.25rem !important;
    font-size: 0.875rem !important;
    line-height: 1.3 !important;
  }
  .ementa-open-lista-preco {
    font-size: 1.05rem !important;
  }
  .ementa-open-lista-titulo.sub-categoria {
    font-size: 1.2rem !important;
    margin-top: 0.4rem !important;
  }

  /* Spacing containers */
  .page-padding {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  /* Custom reservation popup height constraints */
  .reservation-modal {
    max-height: 100dvh !important;
    overflow-y: auto !important;
  }

  /* Footer component padding and spacing overrides */
  .footer-component {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .footer-social-wrap {
    margin-top: 4rem !important;
  }
  .footer-social-space {
    min-width: unset !important;
    margin-bottom: 2rem !important;
  }
  .footer-last-links {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .footer-last-links-space {
    min-width: unset !important;
  }
  .footer-last-links-right {
    margin-top: 2rem !important;
  }
  .footer-last-links-right-space {
    min-width: unset !important;
  }
}

/* ── Small Mobile Optimization (max-width: 479px) ── */
@media (max-width: 479px) {
  .ementa-component {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .slider-buton-arrow {
    width: 1.25rem !important;
    height: auto !important;
  }
}

/* Gallery Slider Card Resize Override */
.sobre-slider-wrap {
  transform: scale(0.9) !important;
  transition: transform 0.3s ease !important;
}

/* Make distance between slider images slightly smaller */
.sobre-slider-component .swiper-slide {
  padding-left: 0.8em !important;
  padding-right: 0.8em !important;
}

/* Hide image counter on the slider animation */
.slider-number-slides-component {
  display: none !important;
}

/* Space out adjacent left/right arrows since the counter is hidden */
.slider-controls-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2.5rem !important;
}

/* Universal layout adjustment: add a slightly bigger gap between concept heading and sub-text */
.sobre-text-wrap h1 {
  margin-bottom: 2rem !important;
}

/* ── Premium Custom Loader Screen ── */
.custom-loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  min-height: -webkit-fill-available;
  background-color: #f2e6cf; /* matched warm sand cream */
  background-image: linear-gradient(#f2e6cfd1, #f2e6cfd1), url(../images/bg-texture.png);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-loader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.custom-loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: pulse-text 2s ease-in-out infinite;
}

/* Clinking Animation Keyframes */
.clink-svg {
  overflow: visible;
}

.glass.left {
  transform-origin: 38px 70px;
  animation: tilt-left 2.5s cubic-bezier(0.45, 0, 0.4, 1) infinite;
}

.glass.right {
  transform-origin: 62px 70px;
  animation: tilt-right 2.5s cubic-bezier(0.45, 0, 0.4, 1) infinite;
}

.sparkles {
  transform-origin: 50px 30px;
  animation: sparkle-fade 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes tilt-left {
  0%, 100% {
    transform: rotate(0deg) translateX(0px);
  }
  30% {
    transform: rotate(0deg) translateX(0px);
  }
  42% {
    transform: rotate(18deg) translateX(2px);
  }
  50% {
    transform: rotate(18deg) translateX(2px);
  }
  65% {
    transform: rotate(-3deg) translateX(-0.5px);
  }
  75%, 90% {
    transform: rotate(0deg) translateX(0px);
  }
}

@keyframes tilt-right {
  0%, 100% {
    transform: rotate(0deg) translateX(0px);
  }
  30% {
    transform: rotate(0deg) translateX(0px);
  }
  42% {
    transform: rotate(-18deg) translateX(-2px);
  }
  50% {
    transform: rotate(-18deg) translateX(-2px);
  }
  65% {
    transform: rotate(3deg) translateX(0.5px);
  }
  75%, 90% {
    transform: rotate(0deg) translateX(0px);
  }
}

@keyframes sparkle-fade {
  0%, 41% {
    opacity: 0;
    transform: scale(0.5);
  }
  42% {
    opacity: 1;
    transform: scale(1.1);
  }
  55% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes pulse-text {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

