/* =========================================
   Caffè Università — Torino
   Café vibe: Charcoal · Forest Green · Wood
   Burgundy (logo) used only as accent.
   ========================================= */

:root {
  /* core */
  --paper:        #faf6ec;
  --cream:        #f3ecda;
  --cream-2:      #e7dec5;
  --line:         #ddd2b6;

  --ink:          #14110d;
  --ink-2:        #1f1a14;
  --charcoal:     #2a241d;
  --charcoal-2:   #3a3128;

  /* greens */
  --green:        #2f4a3c;
  --green-deep:   #1f3329;
  --green-soft:   #6f8a7c;
  --green-pale:   #dde4dd;

  /* woods */
  --wood:         #a47b5c;
  --wood-deep:    #6f4e2d;
  --wood-soft:    #d6bc99;

  /* logo accent — used sparingly */
  --burgundy:     #7d1a2c;
  --burgundy-deep:#5a1320;
  --burgundy-soft:#a3324a;

  /* warm gold — menu prices */
  --gold:         #c39960;
  --gold-soft:    #dcb37a;

  --muted:        #7b6d5e;

  --radius:       10px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(20,17,13,.06);
  --shadow-md:    0 14px 34px rgba(20,17,13,.14);
  --shadow-lg:    0 28px 60px rgba(20,17,13,.22);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-fa:      "Vazirmatn", "Inter", system-ui, sans-serif;
}

/* =========== BASE =========== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--burgundy); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--ink);
}

::selection { background: var(--green-pale); color: var(--ink); }

/* RTL / Persian */
html[dir="rtl"] body,
html[lang="fa"] body { font-family: var(--font-fa); }
html[dir="rtl"] .navbar-nav { flex-direction: row-reverse; }
html[dir="rtl"] .ms-auto { margin-left: 0 !important; margin-right: auto !important; }
html[dir="rtl"] .me-3 { margin-right: 0 !important; margin-left: 1rem !important; }
html[dir="rtl"] .dots { display: none; }
html[dir="rtl"] .menu-list li {
  flex-direction: row-reverse;
  justify-content: space-between;
}
html[dir="rtl"] .about-figure::before { left: auto; right: -16px; }

/* =========== TOPBAR =========== */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: .82rem;
  padding: 8px 0;
  letter-spacing: .2px;
}
.topbar a, .topbar-link { color: var(--cream); }
.topbar a:hover, .topbar-link:hover { color: var(--gold-soft); }
.topbar-info span { white-space: nowrap; }

/* =========== NAVBAR =========== */
.navbar-cu {
  background: var(--charcoal);
  padding: .6rem 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.04), var(--shadow-sm);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar-cu .navbar-brand { color: var(--cream); }
.navbar-cu .navbar-brand:hover { color: var(--gold-soft); }
.brand-logo {
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--paper);
  object-fit: cover;
  padding: 2px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .4px;
}
.brand-sub {
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: .75;
}
.navbar-cu .nav-link {
  color: rgba(243, 236, 218, .85);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem;
  position: relative;
}
.navbar-cu .nav-link:hover,
.navbar-cu .nav-link:focus { color: var(--gold-soft); }
.navbar-cu .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem; right: 1rem; bottom: .35rem;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.navbar-cu .nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(195,153,96,.35); }

/* Lang switcher */
.lang-switcher .btn {
  border-color: rgba(243, 236, 218, .35);
  color: var(--cream);
  border-radius: 999px;
  padding: .35rem .9rem;
  font-size: .85rem;
}
.lang-switcher .btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-flag-img {
  border-radius: 2px;
  vertical-align: middle;
  border: 1px solid rgba(0,0,0,.1);
}
.lang-menu {
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.lang-menu .dropdown-item {
  display: flex; align-items: center; gap: .55rem;
  color: var(--ink); font-size: .9rem;
}
.lang-menu .dropdown-item:hover {
  background: var(--green-pale); color: var(--ink);
}

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 92vh;
  color: var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url("../img/interior-plants-wide.jpg?v=3") center / cover no-repeat;
  transform: scale(1.04);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 22, 18, .42) 0%,
      rgba(15, 22, 18, .25) 40%,
      rgba(15, 22, 18, .78) 100%);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-cta .btn { min-width: 180px; }
