/**
 * Un Italiano Vero — trattoria familiale, sobre et raffinée
 */

:root {
  /* Palette sicilienne & italienne */
  --cream: #FBF6EC;
  --charcoal: #2A2522;
  --red: #9B2D20;           /* terracotta siciliana */
  --olive: #5C6B3C;         /* verde d'olive / tricolore */
  --gold: #C99A47;          /* grano di Sicilia, sole */
  --mediterranean: #3D6B6E; /* mare, accent discret */

  /* Alias tricolore (utilisation sobre) */
  --italia-verde: var(--olive);
  --italia-bianco: var(--cream);
  --italia-rosso: var(--red);

  --theme: var(--red);
  --theme2: var(--olive);
  --title: var(--charcoal);
  --text: var(--charcoal);
  --bg2: var(--cream);
  --white: #FFFDF8;
  --border-2: rgba(92, 107, 60, 0.18);

  --title-font: "Fraunces", Georgia, serif;
  --body-font: "Inter", system-ui, sans-serif;

  --section-pad-y: clamp(4rem, 8vw, 6.5rem);
  --site-header-height: 64px;

  /* Bande tricolore fine (header, footer, séparateurs) */
  --tricolore: linear-gradient(
    90deg,
    var(--italia-verde) 0%,
    var(--italia-verde) 33.33%,
    var(--italia-bianco) 33.33%,
    var(--italia-bianco) 66.66%,
    var(--italia-rosso) 66.66%,
    var(--italia-rosso) 100%
  );
}

@media (min-width: 768px) {
  :root {
    --site-header-height: 72px;
  }
}

@media (min-width: 1200px) {
  :root {
    --site-header-height: 80px;
  }
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body.bg-color2 {
  background-color: var(--cream) !important;
  color: var(--charcoal);
  font-family: var(--body-font);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.title {
  font-family: var(--title-font);
  color: var(--charcoal);
  font-weight: 500;
}

p, .text {
  font-family: var(--body-font);
  color: rgba(42, 37, 34, 0.82);
}

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--red);
}

::selection {
  background: rgba(155, 45, 32, 0.18);
  color: var(--charcoal);
}

/* Masquer le bruit du template */
.mouse-cursor {
  display: none !important;
}

.banner-wrapper.style1 .shape1_1,
.banner-wrapper.style1 .shape1_2,
.banner-wrapper.style1 .shape1_3,
.banner-wrapper.style1 .shape1_4,
.banner-wrapper.style1 .shape1_5,
.banner-wrapper.style1 .shape1_6 {
  display: none !important;
}

.uiv-hero .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.food-menu-section .pizza-shape,
.food-menu-section .pasta-shape {
  display: none !important;
}

.section-padding {
  padding-top: var(--section-pad-y) !important;
  padding-bottom: var(--section-pad-y) !important;
}

/* ── Séparateur tricolore discret ── */
.uiv-divider {
  height: 4px;
  max-width: min(480px, 72%);
  margin: 0 auto;
  background: var(--tricolore);
  border-radius: 1px;
  opacity: 0.85;
}
.uiv-divider::before {
  display: none;
}

