/* ==================================================================
   CAFE ISTANBUL — STYLESHEET
   ==================================================================
   Reorganised for readability. Rules are grouped by component/page
   section in the order they appear on the page, with each section's
   responsive (@media) overrides nested directly beneath it.

   TABLE OF CONTENTS
   ------------------------------------------------------------------
     1.  DESIGN TOKENS
     2.  GLOBAL RESET & BASE ELEMENTS
     3.  TYPOGRAPHY
     4.  LAYOUT & CONTAINERS
     5.  NAVIGATION — TOP BAR
     6.  NAVIGATION — SIDE PANEL (MOBILE MENU)
     7.  HERO SECTION
     8.  MENU APP — SHELL & SELECTOR
     9.  MENU APP — DIETARY TOGGLE SWITCHES
     10. MENU APP — ALLERGEN FILTER PANEL
     11. MENU APP — CATEGORY TABS
     12. MENU APP — MENU CARDS & GRID
     13. MENU APP — YES/NO TOGGLE & NUTRITION INFO
     14. MENU APP — INFO TOOLTIPS & POPUPS
     15. MENU APP — DIETARY TAGS & ICONS
     16. MENU APP — SET MENU BANNER
     17. BOOKING SECTION
     18. NEWS SECTION & SLIDER
     19. NEWS MODAL
     20. STICKY BOOKING BAR
     21. SCROLL-TO-TOP BUTTON
     22. OUR STORY PAGE
     23. FOOTER
   ------------------------------------------------------------------

   Notes from cleanup:
   - Removed 5 exact duplicate rules that were declared twice
     (.category-tabs::-webkit-scrollbar, mobile .prev/.next,
     mobile .story-container h1/p) — no visual change.
   - Removed 2 redundant rules that only restated a value already
     set by an earlier rule of identical specificity
     (.modal-box position:relative, mobile .menu-grid columns).
   - Removed an invalid unitless "font-size:12" declaration inside
     the mobile .info-popup rule (browsers ignore invalid values
     anyway, so this had zero visual effect either way).
   - Everything else is byte-for-byte the same values as before,
     just reformatted and regrouped.
   ================================================================== */

/* ------------------------------------------------------------------
   1.  DESIGN TOKENS
   ------------------------------------------------------------------ */

:root {
  /* NOTE: --brand-dark / --brand-dark-green share the same value (#123e30),
     as do --text / --text-main (#333). Left as-is since both names are
     already used across the file, but worth consolidating to one name
     each next time you touch this section. */
  --brand-mint: #a3d9c9;
  --brand-dark: #123e30;
  --brand-dark-green: #123e30;
  --brand-white: #ffffff;
  --brand-hover: #e1ff5b;
  --text-main: #333;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --scale-text: 0.9;
  --scale-spacing: 0.8;
  --accent: #3fb489;
  --text: #333;
  --border: #ddd;
}

/* ------------------------------------------------------------------
   2.  GLOBAL RESET & BASE ELEMENTS
   ------------------------------------------------------------------ */

.icon-svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.125em;
}

html {
  font-size: calc(16px * var(--scale-text));
}

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

body,
html {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  overflow-x: hidden;
  background-color: #eeeeea;
  scroll-behavior: smooth;
}

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

section,
div[id] {
  scroll-margin-top: 100px;
}

/* ------------------------------------------------------------------
   3.  TYPOGRAPHY
   ------------------------------------------------------------------ */

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

h1 {
  font-size: 2rem;
  letter-spacing: 0.5px;
  font-weight: 600;
}

h2 {
  font-size: 1.4rem;
  font-weight: 500;
}

p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    letter-spacing: 0.5px;
    font-weight: 600;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
    color: #444;
  }
}


/* ------------------------------------------------------------------
   4.  LAYOUT & CONTAINERS
   ------------------------------------------------------------------ */

.section {
  padding: 0;
  margin-bottom: 24px;
}

.section:first-of-type {
  margin-top: 120px;
}

.section:last-of-type {
  margin-bottom: 24px;
}