.hero-inner {
  position: relative;
  padding: 130px 0 110px;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--gold-soft);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6rem);
  line-height: .98;
  margin: 0 0 14px;
  color: var(--paper);
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  font-weight: 700;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  color: var(--gold-soft);
  margin-bottom: 14px;
}
.hero-desc {
  font-size: 1.02rem;
  max-width: 580px;
  color: rgba(250, 246, 236, .9);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Buttons */
.btn-cu-primary {
  background: var(--burgundy);
  border: 1.5px solid var(--burgundy);
  color: var(--paper);
  font-weight: 600;
  letter-spacing: .4px;
  padding: .85rem 1.7rem;
  border-radius: 4px;
  transition: all .2s ease;
}
.btn-cu-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(125, 26, 44, .35);
}
.btn-outline-light {
  border-radius: 4px;
  padding: .85rem 1.7rem;
  font-weight: 500;
  border-width: 1.5px;
  border-color: rgba(250, 246, 236, .55);
  color: var(--paper);
}
.btn-outline-light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

/* =========== SECTIONS =========== */
.section { padding: 100px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-sub {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* =========== ABOUT =========== */
.section-about { background: var(--paper); }
.section-about p { color: var(--charcoal); font-size: 1.02rem; }
.about-points { margin-top: 22px; }
.about-points li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  color: var(--charcoal);
  font-size: .98rem;
}
.about-points .bullet {
  color: var(--green);
  font-size: .8rem;
  line-height: 1;
}

.about-figure {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-figure::before {
  content: "";
  position: absolute;
  left: -16px; top: -16px;
  width: 80px; height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: -1;
}
.about-figure img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}
.about-figure:hover img { transform: scale(1.03); }
.about-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent, rgba(15,22,18,.82));
  color: var(--paper);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 991.98px) {
  .about-figure img { height: 420px; }
}

/* =========== MENU =========== */
.section-menu {
  background: var(--cream);
  position: relative;
}
.section-menu::before, .section-menu::after {
  content: "";
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.section-menu::before { top: 40px; }
.section-menu::after { bottom: 40px; }

.menu-tabs { gap: 4px; }
.menu-tabs .nav-link {
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  font-weight: 500;
  font-size: .92rem;
  padding: .55rem 1.3rem;
  margin: 4px;
  border: 1.5px solid var(--charcoal);
  transition: all .2s ease;
}
.menu-tabs .nav-link.active,
.menu-tabs .nav-link:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.menu-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
}
.menu-card-title {
  font-size: 1.55rem;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.menu-card-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 50px; height: 2px;
  background: var(--gold);
}
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px dotted rgba(20,17,13,.1);
  color: var(--charcoal);
  font-size: .97rem;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(20,17,13,.25);
  transform: translateY(-4px);
  margin: 0 6px;
}
.menu-list .price {
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.menu-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
@media (max-width: 575.98px) {
  .menu-list.two-col { grid-template-columns: 1fr; }
}
.menu-note {
  margin-top: 18px;
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
}

.drink-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  text-align: center;
  font-weight: 500;
  color: var(--ink);
  transition: all .2s ease;
  font-size: .95rem;
}
.drink-pill:hover {
  background: var(--green);
  color: var(--paper);
  border-color: var(--green);
}

/* =========== GALLERY =========== */
.section-gallery {
  background: var(--ink);
  color: var(--paper);
}
.section-gallery .section-eyebrow { color: var(--gold-soft); }
.section-gallery .section-eyebrow::before { background: var(--gold-soft); }
.section-gallery .section-title { color: var(--paper); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  cursor: zoom-in;
  background: var(--charcoal);
  aspect-ratio: 1 / 1;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .35s ease;
  filter: saturate(.95) brightness(.95);
}
.g-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.05) brightness(1);
}
.g-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 22, 18, .55);
  color: var(--paper);
  font-size: 2rem;
  font-weight: 200;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.g-item:hover::after { opacity: 1; }

@media (max-width: 991.98px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}
@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* =========== REVIEWS =========== */
.section-reviews { background: var(--paper); }
.rating-stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1.3rem;
  margin-top: 10px;
}
.rating-num {
  margin-left: 10px;
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 600;
}
.review-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card::before {
  content: "“";
  position: absolute;
  top: -22px; left: 22px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--green);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}
.review-stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.review-text {
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 18px;
}
.review-author {
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}
.review-source {
  font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
  font-size: .82rem;
}

/* =========== LOCATION =========== */
.section-location {
  background: var(--cream);
}
.loc-block {
  font-style: normal;
  background: var(--paper);
  padding: 20px 24px;
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  font-size: 1.02rem;
}
.loc-meta li { padding: 5px 0; color: var(--charcoal); }
.loc-meta strong { color: var(--green); margin-right: 6px; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--paper);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15); }