/* ── Boutons — terracotta siciliana ── */
.theme-btn {
  font-family: var(--body-font) !important;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  background: var(--red) !important;
  color: var(--cream) !important;
  border: 1px solid var(--red) !important;
  border-radius: 2px !important;
  padding: 0.9rem 1.6rem !important;
  box-shadow: none !important;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.theme-btn:hover {
  background: var(--olive) !important;
  color: var(--cream) !important;
  border-color: var(--olive) !important;
  transform: none !important;
}

a:focus-visible,
button:focus-visible,
.theme-btn:focus-visible,
.nav-link:focus-visible {
  outline: 1px solid var(--gold) !important;
  outline-offset: 3px;
}

.skip-link {
  background: var(--charcoal) !important;
}

.accent-gold {
  color: var(--gold);
  font-style: normal;
  box-shadow: inset 0 -0.15em 0 rgba(201, 154, 71, 0.55);
}

/* ── Header — barre unique ── */
.header-section {
  background: var(--cream);
  border-bottom: 1px solid rgba(92, 107, 60, 0.12);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header-section:has(#header-sticky.sticky) {
  background: rgba(251, 246, 236, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(92, 107, 60, 0.12);
}

.header-section::before {
  content: "";
  display: block;
  height: 3px;
  background: var(--tricolore);
}

.header-section .container-fluid {
  padding-left: clamp(1rem, 3vw, 2.5rem) !important;
  padding-right: clamp(1rem, 3vw, 2.5rem) !important;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--site-header-height);
  padding: 0.5rem 0;
}

.site-header__logo {
  flex-shrink: 0;
  line-height: 0;
  min-width: 0;
  max-width: min(58vw, 220px);
}

.site-header__logo img {
  display: block;
  height: auto;
  max-height: 48px;
  width: auto;
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__nav li {
  display: block;
}

.site-header__nav a {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(42, 37, 34, 0.78);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color 0.2s ease;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-header__nav a:hover,
.site-header__nav li.active a {
  color: var(--olive);
}

.site-header__nav a:hover::after,
.site-header__nav li.active a::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.site-header__cta {
  white-space: nowrap;
}

.site-header__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--red);
  background: rgba(155, 45, 32, 0.08);
  border: none;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-header__tel:hover {
  background: var(--red);
  color: var(--cream);
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-header__menu:hover {
  background: transparent;
  color: var(--red);
}

.site-header__menu-bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.site-header__menu-bars::before,
.site-header__menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.site-header__menu-bars::before {
  top: -6px;
}

.site-header__menu-bars::after {
  top: 6px;
}

#header-sticky.sticky {
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: auto !important;
  padding: 0 !important;
  animation: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

#header-sticky.sticky.site-header {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Legacy selectors — neutralisés */
.sticky.header-1 {
  padding: 0 !important;
}

@media (max-width: 1199px) {
  .site-header {
    min-height: 64px;
    padding: 0.4rem 0;
    gap: 0.75rem;
  }

  .site-header__logo {
    max-width: min(52vw, 180px);
  }

  .site-header__logo img {
    max-height: 40px;
  }

  .site-header__actions {
    gap: 0.35rem;
  }
}

@media (max-width: 575px) {
  .header-section .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .site-header {
    gap: 0.5rem;
  }

  .site-header__logo {
    max-width: calc(100% - 96px);
  }

  .site-header__menu-label {
    display: none;
  }

  .site-header__menu {
    padding: 0.5rem;
    min-width: 44px;
    justify-content: center;
  }

  .site-header__logo img {
    max-height: 34px;
  }

  .site-header__tel {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

.offcanvas__info {
  background: var(--cream) !important;
  border-left: 3px solid var(--olive) !important;
  width: min(100vw, 380px) !important;
  max-width: 100%;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.45 !important;
}

.offcanvas__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
  padding: clamp(1.25rem, 4vw, 2rem) !important;
  padding-top: max(1.25rem, env(safe-area-inset-top, 0px)) !important;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px)) !important;
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px)) !important;
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px)) !important;
}

.offcanvas__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  position: relative;
  padding-top: 2.75rem;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px !important;
  height: 44px !important;
  line-height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
  border-radius: 50% !important;
  background: var(--red) !important;
  flex-shrink: 0;
}

.offcanvas__logo {
  margin-bottom: 1.5rem !important;
  text-align: center;
}

.offcanvas__logo img {
  width: auto !important;
  max-width: min(160px, 55vw);
  height: auto;
}

.offcanvas__content nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.25rem;
  padding: 0 0.25rem;
}

.offcanvas__content nav ul {
  margin: 0;
  padding: 0;
}

.offcanvas__content nav ul li {
  margin-bottom: 0 !important;
  border-bottom: 1px solid rgba(42, 37, 34, 0.08);
}

.offcanvas__content nav ul li a {
  display: block;
  font-family: var(--body-font) !important;
  font-size: clamp(0.9375rem, 2.8vw, 1.0625rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
  color: var(--charcoal) !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 0.25rem;
  min-height: 48px;
  line-height: 1.3;
}

.offcanvas__content nav ul li a:hover {
  color: var(--red) !important;
}

.offcanvas__contact {
  flex-shrink: 0;
  margin-top: 1.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(42, 37, 34, 0.08);
}

.offcanvas__contact .theme-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1.25rem !important;
}

.offcanvas__contact ul {
  margin-top: 1rem !important;
}

.offcanvas__contact ul li {
  margin-bottom: 0.75rem !important;
}

.offcanvas__contact ul li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body-font) !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  text-decoration: none;
  text-transform: none !important;
  word-break: break-word;
}

.offcanvas__contact ul li a:hover {
  color: var(--red) !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 0 !important;
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--olive) !important;
}

body.offcanvas-scroll-lock {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 576px) and (max-width: 1199px) {
  .offcanvas__info {
    width: min(92vw, 360px) !important;
  }
}