.section-box {
  background: #fffffb;
  border-radius: 20px;
  padding: calc(40px * var(--scale-spacing));
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section-hero {
  padding: 0;
  margin-bottom: 0;
}

.section-box:has(.story-hero),
.section-box:has(.menu-hero) {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

footer .section-box {
  background: var(--brand-mint);
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .section {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .section:last-of-type {
    margin-bottom: 20px;
  }

  footer .section-box {
    padding-bottom: 130px;
  }
}


/* ------------------------------------------------------------------
   5.  NAVIGATION — TOP BAR
   ------------------------------------------------------------------ */

nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
  border-radius: 15px;
  background: transparent;
  transition: all 0.3s ease;
}

nav.scrolled {
  top: 20px;
  width: calc(100% - 20px);
  background: var(--brand-mint);
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding-left: 20px;
  padding-right: 20px;
}

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

.burger {
  position: absolute;
  left: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
}

.burger div {
  width: 28px;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
}

nav.scrolled .burger div {
  background-color: var(--brand-dark);
}

.nav-book-btn {
  position: absolute;
  right: 30px;
  background: var(--brand-dark);
  color: white;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  transition: all 0.3s ease;
}

nav.scrolled .nav-book-btn:hover {
  background: var(--brand-hover);
  color: var(--brand-dark);
}

.nav-book-btn:hover {
  background: white;
  color: var(--brand-dark);
}

nav.scrolled .nav-book-btn {
  background: var(--brand-dark);
  color: white;
  border: none;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  nav {
    width: 100%;
    height: 60px;
  }

  .burger {
    height: 20px;
    width: 20px;
  }

  .logo img {
    height: 90px;
  }

  .logo {
    position: absolute;
    left: 110px;
  }

  .nav-book-btn {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 8px;
    right: 15px;
  }
}


/* ------------------------------------------------------------------
   6.  NAVIGATION — SIDE PANEL (MOBILE MENU)
   ------------------------------------------------------------------ */

.side-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 320px;
  height: 100vh;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1050;
}

.side-nav.active {
  transform: translateX(320px);
}

.close-nav {
  align-self: flex-start;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--brand-dark);
  cursor: pointer;
  padding: 0;
  margin-bottom: 60px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.close-nav:hover {
  color: var(--brand-mint);
}

.side-nav a {
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 18px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}

.side-nav a:hover {
  color: var(--brand-mint);
}

.side-content {
  display: flex;
  flex-direction: column;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1040;
}

.nav-overlay.active {
  display: block;
}

.side-social {
  margin-top: auto;
  display: flex;
  gap: 25px;
  font-size: 50px;
}

.side-social a:hover {
  transform: translateY(-2px);
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .side-nav {
    width: 160px;
    padding: 30px;
  }

  .side-social {
    margin-bottom: 60px;
  }

  .side-nav a {
    font-size: 15px;
    font-weight: 700;
  }
}


/* ------------------------------------------------------------------
   7.  HERO SECTION
   ------------------------------------------------------------------ */

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* ------------------------------------------------------------------
   8.  MENU APP — SHELL & SELECTOR
   ------------------------------------------------------------------ */

.menu-app-container {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  height: auto !important;
  overflow: visible !important;
  position: relative;
}

.menu-top-bar {
  background-color: var(--brand-white);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  z-index: 10;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}

.control-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.selector-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

.selector-box label {
  font-weight: bold;
  margin-bottom: 10px;
}

#menu {
  margin-top: 24px;
}

#menu-selector {
  padding: 10px;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  max-width: 500px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  background: var(--brand-mint);
  color: var(--text);
}

#menu-display {
  position: relative;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .menu-top-bar {
    padding: 15px;
  }
}


/* ------------------------------------------------------------------
   9.  MENU APP — DIETARY TOGGLE SWITCHES
   ------------------------------------------------------------------ */

.dietary-toggles {
  display: flex;
  gap: 15px;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 5;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-toggle:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .slider-toggle {
  background-color: #4caf50;
}

.toggle-switch input:checked + .slider-toggle:before {
  transform: translateX(40px);
}

.toggle-switch.small .slider-toggle {
  font-size: 0;
  padding: 0;
}

.toggle-switch.small .slider-toggle:before {
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
}

.toggle-switch.small input:checked + .slider-toggle:before {
  transform: translateX(22px);
}

.toggle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: bold;
}

.switch {
  position: relative;
  overflow: visible;
  display: inline-block;
  width: 44px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

.switch,
.slider {
  -webkit-tap-highlight-color: transparent;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
  display: inline-block;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--accent);
}