/* =========== CONTACT =========== */
.section-contact {
  background:
    linear-gradient(180deg, var(--ink) 0%, var(--green-deep) 100%);
  color: var(--paper);
}
.section-contact .section-eyebrow { color: var(--gold-soft); }
.section-contact .section-eyebrow::before { background: var(--gold-soft); }
.section-contact .section-title { color: var(--paper); }
.section-contact .section-sub { color: rgba(250, 246, 236, .82); }

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 38px 22px 28px;
  background: rgba(250, 246, 236, .04);
  border: 1px solid rgba(250, 246, 236, .12);
  border-radius: var(--radius-lg);
  color: var(--paper);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.contact-btn::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}
.contact-btn:hover {
  background: rgba(250, 246, 236, .07);
  border-color: rgba(195, 153, 96, .55);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 22, 18, .35);
}
.contact-btn:hover::before { transform: scaleX(1); }

.cb-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(195, 153, 96, .1);
  border: 1px solid rgba(195, 153, 96, .35);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.cb-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-soft);
  transition: color .3s ease;
}
.contact-btn:hover .cb-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}
.contact-btn:hover .cb-icon svg { color: var(--ink); }

.cb-label {
  font-size: .72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(220, 179, 122, .85);
  font-weight: 600;
  margin-bottom: 2px;
}
.cb-val {
  font-weight: 600;
  word-break: break-word;
  font-size: .98rem;
  color: var(--paper);
  line-height: 1.35;
}

/* =========== FOOTER =========== */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 236, .85);
  padding: 70px 0 28px;
  font-size: .94rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.site-footer a { color: var(--gold-soft); }
.site-footer a:hover { color: var(--paper); }
.footer-h {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--paper);
}
.footer-list li { padding: 4px 0; }
.footer-text { opacity: .82; }
.footer-divider {
  border-color: rgba(255,255,255,.1);
  margin: 36px 0 20px;
}
.footer-copy, .footer-credit {
  font-size: .8rem;
  opacity: .65;
}

/* =========== LIGHTBOX =========== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15, 17, 13, .94);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  padding: 30px;
}
.lightbox[hidden] { display: none; }
.lb-img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(250, 246, 236, .08);
  color: var(--paper);
  border: 1px solid rgba(250, 246, 236, .25);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.lb-close { top: 18px; right: 18px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
@media (max-width: 575.98px) {
  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 1.3rem; }
}

/* =========== ACCESSIBILITY =========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========== BREAKPOINTS =========== */
@media (max-width: 991.98px) {
  .section { padding: 76px 0; }
  .hero-bg { background-position: 30% center; }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15, 22, 18, .60) 0%,
        rgba(15, 22, 18, .42) 35%,
        rgba(15, 22, 18, .90) 100%);
  }
  .hero-inner { padding: 90px 1.5rem 70px; max-width: 100%; }
  .navbar-cu .nav-link::after { display: none; }
  .navbar-cu .navbar-collapse {
    background: var(--charcoal);
    margin-top: .65rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .navbar-cu .nav-link {
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
  }
  .navbar-cu .nav-link:last-of-type { border-bottom: 0; }
  .lang-switcher { margin-top: .8rem; padding: .5rem 0 0; }
}

@media (max-width: 767.98px) {
  .topbar { font-size: .78rem; padding: 7px 0; }
  .topbar-info { width: 100%; line-height: 1.5; }
  .topbar-info .me-3 {
    display: block;
    margin-right: 0 !important;
    margin-bottom: 2px;
  }
  .topbar .gap-2 { gap: .25rem !important; }

  .hero { min-height: 100svh; min-height: 100vh; }
  .hero-inner { padding: 80px 1.25rem 64px; }
  .hero-eyebrow {
    font-size: .68rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }
  .hero-eyebrow::before { width: 22px; }
  .hero-title {
    font-size: clamp(2.6rem, 14vw, 3.6rem);
    line-height: 1;
  }
  .hero-tagline {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  .hero-desc {
    font-size: .95rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    min-width: 0;
    padding: .9rem 1.4rem;
    font-size: 1rem;
    border-radius: 6px;
  }
  .btn-outline-light {
    background: rgba(15, 22, 18, .35);
    border-color: var(--paper);
    color: var(--paper);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }

  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start !important;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tabs .nav-item { flex: 0 0 auto; }
  .menu-tabs .nav-link {
    white-space: nowrap;
    font-size: .85rem;
    padding: .5rem 1rem;
  }

  .review-card { padding: 28px 22px 22px; }
}

@media (max-width: 575.98px) {
  .section { padding: 56px 0; }
  .menu-card { padding: 22px; }
  .menu-card-title { font-size: 1.3rem; }
  .about-figure::before { display: none; }
  .about-figure img { height: 360px; }

  .contact-btn { padding: 22px 14px; }
  .cb-val { font-size: .88rem; }

  .lb-close { top: 12px; right: 12px; width: 38px; height: 38px; }
}