@media (max-width: 575px) {
  .offcanvas__info {
    width: 100% !important;
    border-left: none !important;
    border-top: 3px solid var(--olive) !important;
  }

  .offcanvas__content nav ul li a {
    font-size: 0.9375rem !important;
    padding: 0.875rem 0.25rem;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .site-header__nav a {
    padding: 0.5rem 0.65rem;
    font-size: 0.8125rem;
  }

  .site-header__cta {
    padding: 0.75rem 1.15rem !important;
    font-size: 0.75rem !important;
  }
}

@media (min-width: 1200px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .site-header__logo {
    justify-self: start;
  }

  .site-header__logo img {
    max-height: 52px;
  }

  .site-header__nav {
    justify-self: center;
    margin: 0;
  }

  .site-header__actions {
    justify-self: end;
  }

  .site-header__logo {
    max-width: none;
  }
}

/* ── Hero — fond d'origine + contenu éditorial ── */
.uiv-hero {
  position: relative;
  min-height: calc(100svh - var(--site-header-height));
  min-height: calc(100vh - var(--site-header-height));
  overflow: hidden;
  background: var(--cream);
}

.uiv-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/bg/bannerBG1_1.jpg);
  background-position: 62% 35%;
  background-size: cover;
  background-repeat: no-repeat;
}

.uiv-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(251, 246, 236, 0.97) 0%,
      rgba(251, 246, 236, 0.92) 32%,
      rgba(251, 246, 236, 0.62) 46%,
      rgba(251, 246, 236, 0.18) 58%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 55% 50% at 78% 50%,
      rgba(201, 154, 71, 0.14) 0%,
      transparent 70%
    );
  pointer-events: none;
}

.uiv-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  max-width: 1544px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  width: 100%;
}

.uiv-hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.uiv-hero__panel {
  position: relative;
  width: 100%;
  max-width: 38rem;
  isolation: isolate;
}

.uiv-hero__panel::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: min(100%, 12rem);
  height: 3px;
  background: var(--tricolore);
  z-index: 2;
}

.uiv-hero__panel-inner {
  position: relative;
  z-index: 2;
  animation: uiv-hero-in 0.9s ease both;
}

.uiv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--body-font);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.25rem;
}

.uiv-hero__eyebrow::before {
  content: "";
  width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 154, 71, 0.2));
  flex-shrink: 0;
}

.uiv-hero__brand {
  font-family: var(--title-font);
  font-size: clamp(1.375rem, 2.8vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  color: var(--red);
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

.uiv-hero__title {
  font-family: var(--title-font);
  font-size: clamp(2.625rem, 7.5vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--charcoal);
  margin: 0;
  max-width: 11ch;
}

.uiv-hero__accent {
  display: block;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.08em;
}

.uiv-hero__title::after {
  content: "";
  display: block;
  width: clamp(3.5rem, 12vw, 5rem);
  height: 2px;
  margin-top: 1.75rem;
  background: linear-gradient(90deg, var(--red), var(--gold) 55%, var(--olive));
  border-radius: 1px;
}

.uiv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-top: 2rem;
}

.uiv-hero__cta-ghost {
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(42, 37, 34, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.uiv-hero__cta-ghost:hover {
  color: var(--red);
  border-color: var(--red);
}

.uiv-hero__watermark {
  position: absolute;
  right: -0.05em;
  bottom: -0.08em;
  font-family: var(--title-font);
  font-size: clamp(4.5rem, 11vw, 9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 253, 248, 0.35);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* Côté droit — vitrine du fond décoratif */
.uiv-hero__aside {
  position: relative;
  display: none;
  min-height: clamp(280px, 36vw, 480px);
}

.uiv-hero__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(42, 37, 34, 0.18);
}

.uiv-hero__viewport-bg {
  position: absolute;
  inset: -8%;
  background-image: url(../img/bg/bannerBG1_1.jpg);
  background-position: 72% 40%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.uiv-hero__viewport-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 154, 71, 0.55);
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.25),
    inset 0 -40% 60% rgba(42, 37, 34, 0.22);
  pointer-events: none;
  z-index: 1;
}

.uiv-hero__viewport-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 1px;
  pointer-events: none;
}

.uiv-hero__emblem {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(72px, 12vw, 110px);
  height: auto;
  opacity: 0.88;
  filter: drop-shadow(0 8px 24px rgba(42, 37, 34, 0.25));
  z-index: 2;
}

@keyframes uiv-hero-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .uiv-hero__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .uiv-hero__aside {
    display: block;
  }

  .uiv-hero__accent {
    display: inline;
    margin-top: 0;
  }

  .uiv-hero__title {
    max-width: 10ch;
  }
}