input:checked + .slider:before {
  transform: translateX(22px);
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .dietary-toggles {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .toggle-item {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 44px;
    align-items: center;
    width: 100%;
    min-height: 20px;
  }

  .toggle-item > span {
    flex: 1;
    min-width: 0;
    text-align: left;
    word-break: break-word;
    padding-right: 10px;
    font-size: 0.85rem;
  }

  .toggle-item label {
    font-size: 0.9rem;
  }

  .switch {
    min-width: 44px;
    width: 44px;
    height: 22px;
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    overflow: visible;
  }

  input:checked + .slider:before {
    transform: translateX(18px);
  }

  .slider:before {
    width: 16px;
    height: 16px;
  }
}


/* ------------------------------------------------------------------
   10. MENU APP — ALLERGEN FILTER PANEL
   ------------------------------------------------------------------ */

.allergen-wrapper {
  margin-top: 20px;
  z-index: 20;
  background-color: #ffffff;
  border-top: 1px solid #ddd;
  position: relative;
  height: auto;
  min-height: fit-content;
}

.allergen-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.allergen-header .arrow {
  transition: transform 0.3s ease;
}

.allergen-controls {
  display: flex;
  align-items: center;
  gap: 40px;
}

.allergen-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: bold;
}

.allergen-wrapper.open .arrow {
  transform: rotate(180deg);
}

.allergen-content {
  position: relative;
  overflow: visible;
  z-index: 20;
  display: none;
  padding: 20px 0;
  background: #fafafa;
  text-align: center;
}

.allergen-wrapper.open .allergen-content {
  display: block;
}

.may-contain-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  max-width: 800px;
}

.may-text {
  flex: 0 0 auto;
  font-size: 0.9rem;
}

.may-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.filter-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto;
  max-width: 900px;
}

.filter-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: 140px;
  cursor: pointer;
  padding: 5px;
}

.filter-grid input {
  accent-color: var(--brand-dark);
  transform: scale(1.1);
}

.filter-hint {
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-clear:hover {
  background: var(--brand-dark);
  color: white;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .nutrition-toggle span {
    font-weight: bold;
    margin-right: 5px;
  }

  .filter-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    justify-items: start !important;
    padding: 0 10px;
    width: 100% !important;
  }

  .filter-grid label {
    width: 100% !important;
    min-width: auto !important;
    font-size: 0.85rem;
  }

  .allergen-content {
    background-color: #e8e7f1;
    border-radius: 8px;
  }

  .may-contain-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    margin: 10px;
  }

  .may-text {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: left;
    word-wrap: break-word;
  }

  .may-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 6px;
  }

  .may-actions > * {
    width: 60px;
    display: flex;
    justify-content: center;
  }

  .allergen-controls {
    gap: 15px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 6px;
  }
}


