/* =============================================================
   Ti Amo Picerija — profesionalni dizajn menija
   Paleta: burgundy / crveno / zlato / krem
   ============================================================= */

:root {
  --red-deep: #6e1020;
  --red: #b81837;
  --red-soft: #d93a52;
  --gold: #c9a24c;
  --gold-light: #ecd38a;
  --cream: #fbf5e7;
  --cream-warm: #f3e8cf;
  --ink: #1d140f;
  --ink-soft: #5a4538;
  --surface: rgba(251, 245, 231, 0.96);
  --surface-card: rgba(255, 251, 240, 0.98);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 14px;
}

* { box-sizing: border-box; }

*::selection { background: var(--gold); color: var(--ink); }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fdf8ea;
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('background.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: -2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(29, 20, 15, 0.78) 0%, rgba(110, 16, 32, 0.72) 60%, rgba(29, 20, 15, 0.82) 100%);
  z-index: -1;
}

.hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -1px;
  transform: translateX(-50%);
  width: 120%;
  height: 60px;
  background: radial-gradient(ellipse at center top, transparent 60%, var(--cream) 70%);
}

.hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: heroIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-logo {
  height: 110px;
  width: auto;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
  margin-bottom: 0.25rem;
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-light);
  margin: 0.25rem 0 0.5rem;
}
.hero-ornament span:not(.hero-star) {
  display: block;
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-ornament span:not(.hero-star):last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}
.hero-star { font-size: 1rem; opacity: 0.9; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.75rem);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #fff 0%, var(--gold-light) 75%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  margin: 0;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.hero-location {
  font-size: 0.82rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(253, 248, 234, 0.75);
  margin: 0.5rem 0 1.25rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(201, 162, 76, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 162, 76, 0.5);
}
.hero-cta-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red-deep);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 0.85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.45em;
  color: var(--gold-light);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.85; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* =============================================================
   CATEGORY NAV (sticky chips)
   ============================================================= */
.catnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, var(--cream) 85%, rgba(251, 245, 231, 0.8));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 76, 0.35);
  box-shadow: 0 2px 18px rgba(110, 16, 32, 0.06);
}
.catnav-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.catnav-inner::-webkit-scrollbar { display: none; }
.catnav a {
  flex: 0 0 auto;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-decoration: none;
  border: 1px solid rgba(201, 162, 76, 0.35);
  background: var(--surface-card);
  transition: all 0.22s ease;
  white-space: nowrap;
}
.catnav a:hover {
  color: var(--red-deep);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.catnav a.active {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fdf8ea;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(110, 16, 32, 0.25);
}

/* =============================================================
   MENU
   ============================================================= */
.menu {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.menu > section {
  margin-bottom: 2.5rem;
  background: var(--surface-card);
  border: 1px solid rgba(201, 162, 76, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  scroll-margin-top: 70px;
}
.menu > section.revealed {
  opacity: 1;
  transform: none;
}

/* Section title */
.section-title {
  position: relative;
  margin: 0;
  padding: 1.2rem 1.75rem 1.2rem 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #fdf8ea;
  background: linear-gradient(135deg, var(--red-deep), var(--red) 70%, #9d152d);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold));
}
.section-title::after {
  content: '✦';
  color: var(--gold-light);
  font-size: 0.75em;
  margin-left: auto;
  opacity: 0.85;
}

.section-meta {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.82em;
  color: var(--gold-light);
  opacity: 0.95;
}

/* Section body */
.section-body {
  padding: 1rem 1.75rem 1.5rem;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201, 162, 76, 0.035) 40px, rgba(201, 162, 76, 0.035) 41px),
    var(--surface-card);
}

/* Subcategory (Piletina, Juneće, Svinjetina) */
.subcat {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--red-deep);
  margin: 1.4rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px dashed rgba(201, 162, 76, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.subcat:first-child { margin-top: 0; }
.subcat::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75em;
  font-style: normal;
}

/* =============================================================
   MENU ITEM (classic dotted leader)
   ============================================================= */
.menu-item {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem 0.75rem 0.75rem;
  color: var(--ink);
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.menu-item[onclick] { cursor: pointer; }

.menu-item + .menu-item::before {
  content: '';
  position: absolute;
  left: 0.75rem; right: 0.75rem; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(29, 20, 15, 0.09), transparent);
}

.menu-item[onclick]:hover {
  background: linear-gradient(90deg, rgba(201, 162, 76, 0.14), transparent 75%);
  color: var(--red-deep);
  transform: translateX(3px);
}

.menu-item > span:first-child {
  font-weight: 500;
  position: relative;
  padding-right: 0.25rem;
}

/* Dotted leader between name and price */
.menu-item::after {
  content: '';
  flex: 1;
  height: 1em;
  margin: 0 0.35rem;
  border-bottom: 2px dotted rgba(29, 20, 15, 0.22);
  transform: translateY(-0.3em);
}

.menu-item .price {
  font-weight: 600;
  color: var(--red-deep);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* Split variant — for pizzas with Mala/Velika */
.menu-item--split { flex-direction: column; align-items: stretch; gap: 0.35rem; }
.menu-item--split::after { display: none; }
.menu-item--split > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.menu-item--split > div::after {
  content: '';
  flex: 1;
  height: 1em;
  margin: 0 0.35rem;
  order: 1;
  border-bottom: 2px dotted rgba(29, 20, 15, 0.22);
  transform: translateY(-0.3em);
}
.menu-item--split > div > span:first-child { order: 0; }
.menu-item--split > div > .prices { order: 2; }

.prices {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.prices > span {
  background: linear-gradient(135deg, var(--cream-warm), #f9e9b8);
  color: var(--ink);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(201, 162, 76, 0.5);
  box-shadow: 0 2px 4px rgba(201, 162, 76, 0.2);
  white-space: nowrap;
}

/* Info icon */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: #fdf8ea;
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 9px;
  font-weight: 700;
  margin-left: 6px;
  box-shadow: 0 2px 5px rgba(110, 16, 32, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-item:hover .info-icon {
  transform: scale(1.2) rotate(-12deg);
  box-shadow: 0 4px 10px rgba(110, 16, 32, 0.6);
}

/* =============================================================
   POPUP
   ============================================================= */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(29, 20, 15, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active { display: block; opacity: 1; }

.popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  width: 440px;
  max-width: calc(100vw - 2rem);
  transform: translate(-50%, -45%) scale(0.9);
  background: linear-gradient(180deg, var(--surface-card), #fff);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.popup.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--red-deep);
  margin: 0 0 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(201, 162, 76, 0.5);
}
.popup-ingredients { margin: 0 0 0.6rem; color: var(--ink); font-size: 0.95rem; }
.popup-allergens { margin: 0 0 1.25rem; font-style: italic; font-size: 0.85rem; color: var(--ink-soft); }

.popup-close {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  color: #fdf8ea;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(110, 16, 32, 0.3);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.popup-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(110, 16, 32, 0.4);
}

/* =============================================================
   COOKIE BANNER
   ============================================================= */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 540px;
  width: calc(100% - 2rem);
  background: linear-gradient(135deg, rgba(29, 20, 15, 0.96), rgba(55, 30, 22, 0.96));
  color: #f5e8d4;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 162, 76, 0.4);
  text-align: center;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.cookie-banner p { margin: 0 0 0.85rem; font-size: 0.92rem; line-height: 1.5; }
.cookie-buttons { display: flex; gap: 0.6rem; justify-content: center; }
.cookie-buttons button {
  cursor: pointer;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cookie-accept { background: linear-gradient(135deg, #16834a, #2fa45f); }
.cookie-reject { background: linear-gradient(135deg, var(--red-deep), var(--red)); }
.cookie-buttons button:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cookie-banner.show { display: block; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: linear-gradient(135deg, #1d140f, #341c15);
  color: #f5e8d4;
  padding: 3rem 1.25rem 2rem;
  border-top: 3px solid var(--gold);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: -3px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-inner {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.footer-sub { font-size: 0.9rem; opacity: 0.8; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.footer-link {
  color: #f5e8d4;
  text-decoration: none;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.22s ease, transform 0.22s ease;
}
.footer-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--red-deep);
  font-weight: 700;
  font-size: 0.78rem;
}
.footer-link:hover { color: var(--gold-light); transform: translateX(-2px); }
.footer-since {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  opacity: 0.65;
  margin-top: 1rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(201, 162, 76, 0.25);
}

/* =============================================================
   SCROLLBAR
   ============================================================= */
body::-webkit-scrollbar { width: 10px; }
body::-webkit-scrollbar-track { background: var(--cream-warm); }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  border-radius: 10px;
  border: 2px solid var(--cream-warm);
}
body::-webkit-scrollbar-thumb:hover { background: linear-gradient(135deg, var(--red), var(--gold)); }

/* =============================================================
   MOBILE
   ============================================================= */
@media (max-width: 640px) {
  .hero { min-height: 70vh; padding: 3rem 1rem 4.5rem; }
  .hero-logo { height: 85px; }
  .hero-location { letter-spacing: 0.25em; font-size: 0.75rem; }
  .hero-cta { padding: 0.75rem 1.35rem; font-size: 0.92rem; }
  .hero-scroll { letter-spacing: 0.35em; font-size: 0.78rem; }

  .catnav-inner { padding: 0.55rem 0.75rem; }
  .catnav a { padding: 0.4rem 0.85rem; font-size: 0.8rem; }

  .menu { padding: 1.75rem 0.75rem 2.5rem; }
  .menu > section { margin-bottom: 1.75rem; border-radius: 10px; }
  .section-title { padding: 1rem 1.1rem 1rem 1.35rem; font-size: 1.2rem; gap: 0.4rem; }
  .section-title::before { width: 4px; }
  .section-body { padding: 0.75rem 1rem 1.1rem; }
  .subcat { font-size: 1.05rem; margin-top: 1.1rem; }

  .menu-item { padding: 0.65rem 0.4rem; font-size: 0.92rem; }
  .menu-item::after { display: none; }
  .menu-item .price { font-size: 0.88rem; }
  .menu-item--split > div::after { display: none; }
  .prices { justify-content: flex-end; }
  .prices > span { font-size: 0.72rem; padding: 0.15rem 0.55rem; }

  .popup { padding: 1.4rem 1.25rem 1.25rem; border-radius: 12px; }
  .popup-title { font-size: 1.3rem; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .footer-brand { align-items: center; }
  .footer-contact { align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
  .hero-scroll { animation: none; }
  .menu > section { opacity: 1; transform: none; transition: none; }
  .menu-item, .menu-item[onclick]:hover,
  .info-icon, .popup, .overlay,
  .popup-close, .cookie-buttons button,
  .hero-cta, .catnav a, .footer-link {
    transition: none;
  }
}

/* =============================================================
   THEME SWITCHER (zajednički za sve teme)
   ============================================================= */
.theme-switcher {
  display: flex;
  gap: 0.3rem;
  padding: 0.3rem;
  margin: 0.85rem auto;
  width: max-content;
  max-width: calc(100% - 1.4rem);
  background: rgba(15, 13, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow-x: auto;
  scrollbar-width: none;
}
.theme-switcher::-webkit-scrollbar { display: none; }
.theme-btn { flex: 0 0 auto; }
.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.theme-btn:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.theme-btn.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}
.theme-swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .theme-switcher { margin: 0.55rem auto; padding: 0.22rem; gap: 0.18rem; }
  .theme-btn { padding: 0.32rem 0.55rem 0.32rem 0.32rem; font-size: 0.7rem; gap: 0.3rem; }
  .theme-swatch { width: 16px; height: 16px; }
}

/* =============================================================
   THEME: MODERNO — editorijalni minimalizam
   ============================================================= */
[data-theme="moderno"] body {
  background: #f7f3ec;
  color: #1a1a1a;
  font-family: 'Inter', system-ui, sans-serif;
}
[data-theme="moderno"] body::-webkit-scrollbar-track { background: #efe9dc; }
[data-theme="moderno"] body::-webkit-scrollbar-thumb { background: #b98a47; border: 2px solid #efe9dc; }
[data-theme="moderno"] *::selection { background: #b98a47; color: #fff; }

/* Hero: bela stranica, džinovski italic */
[data-theme="moderno"] .hero {
  background: #f7f3ec;
  min-height: 82vh;
  color: #1a1a1a;
  padding: 5rem 1.5rem 5rem;
}
[data-theme="moderno"] .hero-bg {
  filter: brightness(0.5) contrast(1.08) saturate(0.35);
}
[data-theme="moderno"] .hero::before {
  background:
    radial-gradient(ellipse 85% 60% at center, rgba(0, 0, 0, 0.55) 0%, transparent 75%),
    linear-gradient(180deg, rgba(20, 18, 15, 0.82) 0%, rgba(20, 18, 15, 0.7) 45%, rgba(20, 18, 15, 0.88) 100%);
}
[data-theme="moderno"] .hero::after {
  background: radial-gradient(ellipse at center top, transparent 55%, #f7f3ec 72%);
}
[data-theme="moderno"] .hero-title {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-weight: 700;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 2px 6px rgba(0, 0, 0, 0.55);
}
[data-theme="moderno"] .hero-sub {
  color: #f0e8d8;
  opacity: 0.9;
  border-top-color: rgba(240, 232, 216, 0.35);
}
[data-theme="moderno"] .hero-location { color: rgba(240, 232, 216, 0.75); }
[data-theme="moderno"] .hero-cta {
  color: #f7f3ec;
  border-color: #f7f3ec;
}
[data-theme="moderno"] .hero-cta:hover {
  background: #f7f3ec;
  color: #1a1a1a;
}
[data-theme="moderno"] .hero-scroll { color: #f0e8d8; opacity: 0.75; }
[data-theme="moderno"] .hero-logo { opacity: 1; filter: drop-shadow(0 6px 15px rgba(0,0,0,0.35)); }
[data-theme="moderno"] .hero-logo {
  height: 58px;
  filter: none;
  margin-bottom: 2rem;
  opacity: 0.92;
}
[data-theme="moderno"] .hero-ornament { display: none; }
[data-theme="moderno"] .hero-title {
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 8.5rem);
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
  text-shadow: none;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
[data-theme="moderno"] .hero-sub {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 0.8rem;
  color: #f5eedd;
  opacity: 0.95;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 238, 221, 0.35);
  max-width: 340px;
}
[data-theme="moderno"] .hero-location {
  color: #f5eedd;
  opacity: 0.8;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  margin-top: 0.5rem;
}
[data-theme="moderno"] .hero-cta {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  padding: 0.9rem 1.75rem;
  box-shadow: none;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-top: 1.5rem;
}
[data-theme="moderno"] .hero-cta:hover {
  background: #ffffff;
  color: #1a1a1a;
  transform: none;
  box-shadow: none;
}
[data-theme="moderno"] .hero-cta-icon {
  background: transparent;
  color: inherit;
  width: auto; height: auto;
}
[data-theme="moderno"] .hero-scroll {
  color: #f5eedd;
  opacity: 0.85;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
}

/* Catnav: tekst linkovi sa hairline */
[data-theme="moderno"] .catnav {
  background: #f7f3ec;
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
  box-shadow: none;
}
[data-theme="moderno"] .catnav a {
  background: transparent;
  border: none;
  border-radius: 0;
  color: #1a1a1a;
  opacity: 0.55;
  padding: 0.5rem 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0.4rem;
  position: relative;
}
[data-theme="moderno"] .catnav a:hover { opacity: 1; transform: none; }
[data-theme="moderno"] .catnav a.active {
  background: transparent;
  color: #1a1a1a;
  opacity: 1;
  box-shadow: none;
}
[data-theme="moderno"] .catnav a.active::after {
  content: '';
  position: absolute;
  left: 0.4rem; right: 0.4rem; bottom: 0;
  height: 2px;
  background: #b98a47;
}

/* Sekcije: ogoljeno, bez kartice */
[data-theme="moderno"] .menu > section {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 3.5rem;
  padding-top: 2.5rem;
}
[data-theme="moderno"] .menu > section:first-child { border-top: none; padding-top: 1rem; }

[data-theme="moderno"] .section-title {
  background: transparent;
  color: #1a1a1a;
  font-family: 'Fraunces', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  padding: 0 0 1.5rem;
  letter-spacing: -0.01em;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1;
}
[data-theme="moderno"] .section-title::before { display: none; }
[data-theme="moderno"] .section-title::after { display: none; }
[data-theme="moderno"] .section-meta {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #b98a47;
  opacity: 0.95;
}

[data-theme="moderno"] .section-body { background: transparent; padding: 0; }

[data-theme="moderno"] .subcat {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.72rem;
  color: #b98a47;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  border-bottom: none;
  padding-bottom: 0;
  margin: 2rem 0 0.5rem;
}
[data-theme="moderno"] .subcat::before { content: '— '; color: #b98a47; font-size: 1em; margin-right: 0.25rem; }

[data-theme="moderno"] .menu-item {
  padding: 0.95rem 0 0.95rem 0;
  border-radius: 0;
  font-size: 1rem;
}
[data-theme="moderno"] .menu-item + .menu-item::before {
  left: 0; right: 0;
  background: linear-gradient(to right, transparent, rgba(26, 26, 26, 0.14) 10%, rgba(26, 26, 26, 0.14) 90%, transparent);
}
[data-theme="moderno"] .menu-item[onclick]:hover {
  background: transparent;
  color: #b98a47;
  transform: none;
}
[data-theme="moderno"] .menu-item > span:first-child {
  font-weight: 500;
  letter-spacing: 0.01em;
}
[data-theme="moderno"] .menu-item::after { border-bottom: none; }
[data-theme="moderno"] .menu-item .price {
  color: #1a1a1a;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
[data-theme="moderno"] .menu-item--split > div::after { display: none; }
[data-theme="moderno"] .prices > span {
  background: transparent;
  border: 1px solid rgba(26, 26, 26, 0.2);
  color: #1a1a1a;
  box-shadow: none;
  font-weight: 400;
}

[data-theme="moderno"] .info-icon {
  background: transparent;
  color: #b98a47;
  border: 1px solid #b98a47;
  box-shadow: none;
  font-family: 'Inter', sans-serif;
  font-style: normal;
}

[data-theme="moderno"] .popup {
  background: #fff;
  border-top: 2px solid #b98a47;
  border-radius: 0;
}
[data-theme="moderno"] .popup-title {
  font-family: 'Fraunces', serif;
  color: #1a1a1a;
  border-bottom-style: solid;
  border-bottom-color: rgba(26, 26, 26, 0.12);
}
[data-theme="moderno"] .popup-close {
  background: #1a1a1a;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

[data-theme="moderno"] .site-footer {
  background: #f7f3ec;
  color: #1a1a1a;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
}
[data-theme="moderno"] .site-footer::before { display: none; }
[data-theme="moderno"] .footer-title {
  font-family: 'Fraunces', serif;
  color: #1a1a1a;
  font-style: italic;
}
[data-theme="moderno"] .footer-sub { color: #1a1a1a; opacity: 0.6; }
[data-theme="moderno"] .footer-link { color: #1a1a1a; }
[data-theme="moderno"] .footer-link span {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
[data-theme="moderno"] .footer-link:hover { color: #b98a47; }
[data-theme="moderno"] .footer-since { color: #1a1a1a; opacity: 0.5; border-top-color: rgba(26, 26, 26, 0.15); }

[data-theme="moderno"] .cookie-banner {
  background: #1a1a1a;
  border: none;
  border-radius: 0;
  color: #f7f3ec;
}
[data-theme="moderno"] .cookie-accept { background: #b98a47; border-radius: 0; }
[data-theme="moderno"] .cookie-reject { background: transparent; border: 1px solid #f7f3ec; border-radius: 0; }

/* =============================================================
   THEME: NOIR — dark fine dining
   ============================================================= */
[data-theme="noir"] body {
  background: #0f0d0a;
  color: #e9dfc9;
  font-family: 'Inter', system-ui, sans-serif;
}
[data-theme="noir"] body::-webkit-scrollbar-track { background: #1a1611; }
[data-theme="noir"] body::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #d4af37, #8a6f20); border: 2px solid #1a1611; }
[data-theme="noir"] *::selection { background: #d4af37; color: #0f0d0a; }

[data-theme="noir"] .hero {
  background: #0f0d0a;
  color: #e9dfc9;
  min-height: 82vh;
}
[data-theme="noir"] .hero-bg {
  background-image: url('background.jpg');
  filter: grayscale(0.25) brightness(0.7) contrast(1.05);
}
[data-theme="noir"] .hero::before {
  background: linear-gradient(135deg, rgba(15, 13, 10, 0.78) 0%, rgba(40, 30, 15, 0.72) 60%, rgba(15, 13, 10, 0.82) 100%);
}
[data-theme="noir"] .hero::after {
  background: radial-gradient(ellipse at center top, transparent 60%, #0f0d0a 72%);
}
[data-theme="noir"] .hero-logo {
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.45));
}
[data-theme="noir"] .hero-ornament { color: #d4af37; }
[data-theme="noir"] .hero-ornament span:not(.hero-star) {
  background: linear-gradient(to right, transparent, #d4af37);
}
[data-theme="noir"] .hero-ornament span:not(.hero-star):last-child {
  background: linear-gradient(to left, transparent, #d4af37);
}
[data-theme="noir"] .hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 6.5rem);
  background: linear-gradient(180deg, #f5e8b8 0%, #d4af37 60%, #8a6f20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.005em;
}
[data-theme="noir"] .hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #d4af37;
  letter-spacing: 0.14em;
}
[data-theme="noir"] .hero-location {
  color: rgba(233, 223, 201, 0.55);
}
[data-theme="noir"] .hero-cta {
  background: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  box-shadow: none;
}
[data-theme="noir"] .hero-cta:hover {
  background: #d4af37;
  color: #0f0d0a;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}
[data-theme="noir"] .hero-cta-icon {
  background: #d4af37;
  color: #0f0d0a;
}
[data-theme="noir"] .hero-cta:hover .hero-cta-icon {
  background: #0f0d0a;
  color: #d4af37;
}
[data-theme="noir"] .hero-scroll { color: #d4af37; opacity: 0.75; }

[data-theme="noir"] .catnav {
  background: rgba(15, 13, 10, 0.92);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}
[data-theme="noir"] .catnav a {
  background: rgba(26, 22, 17, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #e9dfc9;
}
[data-theme="noir"] .catnav a:hover { color: #d4af37; border-color: #d4af37; }
[data-theme="noir"] .catnav a.active {
  background: linear-gradient(135deg, #d4af37, #8a6f20);
  color: #0f0d0a;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.3);
}

[data-theme="noir"] .menu > section {
  background: #1a1611;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
[data-theme="noir"] .section-title {
  background: linear-gradient(135deg, #0f0d0a, #1f1812);
  color: #d4af37;
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-style: italic;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
[data-theme="noir"] .section-title::before {
  background: linear-gradient(to bottom, #f5e8b8, #d4af37);
}
[data-theme="noir"] .section-title::after { color: #d4af37; }
[data-theme="noir"] .section-meta { color: rgba(212, 175, 55, 0.85); }

[data-theme="noir"] .section-body {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 175, 55, 0.025) 40px, rgba(212, 175, 55, 0.025) 41px),
    #1a1611;
}

[data-theme="noir"] .subcat {
  color: #d4af37;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.35);
}
[data-theme="noir"] .subcat::before { color: #d4af37; }

[data-theme="noir"] .menu-item { color: #e9dfc9; }
[data-theme="noir"] .menu-item + .menu-item::before {
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.18), transparent);
}
[data-theme="noir"] .menu-item[onclick]:hover {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.12), transparent 75%);
  color: #d4af37;
}
[data-theme="noir"] .menu-item::after { border-bottom-color: rgba(212, 175, 55, 0.3); }
[data-theme="noir"] .menu-item--split > div::after { border-bottom-color: rgba(212, 175, 55, 0.3); }
[data-theme="noir"] .menu-item .price { color: #d4af37; }

[data-theme="noir"] .prices > span {
  background: linear-gradient(135deg, #1f1812, #2a2018);
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

[data-theme="noir"] .info-icon {
  background: linear-gradient(135deg, #d4af37, #8a6f20);
  color: #0f0d0a;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

[data-theme="noir"] .popup {
  background: #1a1611;
  color: #e9dfc9;
  border-top: 2px solid #d4af37;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}
[data-theme="noir"] .popup-title {
  font-family: 'Cormorant Garamond', serif;
  color: #d4af37;
  border-bottom-color: rgba(212, 175, 55, 0.35);
}
[data-theme="noir"] .popup-ingredients { color: #e9dfc9; }
[data-theme="noir"] .popup-allergens { color: rgba(233, 223, 201, 0.65); }
[data-theme="noir"] .popup-close {
  background: linear-gradient(135deg, #d4af37, #8a6f20);
  color: #0f0d0a;
}

[data-theme="noir"] .site-footer {
  background: linear-gradient(135deg, #05040a 0%, #0f0d0a 100%);
  color: #e9dfc9;
  border-top: 1px solid #d4af37;
}
[data-theme="noir"] .footer-title { color: #d4af37; }
[data-theme="noir"] .footer-link span {
  background: linear-gradient(135deg, #d4af37, #8a6f20);
  color: #0f0d0a;
}

[data-theme="noir"] .cookie-banner {
  background: linear-gradient(135deg, #1a1611, #0f0d0a);
  border-color: rgba(212, 175, 55, 0.35);
  color: #e9dfc9;
}
[data-theme="noir"] .cookie-accept { background: linear-gradient(135deg, #d4af37, #8a6f20); color: #0f0d0a; }
[data-theme="noir"] .cookie-reject { background: transparent; border: 1px solid rgba(233, 223, 201, 0.4); }

/* =============================================================
   THEME: TRATTORIA — pop italian (maslina + paradajz)
   ============================================================= */
[data-theme="trattoria"] body {
  background: #fff8e6;
  color: #2d2a24;
  font-family: 'Work Sans', system-ui, sans-serif;
}
[data-theme="trattoria"] body::-webkit-scrollbar-track { background: #f3ebcf; }
[data-theme="trattoria"] body::-webkit-scrollbar-thumb { background: #d94a3e; border: 2px solid #f3ebcf; }
[data-theme="trattoria"] *::selection { background: #d94a3e; color: #fff; }

[data-theme="trattoria"] .hero {
  background: #fff8e6;
  color: #2d2a24;
  min-height: 78vh;
  overflow: hidden;
}
[data-theme="trattoria"] .hero-bg {
  filter: brightness(0.5) saturate(0.5);
}
[data-theme="trattoria"] .hero::before {
  background:
    radial-gradient(ellipse 85% 60% at center, rgba(0, 0, 0, 0.5) 0%, transparent 75%),
    linear-gradient(180deg, rgba(25, 20, 16, 0.85) 0%, rgba(25, 20, 16, 0.72) 50%, rgba(25, 20, 16, 0.9) 100%);
}
[data-theme="trattoria"] .hero::after {
  background: radial-gradient(ellipse at center top, transparent 55%, #fff8e6 72%);
}
[data-theme="trattoria"] .hero-title {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 5px 5px 0 #d94a3e, 0 6px 30px rgba(0, 0, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.55);
}
[data-theme="trattoria"] .hero-sub { color: #fff8e6; }
[data-theme="trattoria"] .hero-location { color: #fff8e6; opacity: 0.85; }
[data-theme="trattoria"] .hero-scroll { color: #fff8e6; opacity: 0.9; }
[data-theme="trattoria"] .hero-logo { filter: none; }
[data-theme="trattoria"] .hero-ornament { color: #4a6a2f; }
[data-theme="trattoria"] .hero-ornament span:not(.hero-star) {
  background: linear-gradient(to right, transparent, #4a6a2f);
}
[data-theme="trattoria"] .hero-ornament span:not(.hero-star):last-child {
  background: linear-gradient(to left, transparent, #d94a3e);
}
[data-theme="trattoria"] .hero-star { color: #d94a3e; }
[data-theme="trattoria"] .hero-title {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}
[data-theme="trattoria"] .hero-sub {
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #fff8e6;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}
[data-theme="trattoria"] .hero-location {
  color: #fff8e6;
  opacity: 0.85;
}
[data-theme="trattoria"] .hero-cta {
  background: #d94a3e;
  color: #fff;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #fff8e6;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
[data-theme="trattoria"] .hero-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #fff8e6;
}
[data-theme="trattoria"] .hero-cta-icon { background: #fff; color: #d94a3e; }
[data-theme="trattoria"] .hero-scroll { color: #fff8e6; opacity: 0.9; }

[data-theme="trattoria"] .catnav {
  background: #fff8e6;
  border-bottom: 3px solid #4a6a2f;
}
[data-theme="trattoria"] .catnav a {
  background: #fff;
  border: 2px solid #4a6a2f;
  color: #2d2a24;
  font-weight: 600;
  border-radius: 6px;
}
[data-theme="trattoria"] .catnav a:hover {
  color: #d94a3e;
  border-color: #d94a3e;
}
[data-theme="trattoria"] .catnav a.active {
  background: #d94a3e;
  color: #fff;
  border-color: #4a6a2f;
  box-shadow: 3px 3px 0 #4a6a2f;
}

[data-theme="trattoria"] .menu > section {
  background: #fff;
  border: none;
  border-top: 8px solid #4a6a2f;
  border-radius: 6px;
  box-shadow: 6px 6px 0 rgba(74, 106, 47, 0.25);
}
[data-theme="trattoria"] .menu > section:nth-of-type(even) {
  border-top-color: #d94a3e;
  box-shadow: 6px 6px 0 rgba(217, 74, 62, 0.25);
}
[data-theme="trattoria"] .section-title {
  background: #4a6a2f;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: #fff8e6;
  border-radius: 0;
}
[data-theme="trattoria"] .menu > section:nth-of-type(even) .section-title { background: #d94a3e; }
[data-theme="trattoria"] .section-title::before { display: none; }
[data-theme="trattoria"] .section-title::after { color: #fff8e6; content: '🍕'; font-size: 0.9em; }
[data-theme="trattoria"] .menu > section:nth-of-type(even) .section-title::after { content: '🍝'; }
[data-theme="trattoria"] .section-meta {
  font-family: 'Work Sans', sans-serif;
  color: rgba(255, 248, 230, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72em;
  font-weight: 600;
  font-style: normal;
}

[data-theme="trattoria"] .section-body { background: #fff; }

[data-theme="trattoria"] .subcat {
  font-family: 'DM Serif Display', serif;
  color: #d94a3e;
  border-bottom: 2px dashed #4a6a2f;
}
[data-theme="trattoria"] .subcat::before { color: #4a6a2f; }

[data-theme="trattoria"] .menu-item { color: #2d2a24; }
[data-theme="trattoria"] .menu-item[onclick]:hover {
  background: #fff8e6;
  color: #d94a3e;
}
[data-theme="trattoria"] .menu-item > span:first-child { font-weight: 600; }
[data-theme="trattoria"] .menu-item + .menu-item::before {
  background: linear-gradient(to right, transparent, rgba(74, 106, 47, 0.25), transparent);
}
[data-theme="trattoria"] .menu-item::after { border-bottom-color: rgba(74, 106, 47, 0.35); }
[data-theme="trattoria"] .menu-item--split > div::after { border-bottom-color: rgba(74, 106, 47, 0.35); }
[data-theme="trattoria"] .menu-item .price {
  color: #d94a3e;
  font-weight: 800;
  font-size: 1.02em;
}

[data-theme="trattoria"] .prices > span {
  background: #d94a3e;
  color: #fff;
  border: 2px solid #4a6a2f;
  box-shadow: 2px 2px 0 #4a6a2f;
  font-weight: 700;
}

[data-theme="trattoria"] .info-icon {
  background: #4a6a2f;
  color: #fff8e6;
  font-family: 'Work Sans', sans-serif;
  font-style: normal;
  box-shadow: 1px 1px 0 #d94a3e;
}

[data-theme="trattoria"] .popup {
  background: #fff;
  border-top: 6px solid #d94a3e;
  border-radius: 6px;
  box-shadow: 8px 8px 0 rgba(74, 106, 47, 0.3);
}
[data-theme="trattoria"] .popup-title {
  font-family: 'DM Serif Display', serif;
  color: #4a6a2f;
  border-bottom-color: rgba(74, 106, 47, 0.3);
}
[data-theme="trattoria"] .popup-close {
  background: #d94a3e;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #4a6a2f;
  text-transform: uppercase;
}

[data-theme="trattoria"] .site-footer {
  background: #4a6a2f;
  color: #fff8e6;
  border-top: 4px solid #d94a3e;
}
[data-theme="trattoria"] .site-footer::before { background: linear-gradient(90deg, transparent, #d94a3e, transparent); }
[data-theme="trattoria"] .footer-title {
  font-family: 'DM Serif Display', serif;
  color: #fff8e6;
}
[data-theme="trattoria"] .footer-link span { background: #d94a3e; color: #fff8e6; }
[data-theme="trattoria"] .footer-link:hover { color: #fff; }

[data-theme="trattoria"] .cookie-banner {
  background: #4a6a2f;
  color: #fff8e6;
  border: 2px solid #d94a3e;
  border-radius: 6px;
}
[data-theme="trattoria"] .cookie-accept { background: #d94a3e; border-radius: 6px; box-shadow: 2px 2px 0 rgba(0,0,0,0.2); }
[data-theme="trattoria"] .cookie-reject { background: transparent; border: 2px solid #fff8e6; border-radius: 6px; }

/* Mobile overrides za nove teme */
@media (max-width: 640px) {
  [data-theme="moderno"] .hero { min-height: 70vh; padding: 3.5rem 1rem 3.5rem; }
  [data-theme="noir"] .hero { min-height: 70vh; }
  [data-theme="trattoria"] .hero-title { text-shadow: 2px 2px 0 #4a6a2f; }
  [data-theme="trattoria"] .menu > section { box-shadow: 4px 4px 0 rgba(74, 106, 47, 0.25); }
  [data-theme="trattoria"] .menu > section:nth-of-type(even) { box-shadow: 4px 4px 0 rgba(217, 74, 62, 0.25); }
}