@media (max-width: 991px) {
  .uiv-hero {
    min-height: auto;
  }

  .uiv-hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(251, 246, 236, 0.97) 0%,
      rgba(251, 246, 236, 0.9) 45%,
      rgba(251, 246, 236, 0.75) 100%
    );
  }

  .uiv-hero__content {
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
  }

  .uiv-hero__panel {
    max-width: none;
    text-align: center;
  }

  .uiv-hero__panel::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .uiv-hero__panel-inner {
    max-width: none;
  }

  .uiv-hero__eyebrow {
    justify-content: center;
  }

  .uiv-hero__eyebrow::before {
    display: none;
  }

  .uiv-hero__title {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .uiv-hero__title::after {
    margin-left: auto;
    margin-right: auto;
  }

  .uiv-hero__actions {
    justify-content: center;
  }

  .uiv-hero__watermark {
    display: none;
  }
}

@media (max-width: 575px) {
  .uiv-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .uiv-hero__actions .theme-btn {
    width: 100%;
    text-align: center;
  }

  .uiv-hero__cta-ghost {
    text-align: center;
    border-bottom: none;
    padding: 0.75rem;
    border: 1px solid rgba(42, 37, 34, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uiv-hero__panel-inner {
    animation: none;
  }
}

/* ── Notre Histoire + vidéos ── */
.about-us-section {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(92, 107, 60, 0.05) 50%,
    var(--cream) 100%
  );
}

.about-wrapper.style1 .shape1 video,
.about-wrapper.style1 .shape4 video {
  border-radius: 2px;
  box-shadow: 0 20px 48px rgba(42, 37, 34, 0.1);
  border: 2px solid rgba(92, 107, 60, 0.2);
  opacity: 0.95;
  display: block;
}

/* Desktop — fond blanc + vidéos gauche/droite de taille identique */
@media (min-width: 1400px) {
  .about-wrapper.style1 {
    --about-video-width: clamp(380px, 31vw, 530px);
    --about-video-ratio: 698 / 754;
    display: grid;
    grid-template-columns: var(--about-video-width) minmax(0, 1fr) var(--about-video-width);
    align-items: stretch;
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
  }

  .about-wrapper.style1 .shape1 {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    z-index: 2;
  }

  .about-wrapper.style1 .shape4 {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 3;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    z-index: 2;
  }

  .about-wrapper.style1 .container {
    grid-column: 2;
    grid-row: 1;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .about-wrapper.style1 .about-us {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    background: var(--white) !important;
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(42, 37, 34, 0.06);
    border: 1px solid rgba(92, 107, 60, 0.1);
    padding-top: clamp(3rem, 5vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 5vw, 4.5rem) !important;
  }

  .about-wrapper.style1 .about-us .row,
  .about-wrapper.style1 .about-us .col-12 {
    width: 100%;
  }

  /* Même cadre pour les deux vidéos (fichiers sources de résolutions différentes) */
  .about-wrapper.style1 .shape1,
  .about-wrapper.style1 .shape4 {
    width: 100%;
    min-height: calc(var(--about-video-width) / var(--about-video-ratio));
    align-items: stretch;
  }

  .about-wrapper.style1 .shape1 video,
  .about-wrapper.style1 .shape4 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

@media (min-width: 1400px) and (max-width: 1780px) {
  .about-wrapper.style1 .shape1 {
    left: auto !important;
  }

  .about-wrapper.style1 .shape4 {
    right: auto !important;
  }
}

.about-us-section .sub-title {
  font-family: var(--body-font) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--olive) !important;
}

.about-us-section .sub-title img {
  width: 36px !important;
  height: auto !important;
  opacity: 0.65;
  vertical-align: middle;
}

.about-us-section .title-area .title {
  font-family: var(--title-font) !important;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem) !important;
  line-height: 1.65 !important;
  font-weight: 400 !important;
  max-width: 40rem;
  margin: 0 auto;
  letter-spacing: 0;
}

.about-us-section .title-area .text {
  font-size: 1.0625rem;
  line-height: 1.85;
  max-width: 38rem;
  margin: 2.5rem auto 0;
  color: rgba(42, 37, 34, 0.78);
}

.about-us-section .title-area {
  text-align: center;
}

/* Vidéos masquées mobile & tablette uniquement (< 1400px) */
@media (max-width: 1399px) {
  .about-wrapper.style1 .shape1,
  .about-wrapper.style1 .shape4 {
    display: none !important;
  }

  .about-wrapper.style1 {
    overflow: hidden;
  }

  .about-wrapper.style1 .about-us {
    background: transparent !important;
  }
}

.menu-tagline {
  font-family: var(--body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  text-align: center;
  margin: 0.75rem 0 0.25rem;
}

/* ── Carte — layout + couleurs siciliennes ── */
.food-menu-section {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    rgba(201, 154, 71, 0.04) 100%
  );
}

.food-menu-tab-wrapper.style-bg {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

.food-menu-tab-wrapper.style-bg::before {
  display: none !important;
}

.food-menu-section .sub-title span {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}

.food-menu-section .sub-title img {
  width: 28px !important;
  height: auto !important;
  opacity: 0.75;
  filter: sepia(0.25) saturate(1.2);
}

.food-menu-section .title-area .title {
  font-family: var(--title-font) !important;
  font-size: clamp(2rem, 3.5vw, 2.75rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--charcoal) !important;
}

.food-menu-section .title-area .title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 1rem auto 0;
  background: var(--gold);
}

.food-menu-section .title-area {
  margin-bottom: 3rem;
  text-align: center;
}

.food-menu-tab .nav-pills {
  border-bottom: 1px solid rgba(42, 37, 34, 0.1) !important;
  padding-bottom: 0 !important;
  margin-bottom: 2.5rem !important;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center !important;
}

.food-menu-tab .nav-pills .nav-link {
  font-family: var(--body-font) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42, 37, 34, 0.55) !important;
  background: transparent !important;
  border: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent !important;
  padding: 0.85rem 1.25rem !important;
  margin: 0 !important;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.food-menu-tab .nav-pills .nav-link:hover {
  color: var(--red) !important;
  background: transparent !important;
}

.food-menu-tab .nav-pills .nav-link.active {
  color: var(--charcoal) !important;
  background: transparent !important;
  border-bottom-color: var(--red) !important;
  box-shadow: none !important;
}

/* Accents catégories — verde / rosso / oro */
#pills-Entrées-tab.active,
#pills-Pates-tab.active {
  border-bottom-color: var(--olive) !important;
  color: var(--olive) !important;
}