/* ------------------------------------------------------------------
   11. MENU APP — CATEGORY TABS
   ------------------------------------------------------------------ */

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tabs-scroll-container {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 10px 0;
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.left-arrow {
  left: 0px;
}

.right-arrow {
  right: 0px;
}

.category-tabs {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  padding: 14px 0;
  flex-grow: 1;
  scroll-behavior: smooth;
}

.menu-category-title {
  grid-column: 1 / -1;
  font-size: 1.4rem;
  margin: 18px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #999;
}

.tab-btn {
  background: none;
  border: none;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}

.tab-btn:hover {
  color: #000;
}

.tab-btn.active {
  color: #000;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: #3fb489;
}

/* ------------------------------------------------------------------
   12. MENU APP — MENU CARDS & GRID
   ------------------------------------------------------------------ */

.btn-clear-inline {
  background: #f3f3f3;
  border: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-clear-inline:hover {
  background: #e5e5e5;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.menu-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name price" "desc desc";
  gap: 0 15px;
  padding: 6px 0;
}

.menu-card.faded {
  opacity: 0.25;
  pointer-events: none;
}

.item-header {
  display: contents;
}

.item-name {
  font-family: var(--font-heading);
  grid-area: name;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
  font-size: small;
}

.item-price {
  grid-area: price;
  text-align: right;
  font-weight: bold;
  color: var(--brand-dark-green);
}

.item-desc {
  grid-area: desc;
  max-width: calc(100% - 80px);
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.3;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn-clear-inline {
    width: 60px;
    text-align: center;
    padding: 6px 0px;
  }

  .item-desc {
    max-width: 100%;
  }
}


/* Responsive — desktop grid (min-width: 1024px) */
@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ------------------------------------------------------------------
   13. MENU APP — YES/NO TOGGLE & NUTRITION INFO
   ------------------------------------------------------------------ */

.yesno-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.yesno-toggle input {
  display: none;
}

.yesno-toggle .track {
  position: relative;
  background: #ccc;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  font-size: 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  color: #333;
}

.yesno-toggle .label-yes {
  left: 8px;
  opacity: 0;
  transition: 0.2s;
}

.yesno-toggle .label-no {
  right: 8px;
  opacity: 1;
}

.yesno-toggle .thumb {
  position: absolute;
  height: 14px;
  width: 14px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}

.yesno-toggle input:checked + .track {
  background: #3fb489;
}

.yesno-toggle input:checked + .track .thumb {
  left: calc(100% - 17px);
}

.yesno-toggle input:checked + .track .label-yes {
  opacity: 1;
  color: white;
}

.yesno-toggle input:checked + .track .label-no {
  opacity: 0;
}

.nutrition-info {
  display: none;
  background: #f9f9f9;
  padding: 8px;
  font-size: 0.8rem;
  margin-top: 8px;
  border-left: 3px solid var(--accent);
}

.nutrition-info.visible {
  display: block;
}

.inline-nutrition::before {
  color: #aaa;
}

.inline-nutrition {
  font-size: 0.85rem;
  color: #777;
  margin-left: 8px;
  font-weight: normal;
}

/* ------------------------------------------------------------------
   14. MENU APP — INFO TOOLTIPS & POPUPS
   ------------------------------------------------------------------ */

.info-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid #777;
  border-radius: 50%;
  cursor: pointer;
  background: #fff;
  margin-left: 3px;
  color: #555;
  transition: all 0.2s;
}

.info-icon:hover {
  background: #eee;
  border-color: #333;
}

.info-icon:hover .info-label {
  visibility: visible;
  opacity: 1;
}

.info-icon:has(.info-popup[style*="display:block"]) .info-label {
  display: none;
}

.info-label {
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 4px 8px;
  font-size: 10px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  border-radius: 3px;
  z-index: 200;
  transition: opacity 0.2s;
}

.info-popup {
  display: none;
  position: absolute;
  left: 50%;
  padding: 8px;
  background: #f8f9fa;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  color: #444;
  z-index: 1000;
  white-space: normal;
  width: 130px;
  max-width: 90vw;
  transform: translateX(-50%);
  line-height: 1.3;
}

.info-popup.align-center {
  left: 50%;
  transform: translateX(-50%);
}

.info-popup.align-left {
  left: 0;
  transform: none;
}

.info-popup.align-right {
  right: 0;
  left: auto;
  transform: none;
}

.info-popup.align-left::after {
  left: 7px;
  transform: translateX(0) rotate(45deg);
}

.info-popup.align-right::after {
  left: auto;
  right: 7px;
  transform: translateX(0) rotate(45deg);
}

.info-popup.align-center::after {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.info-popup::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #f8f9fa;
  border: 1px solid #ccc;
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
  left: 50%;
}

.info-popup.top {
  bottom: 150%;
  top: auto;
}

.info-popup.bottom {
  top: 150%;
  bottom: auto;
}

.info-popup.top::after {
  bottom: -6px;
  border-top: none;
  border-left: none;
}

.info-popup.bottom::after {
  top: -6px;
  border-bottom: none;
  border-right: none;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .info-popup {
    white-space: normal;
    max-width: 90vw;
    font-size: 12px;
    line-height: 1.3;
    padding: 8px;
    font-weight: 600;
    color: #444;
    width: 130px;
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  }

  .info-popup.align-left::after {
    left: 5px;
    transform: translateX(0) rotate(45deg);
  }

  .info-popup.align-right::after {
    left: auto;
    right: 7px;
    transform: translateX(0) rotate(45deg);
  }

  .info-popup.align-center::after {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}


/* ------------------------------------------------------------------
   15. MENU APP — DIETARY TAGS & ICONS
   ------------------------------------------------------------------ */

.tag {
  font-size: 0.9rem;
  padding: 2px 4px;
  border-radius: 3px;
  color: white;
  margin-left: 5px;
}

.diet-icon {
  font-size: 13px;
}

.v-icon {
  color: #e67e22;
}

.vg-icon {
  color: #27ae60;
}

.gf-icon {
  color: #8e44ad;
}

/* ------------------------------------------------------------------
   16. MENU APP — SET MENU BANNER
   ------------------------------------------------------------------ */

.set-menu-banner {
  background: linear-gradient(120deg, #6b3728 0%, #9c5141 50%, #6b3728 100%);
  clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 15px, 100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0% calc(100% - 15px), 0% 15px);
  padding: 30px 40px;
  text-align: center;
  color: white;
  margin-bottom: 24px;
  grid-column: 1 / -1;
}

.set-menu-banner h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
  font-weight: 700;
}

.set-menu-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.set-price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.set-time {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}

.set-price {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-heading);
}

.set-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.35);
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .set-menu-banner {
    padding: 20px;
    clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 12px, 100% calc(100% - 12px), calc(100% - 12px) 100%, 12px 100%, 0% calc(100% - 12px), 0% 12px);
  }

  .set-menu-banner h2 {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }

  .set-price {
    font-size: 2.5rem;
  }

  .set-menu-prices {
    gap: 20px;
  }

  .set-divider {
    height: 60px;
  }
}


/* ------------------------------------------------------------------
   17. BOOKING SECTION
   ------------------------------------------------------------------ */

.booking-container {
  font-family: var(--font-body);
}

.booking-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.booking-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0 0 14px;
  color: var(--brand-dark);
}

.booking-info > p {
  color: #555;
  line-height: 1.6;
  margin: 0 0 26px;
}

.booking-info-hours {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.booking-info-hours .icon-svg {
  width: 20px;
  height: 20px;
  fill: var(--brand-dark);
  flex-shrink: 0;
  margin-top: 3px;
}

.booking-info-hours div {
  display: flex;
  flex-direction: column;
}

.booking-info-hours strong {
  color: var(--brand-dark);
  margin-bottom: 2px;
}

.booking-info-hours span {
  color: #555;
  font-size: 0.92rem;
  line-height: 1.5;
}

.reservation-card {
  max-width: 560px;
  margin: 0;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.reservation-header {
  background: #f7f7f7;
  border-bottom: 1px solid #e5e5e5;
  text-align: center;
  padding: 24px 20px;
}

.reservation-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.reservation-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a5fb4;
  font-weight: bold;
  text-decoration: underline;
}

.reservation-phone .icon-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.reservation-fields {
  padding: 24px 24px 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.reservation-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reservation-row label {
  width: 80px;
  flex-shrink: 0;
  font-weight: 600;
  color: #333;
}

.reservation-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #d5d5d5;
  border-radius: 8px;
  overflow: hidden;
}

.reservation-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--brand-dark);
}

.reservation-icon .icon-svg {
  width: 18px;
  height: 18px;
  fill: var(--brand-mint);
}

.reservation-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.reservation-chevron {
  padding-right: 14px;
  color: #888;
  pointer-events: none;
}

.reservation-continue {
  display: block;
  text-align: center;
  margin: 20px 24px 24px;
  padding: 14px;
  background: var(--brand-dark);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.reservation-continue:hover {
  background: var(--brand-hover);
  color: var(--brand-dark);
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reservation-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .reservation-row {
    flex-wrap: wrap;
  }

  .reservation-row label {
    width: 100%;
  }
}

/* ------------------------------------------------------------------
   18. NEWS SECTION & SLIDER
   ------------------------------------------------------------------ */

.sc-news-container {
  font-family: var(--font-body);
}

.sc-news-header {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.sc-news-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin: 0;
}

.sc-slider-outer {
  position: relative;
  width: 100%;
  container-type: inline-size;
}

.sc-slider-wrapper {
  overflow: hidden;
}

.sc-news-track {
  display: flex;
  gap: 25px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 10px 0;
}

.sc-news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 0 0 calc(25% - 18.75px);
  min-width: 140px;
}

.sc-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sc-card-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  margin-bottom: 15px;
}