#pills-Viandes-tab.active,
#pills-Viandes-Poissons-tab.active {
  border-bottom-color: var(--red) !important;
  color: var(--red) !important;
}

#pills-pizzaTomate-tab.active,
#pills-pizzaBlanche-tab.active,
#pills-pizzaSpeciales-tab.active {
  border-bottom-color: var(--gold) !important;
  color: var(--charcoal) !important;
}

#menu .food-menu-tab .tab-content {
  margin-top: 0 !important;
  max-width: 1040px;
  margin-left: auto !important;
  margin-right: auto !important;
}

#menu .food-menu-tab .tab-content > .tab-pane > .row {
  --bs-gutter-x: 3rem;
}

/* Ligne plat : grille nom + prix (corrige Entrées et multi-prix) */
#menu .single-menu-items {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: baseline !important;
  justify-content: unset !important;
  column-gap: 2rem;
  row-gap: 0.35rem;
  margin-top: 0 !important;
  padding: 1.25rem 0 !important;
  border-bottom: 1px solid rgba(92, 107, 60, 0.12);
  flex-wrap: unset !important;
}

#menu .single-menu-items .details {
  display: block !important;
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  flex: unset !important;
  gap: 0 !important;
  min-width: 0;
}

#menu .single-menu-items .menu-content {
  display: block !important;
}

#menu .single-menu-items .details .menu-content h3,
#menu .single-menu-items .menu-content h3 {
  font-family: var(--title-font) !important;
  font-size: 1.125rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  color: var(--charcoal) !important;
  margin: 0 !important;
  text-transform: none !important;
  cursor: default !important;
  display: block;
}

#menu .single-menu-items .details .menu-content h3::after,
#menu .single-menu-items .menu-content h3::after {
  display: none !important;
}

#menu .single-menu-items .details .menu-content p,
#menu .single-menu-items .menu-content p {
  font-family: var(--body-font) !important;
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: rgba(92, 107, 60, 0.85) !important;
  line-height: 1.55 !important;
  margin: 0.35rem 0 0 !important;
  margin-top: 0.35rem !important;
  font-style: italic;
}

#menu .single-menu-items > h6,
#menu .single-menu-items .menu-prices {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  text-align: right;
}

#menu .single-menu-items > h6 {
  font-family: var(--body-font) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  font-variant-numeric: tabular-nums;
  color: var(--red) !important;
  white-space: nowrap;
  margin: 0 !important;
  letter-spacing: 0.02em;
  line-height: 1.35 !important;
}

#menu .single-menu-items .menu-prices h6 {
  font-family: var(--body-font) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  font-variant-numeric: tabular-nums;
  color: var(--red) !important;
  margin: 0 !important;
  line-height: 1.35 !important;
  white-space: nowrap;
}