.sc-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  line-height: 1.2;
  min-height: 2.4em;
}

.sc-card-date {
  font-size: 0.7rem;
  color: var(--brand-dark-green);
  font-weight: bold;
  margin-bottom: 8px;
}

.sc-card-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sc-btn-outline {
  background: var(--brand-white);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: auto;
  align-self: center;
}

.sc-btn-outline:hover {
  background: var(--brand-mint);
  color: white;
  border-color: var(--brand-dark-green);
}

.nav-arrow {
  position: absolute;
  /* fixed px fallback, then a cqw-based value for browsers that support
     container query units; the second "top" intentionally overrides
     the first where supported, do not remove either line */
  top: 110px;
  top: calc(8.333cqw + 3.75px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.prev {
  left: -20px;
}

.next {
  right: -20px;
}

.nav-arrow svg {
  width: 20px;
  fill: var(--text-main);
}

#newsTrack {
  align-items: stretch;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  .sc-news-card {
    flex: 0 0 calc(50% - 12.5px);
    min-width: 95px;
  }

  .nav-arrow {
    top: 75px;
    top: calc(16.667cqw + 5.833px);
  }

  .sc-btn-outline {
    align-self: center;
  }
}


/* ------------------------------------------------------------------
   19. NEWS MODAL
   ------------------------------------------------------------------ */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-box {
  position: relative;
  background: white;
  padding: 30px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  background: white;
  border: none;
  cursor: pointer;
  z-index: 10;
}

#modalContent {
  max-width: 100%;
}

#modalContent p {
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .modal-box {
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 100%;
    max-height: 85vh;
    margin: 0;
    padding: 25px 20px 30px;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
}


/* ------------------------------------------------------------------
   20. STICKY BOOKING BAR
   ------------------------------------------------------------------ */

.sticky-booking {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-dark);
  color: white;
  padding: 7px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 300px;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease;
}

.sticky-booking span {
  font-weight: bold;
}

.book-btn {
  background: var(--brand-mint);
  color: var(--brand-dark);
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 10px;
  font-weight: bold;
}

.book-btn:hover {
  background: var(--brand-hover);
  color: var(--brand-dark);
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .sticky-booking {
    position: fixed;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-dark);
    padding: 10px 20px;
    width: 90%;
    max-width: 270px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .sticky-booking {
    bottom: 55px;
    max-width: 270px;
    padding: 10px 20px;
    border-radius: 10px;
  }
}


/* ------------------------------------------------------------------
   21. SCROLL-TO-TOP BUTTON
   ------------------------------------------------------------------ */

#scrollTopBtn {
  position: fixed;
  bottom: 35px;
  right: 35px;
  width: 48px;
  height: 48px;
  background: var(--brand-dark);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  #scrollTopBtn {
    position: fixed;
    bottom: 110px;
    right: 35px;
    width: 30px;
    height: 30px;
  }
}


/* ------------------------------------------------------------------
   22. OUR STORY PAGE
   ------------------------------------------------------------------ */

.story-page {
  background: #f5f5f5;
}

.story-hero img {
  width: 100%;
  height: auto;
  display: none;
}

.story-hero {
  position: relative;
  height: 500px;
  background: url("hero-story.jpg") center 40% / cover no-repeat;
}

.menu-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-badge {
  position: absolute;
  bottom: 15px;
  right: 25px;
  background: #ff8d2f;
  color: white;
  padding: 14px 15px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge strong {
  display: block;
  font-size: 22px;
  font-weight: bold;
}

.hero-badge span {
  font-size: 12px;
}

.story-intro {
  font-weight: bold;
  font-size: 1.05rem;
  color: var(--brand-dark-green);
  margin-bottom: 20px;
}

.story-divider {
  width: 60px;
  height: 2px;
  background: var(--brand-dark-green);
  margin: 20px auto 25px;
}

.story-content {
  padding: 40px 20px 20px;
}

.story-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-container h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.story-container p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #555;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.story-container p:nth-child(2) {
  animation-delay: 0.2s;
}

.story-container p:nth-child(4) {
  animation-delay: 0.4s;
}

.story-container p:nth-child(5) {
  animation-delay: 0.6s;
}

.story-container p:nth-child(6) {
  animation-delay: 0.8s;
}

.story-ending {
  margin-top: 25px;
  font-style: italic;
  color: #333;
}