#menu .single-menu-items .menu-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

@media (min-width: 992px) {
  #menu .food-menu-tab .tab-content .col-lg-6:first-child {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(92, 107, 60, 0.12);
  }
  #menu .food-menu-tab .tab-content .col-lg-6:last-child {
    padding-left: 2.5rem;
  }
}

@media (max-width: 991px) {
  #menu .food-menu-tab .nav-pills {
    position: sticky;
    top: var(--site-header-height, 72px);
    z-index: 30;
    background: rgba(251, 246, 236, 0.96) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin: 0 calc(-1 * var(--bs-gutter-x, 0.75rem) * 0.5) 2rem;
    padding: 0.5rem 0.75rem 0 !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.75rem;
    justify-content: flex-start !important;
    scrollbar-width: none;
    border-bottom: 1px solid rgba(42, 37, 34, 0.1) !important;
  }

  #menu .food-menu-tab .nav-pills::-webkit-scrollbar {
    display: none;
  }

  #menu .food-menu-tab .nav-pills .nav-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  #menu .food-menu-tab .nav-pills .nav-link {
    white-space: nowrap;
    padding: 0.75rem 1rem !important;
    font-size: 0.75rem !important;
    border-right: none !important;
    margin-right: 0 !important;
  }

  #menu .food-menu-tab .tab-content .col-lg-6:first-child {
    border-right: none;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }

  #menu .food-menu-tab .tab-content > .tab-pane > .row {
    --bs-gutter-x: 1rem;
  }
}

@media (max-width: 575px) {
  #menu .single-menu-items {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }

  #menu .single-menu-items .details {
    grid-row: 1;
  }

  #menu .single-menu-items > h6,
  #menu .single-menu-items .menu-prices {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    text-align: left;
  }

  #menu .single-menu-items .menu-prices {
    align-items: flex-start;
  }
}

/* ── Marquee — ton sicilien ── */
.marquee-wrapper.style-1 {
  background: rgba(92, 107, 60, 0.06) !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: 1.75rem 0 !important;
  margin-top: 0 !important;
  opacity: 0.75;
  position: relative;
}

.marquee-wrapper.style-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--tricolore);
  border-radius: 1px;
}

.marquee-wrapper .text-slider.text-style {
  font-family: var(--body-font) !important;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive) !important;
}

.marquee-wrapper .text-slider:not(.text-style) {
  color: var(--gold) !important;
}

/* ── Footer — sobre et équilibré ── */
.footer-section,
.footer-section.bg-title {
  background: var(--charcoal) !important;
  background-image: none !important;
  color: var(--cream) !important;
}

.footer-section::before {
  display: none;
}

.footer-widgets-wrapper {
  padding: clamp(3rem, 6vw, 4.5rem) 0 0 !important;
  position: relative;
  z-index: 1;
}

.footer-brand {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(251, 246, 236, 0.1);
}

.footer-brand a {
  display: inline-block;
  line-height: 0;
}

.footer-logo {
  max-height: 72px;
  width: auto;
  opacity: 0.92;
}

.footer-brand-tagline {
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 154, 71, 0.9);
  margin: 1.25rem 0 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 71, 0.35);
  color: rgba(251, 246, 236, 0.9);
  font-size: 1.0625rem;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  color: var(--cream);
  border-color: var(--gold);
  background: rgba(201, 154, 71, 0.15);
  transform: translateY(-2px);
}

.footer-top {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-grid .col-lg-4:not(:last-child) {
  border-right: 1px solid rgba(251, 246, 236, 0.08);
}

.footer-top .footer-block {
  display: block !important;
  text-align: center;
  padding: 0 1.75rem 2rem;
  height: 100%;
}

.footer-top .footer-block .item1 {
  display: none !important;
}

.footer-top .footer-block .item2 h6 {
  font-family: var(--body-font) !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-bottom: 1.25rem !important;
}

.footer-top .footer-block .item2 p,
.footer-top .footer-block .item2 p a {
  color: rgba(251, 246, 236, 0.78) !important;
  font-family: var(--body-font);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.footer-top .footer-block .item2 p:not(:last-child) {
  margin-bottom: 0.5rem !important;
}

.footer-top .footer-block .item2 p a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-top .footer-block .item2 p a:hover {
  color: var(--cream) !important;
}

.footer-maps-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--gold) !important;
  font-size: 0.8125rem !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(201, 154, 71, 0.35);
  text-decoration: none !important;
}

.footer-maps-link:hover {
  color: var(--cream) !important;
  border-bottom-color: var(--cream);
}