.story-features {
  padding: 20px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.feature .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fde9c9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature i {
  color: #f28c28;
  font-size: 18px;
}

.feature h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.feature p {
  font-size: 12px;
  color: #777;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  .story-container h1 {
    font-size: 1.5rem;
  }

  .story-container p {
    font-size: 0.9rem;
  }

  .story-hero {
    background: url("hero-story.jpg") center center / cover no-repeat;
    width: 100%;
    height: 400px;
    margin: 0;
    border-radius: 0;
    position: relative;
  }

  .menu-hero {
    width: 100%;
    height: 400px;
    margin: 0;
    border-radius: 0;
  }

  .page-content-container {
    padding-top: 80px;
  }

  .hero-wrapper:first-of-type {
    margin-top: 0;
  }

  .story-container {
    padding: 0;
    margin: 0;
  }

  .hero-badge {
    left: 10px;
    bottom: 10px;
    border-radius: 10px;
    width: 100px;
    text-align: center;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-badge strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
  }

  .hero-badge span {
    font-size: 10px;
    line-height: 1.2;
    font-weight: bold;
  }

  .story-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}


/* Responsive — small tablet (max-width: 900px) */
@media (max-width: 900px) {
  .story-features {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Responsive — small mobile (max-width: 500px) */
@media (max-width: 500px) {
  .story-features {
    grid-template-columns: 1fr;
  }
}


/* ------------------------------------------------------------------
   23. FOOTER
   ------------------------------------------------------------------ */

footer {
  background: transparent;
  color: var(--brand-dark);
  border-radius: 20px;
  padding: 0;
  margin-bottom: 24px;
}

.footer-container {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.contact-info {
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--brand-dark-green);
  font-size: 16px;
  opacity: 0.9;
  transition: 0.2s;
}

.contact-item i {
  font-size: 14px;
}

.contact-item:hover {
  text-decoration: underline;
}

.footer-left {
  font-size: 13px;
  margin-bottom: 15px;
  max-width: 420px;
}

.footer-left h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: bold;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.newsletter-grid input,
.newsletter-grid select {
  background: #fff;
  border: 1px solid rgba(18, 62, 48, 0.1);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--brand-dark);
  outline: none;
}

.newsletter-grid input::placeholder {
  color: #999;
}

.full-width {
  grid-column: span 2;
}

.birthday-label {
  grid-column: span 2;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 1px;
}

.btn-join {
  grid-column: span 1;
  background: var(--brand-dark);
  color: white;
  border: none;
  padding: 12px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 5px;
  transition: opacity 0.3s;
}

.newsletter-error {
  grid-column: 1 / -1;
  color: #b3261e;
  font-size: 12px;
  margin-top: 6px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-nav-columns {
  display: flex;
  gap: 25px;
  margin-bottom: 5px;
  justify-content: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  white-space: nowrap;
  display: block;
  padding: 8px 0;
}

.footer-col a:hover {
  text-decoration: underline;
  color: var(--brand-hover);
}

.brand-box {
  margin-top: 5px;
  text-align: center;
  align-items: center;
}

.brand-box h2 {
  font-size: 26px;
  letter-spacing: 4px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}

.social-icons {
  margin-top: 5px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background-color: var(--brand-mint);
  color: var(--brand-dark-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.social-icons a i {
  color: var(--brand-mint);
  font-size: 15px;
  line-height: 1;
}

.social-icons a:hover {
  transform: translateY(-2px);
  color: var(--brand-white);
  background: var(--brand-dark-green);
}

.footer-bottom {
  margin-top: 15px;
  text-align: center;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Responsive — tablet & mobile (max-width: 768px) */
@media (max-width: 768px) {
  footer {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-nav-columns {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    gap: 20px;
    transform: translateX(-10px);
  }

  .footer-col:first-child {
    text-align: left;
  }

  .footer-col:last-child {
    text-align: right;
  }

  .contact-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .brand-box {
    text-align: left;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .newsletter-grid > * {
    width: 100%;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .full-width {
    grid-column: span 1;
  }

  .newsletter-grid input,
  .newsletter-grid select {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }

  .birthday-label {
    grid-column: 1 / -1;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .btn-join {
    grid-column: 1 / -1;
  }
}