.footer-map {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 246, 236, 0.1);
}

.footer-map-title {
  font-family: var(--body-font) !important;
  font-size: 0.6875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-align: center;
  margin-bottom: 1rem !important;
}

.footer-map-embed {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 2.1 / 1;
  max-height: 260px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(201, 154, 71, 0.25);
  background: rgba(251, 246, 236, 0.04);
}

.footer-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .footer-map {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
  }

  .footer-map-embed {
    max-width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }
}

.footer-bottom {
  position: relative;
  margin-top: 0;
  padding: 1.35rem 0 1.75rem;
  background: rgba(34, 30, 28, 0.98) !important;
  border-top: 1px solid rgba(251, 246, 236, 0.08);
  text-align: center;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(5rem, 22%);
  height: 2px;
  background: linear-gradient(90deg, var(--olive), var(--gold), var(--red));
  opacity: 0.55;
}

.footer-bottom__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-family: var(--body-font);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.42);
  line-height: 1.6;
}

.footer-bottom__sep {
  color: rgba(201, 154, 71, 0.45);
  letter-spacing: 0;
}

.footer-bottom a {
  color: var(--gold) !important;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 154, 71, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--cream) !important;
  border-bottom-color: rgba(251, 246, 236, 0.55);
}

@media (max-width: 991px) {
  .footer-grid .col-lg-4:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(251, 246, 236, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }

  .footer-top .footer-block {
    padding: 0 0.5rem 1.5rem;
  }
}

.back-to-top {
  background: var(--olive) !important;
  color: var(--cream) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  border: none;
}

.back-to-top:hover {
  background: var(--red) !important;
  transform: none !important;
}

.sub-title {
  color: var(--olive) !important;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — global, header, hero, about, carte, footer
   ══════════════════════════════════════════════════════════ */

html,
body {
  overflow-x: clip;
  max-width: 100%;
}

img,
video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 575px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 767px) {
  :root {
    --section-pad-y: 3rem;
  }

  body.bg-color2 {
    font-size: 1rem;
  }

  .uiv-divider {
    max-width: 88%;
  }

  .theme-btn {
    padding: 0.8rem 1.25rem !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 575px) {
  :root {
    --section-pad-y: 2.5rem;
  }
}

/* ── Header responsive (offcanvas) — voir bloc .offcanvas__* plus haut ── */

@media (max-width: 380px) {
  .site-header__logo img {
    max-height: 32px;
  }

  #menu .food-menu-tab .nav-pills .nav-link {
    padding: 0.65rem 0.75rem !important;
    font-size: 0.625rem !important;
    letter-spacing: 0.04em;
  }

  .offcanvas__logo img {
    max-width: min(140px, 50vw);
  }
}

/* ── Notre Histoire — mobile & tablette uniquement (< 1400px, sans vidéos) ── */
@media (max-width: 1399px) {
  .about-us-section.section-padding {
    padding-top: clamp(2.5rem, 6vw, 4rem) !important;
    padding-bottom: 0 !important;
  }

  .about-us-section .about-us.section-padding {
    padding-top: 0 !important;
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem) !important;
  }

  .about-us-section .container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }

  .about-wrapper.style1 .title-area {
    max-width: min(36rem, 100%) !important;
    padding: 0;
  }

  .about-us-section .sub-title {
    letter-spacing: 0.16em;
    font-size: 0.6875rem !important;
  }

  .about-us-section .sub-title br {
    display: none;
  }

  .about-us-section .sub-title img {
    width: 28px !important;
  }

  .about-us-section .title-area .title {
    font-size: clamp(1.125rem, 2.8vw, 1.5rem) !important;
    line-height: 1.65 !important;
    max-width: 100%;
    padding: 0;
    text-wrap: pretty;
  }

  .about-us-section .title-area .title br {
    display: none;
  }

  .about-us-section .title-area .text {
    font-size: clamp(0.9875rem, 2.2vw, 1.0625rem);
    line-height: 1.8;
    max-width: 100%;
    margin-top: 1.75rem;
    padding: 0;
    text-align: center;
    text-wrap: pretty;
  }

  .about-us-section .title-area .text br {
    display: block;
    content: "";
    margin-bottom: 1.125rem;
  }
}

@media (max-width: 767px) {
  .about-us-section.section-padding {
    padding-top: 2.5rem !important;
  }

  .about-us-section .about-us.section-padding {
    padding-bottom: 2.5rem !important;
  }

  .about-us-section .sub-title {
    letter-spacing: 0.12em;
    font-size: 0.625rem !important;
  }

  .about-us-section .sub-title img {
    width: 24px !important;
  }

  .about-us-section .title-area .title {
    font-size: clamp(1.0625rem, 4.5vw, 1.25rem) !important;
    line-height: 1.6 !important;
  }

  .about-us-section .title-area .text {
    font-size: 0.9375rem;
    line-height: 1.75;
  }
}

@media (max-width: 575px) {
  .about-us-section .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 380px) {
  .about-us-section .sub-title {
    letter-spacing: 0.08em;
  }

  .about-us-section .sub-title img {
    width: 20px !important;
  }

  .about-us-section .title-area .title {
    font-size: 1rem !important;
  }

  .about-us-section .title-area .text {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

/* ── Carte responsive ── */
@media (max-width: 991px) {
  .food-menu-section .title-area {
    margin-bottom: 2rem;
  }

  .food-menu-section .title-area .title {
    font-size: clamp(1.625rem, 5vw, 2.25rem) !important;
  }

  .menu-tagline {
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }

  #menu .food-menu-tab .nav-pills {
    top: var(--site-header-height) !important;
    margin-left: calc(-1 * var(--bs-gutter-x, 0.75rem) * 0.5);
    margin-right: calc(-1 * var(--bs-gutter-x, 0.75rem) * 0.5);
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  #menu .food-menu-tab .tab-content > .tab-pane > .row {
    --bs-gutter-x: 0;
  }

  #menu .food-menu-tab .tab-content .col-lg-6 + .col-lg-6 {
    margin-top: 0.5rem;
  }

  /* Garde nom + prix sur une ligne jusqu'à 576px */
  #menu .single-menu-items {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  #menu .single-menu-items > h6,
  #menu .single-menu-items .menu-prices {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: right !important;
    align-self: end !important;
  }

  #menu .single-menu-items .details {
    grid-row: 1 / span 2 !important;
  }
}

@media (max-width: 767px) {
  .food-menu-section .sub-title img {
    width: 22px !important;
  }

  .food-menu-tab .nav-pills .nav-link {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.06em;
  }

  #menu .single-menu-items {
    padding: 1rem 0 !important;
    column-gap: 1rem;
  }

  #menu .single-menu-items .details .menu-content h3,
  #menu .single-menu-items .menu-content h3 {
    font-size: 1.0625rem !important;
  }
}

@media (max-width: 575px) {
  #menu .single-menu-items {
    grid-template-columns: 1fr !important;
    row-gap: 0.4rem;
  }

  #menu .single-menu-items .details {
    grid-row: 1 !important;
  }

  #menu .single-menu-items > h6,
  #menu .single-menu-items .menu-prices {
    grid-column: 1 !important;
    grid-row: 2 !important;
    text-align: left !important;
    align-self: start !important;
  }

  #menu .single-menu-items .menu-prices {
    align-items: flex-start !important;
  }

  /* Override main.min.css legacy rules */
  #menu .single-menu-items .details {
    flex: unset !important;
  }

  #menu .single-menu-items h6 {
    width: auto !important;
    margin-left: 0 !important;
    text-align: left !important;
  }
}

@media (max-width: 470px) {
  #menu .single-menu-items .menu-content h3 {
    font-size: 1rem !important;
    word-break: break-word;
  }

  #menu .single-menu-items .menu-content p {
    font-size: 0.8125rem !important;
  }
}

/* ── Marquee responsive ── */
.marquee-wrapper.style-1 {
  overflow: hidden;
}

@media (max-width: 767px) {
  .marquee-wrapper.style-1 {
    padding: 1.25rem 0 !important;
    opacity: 0.65;
  }

  .marquee-wrapper.style-1::before {
    left: 5%;
    right: 5%;
  }

  .marquee-wrapper .text-slider.text-style {
    font-size: 0.6875rem !important;
    letter-spacing: 0.08em;
  }
}

/* ── Footer responsive ── */
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding-top: 2.5rem !important;
  }

  .footer-brand {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    max-height: 56px;
  }

  .footer-brand-tagline {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    padding: 0 0.5rem;
  }

  .footer-top .footer-block {
    padding: 0 0.25rem 1.25rem;
  }

  .footer-top .footer-block .item2 p,
  .footer-top .footer-block .item2 p a {
    font-size: 0.875rem;
  }

  .footer-bottom {
    padding: 1.15rem 0 1.35rem;
  }

  .footer-bottom__copy {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    padding: 0 0.5rem;
  }
}

/* ── Back to top ── */
.back-to-top {
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  z-index: 40;
}

@media (max-width: 575px) {
  .back-to-top {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
