/* ===== CSS VARIJABLE ===== */
:root {
  --bg:           #1A1A1A;
  --bg-card:      #222222;
  --bg-elevated:  #2A2A2A;
  --accent:       #F37021;
  --accent-dark:  #c85a10;
  --accent-glow:  rgba(243,112,33,0.25);
  --text:         #F0EDE8;
  --text-muted:   #9A9490;
  --border:       rgba(243,112,33,0.18);
  --font-title:   'Stick', sans-serif;
  --font-body:    'Noto Sans', sans-serif;
  --radius:       12px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ===== TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='%231A1A1A'/%3E%3Crect width='1' height='1' fill='%23222' opacity='.6'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(26,26,26,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
header nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 101;
}
@media (max-width: 960px) {
  .nav-order-wrap { display: none; }
  .lang-switch-desktop { display: none; }
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 101;
}
.nav-logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul li a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
nav ul li a:hover { color: var(--accent); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* ── Naruči dropdown ── */
.nav-order-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 102;
}
.nav-order-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(243,112,33,0.35);
}
.nav-order-btn:hover { background: var(--accent-dark); }
.nav-order-btn svg {
  transition: transform var(--transition);
  flex-shrink: 0;
}
.nav-order-wrap.open .nav-order-btn svg { transform: rotate(180deg); }

.nav-order-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  flex-direction: column;
  gap: 0.25rem;
}
.nav-order-wrap.open .nav-order-dropdown { display: flex; }

.nav-order-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.nav-order-item:hover { background: rgba(243,112,33,0.1); }

.nav-order-item .order-phone-icon {
  width: 26px; height: 26px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.nav-order-item .order-label {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.nav-order-item .order-label small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 101;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 77px; left: 0; right: 0;
  background: rgba(20,20,20,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 0.5rem 2rem 1.5rem;
  flex-direction: column;
}
.nav-drawer.open { display: flex; }
.nav-drawer li { list-style: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-drawer li:last-child { border-bottom: none; }
.nav-drawer li a:not(.lang-switch a) {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-drawer li a:not(.lang-switch a):hover { color: var(--accent); }
.nav-drawer .nav-cta {
  margin-top: 1rem;
  text-align: center;
  border-radius: 50px;
  padding: 0.75rem 1rem;
  display: block;
}
.drawer-order-wrap {
  display: flex;
  justify-content: flex-start;
  padding: 0.75rem 0;
}
.drawer-lang-wrap {
  display: flex;
  justify-content: center;
  padding: 1rem 0 0.5rem;
}

/* Naruči gumb u draweru – identičan stilu desktop gumba */
.drawer-order-btn {
  background: var(--accent);
  color: #fff !important;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(243,112,33,0.35);
  transition: background var(--transition), box-shadow var(--transition);
  width: auto;
}
.drawer-order-btn:hover { background: var(--accent-dark); box-shadow: 0 6px 20px rgba(243,112,33,0.45); }
.drawer-order-btn svg { flex-shrink: 0; transition: transform var(--transition); }
.drawer-order-btn:hover svg { transform: translateX(3px); }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
  flex-shrink: 0;
}
.lang-switch a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  line-height: 1;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active {
  background: var(--accent);
  color: #fff;
}
.drawer-lang {
  display: flex;
  padding: 1rem 0 0.25rem;
}
.lang-switch-desktop { display: flex; }
@media (max-width: 960px) { .lang-switch-desktop { display: none; } }
.bottom-sheet-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1100;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.bottom-sheet-backdrop.active { display: block; }

.bottom-sheet {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1101;
  background: #1e1e1e;
  border-top: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
  padding: 0 0 calc(env(safe-area-inset-bottom, 0px) + 80px);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.bottom-sheet.active { transform: translateY(0); }

.bottom-sheet-handle {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 12px auto 0;
}
.bottom-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bottom-sheet-title {
  font-family: var(--font-title);
  font-size: 1.3rem;
  color: var(--text);
}
.bottom-sheet-close {
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition);
}
.bottom-sheet-close:hover { background: rgba(255,255,255,0.15); }

.bottom-sheet-items { padding: 0.5rem 1rem 0.5rem; }

.bottom-sheet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.75rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bottom-sheet-item:last-child { border-bottom: none; }
.bottom-sheet-item:hover,
.bottom-sheet-item:active { background: rgba(243,112,33,0.08); }

.bs-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.bs-icon--phone { background: var(--accent); }
.bs-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.bs-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-label-main {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}
.bs-label-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.bs-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ===== FAB ===== */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1.3;
}
.fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: none;
}
.fab-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.fab-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--bg);
}
.fab-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74,222,128,0.4);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.95) 100%),
    url('images/hero.jpg') center/cover no-repeat;
}
.hero-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(243,112,33,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-badge {
  display: inline-block;
  background: rgba(30,30,30,0.75);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  color: var(--text);
  margin: 0 auto 2.5rem;
  max-width: 580px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 4px 24px rgba(243,112,33,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(243,112,33,0.5);
  background: var(--accent-dark);
}
.delivery-btns {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-delivery {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.65rem 1.2rem;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition);
}
.btn-delivery:hover {
  background: rgba(243,112,33,0.12);
  border-color: var(--accent);
}
.btn-delivery img {
  width: 22px; height: 22px;
  object-fit: contain;
  border-radius: 4px;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ===== SEKCIJE – OPĆE ===== */
section { position: relative; z-index: 1; }
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ===== WOK BUILDER ===== */
#wok-steps { background: linear-gradient(180deg, var(--bg) 0%, #1e1e1e 100%); }

.wok-builder {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Jedan korak ── */
.wb-step {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  margin-bottom: 1rem;
  transition: box-shadow 0.3s ease;
}
.wb-step.is-active {
  box-shadow: 0 0 0 1px rgba(243,112,33,0.3), 0 8px 32px rgba(0,0,0,0.4);
}
.wb-step.is-done {
  border-color: rgba(243,112,33,0.2);
}

/* Header koraka – klikabilni sažetak */
.wb-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
.wb-step-header:hover { background: rgba(255,255,255,0.03); }

.wb-step-num {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}
.wb-step.is-active .wb-step-num,
.wb-step.is-done .wb-step-num { opacity: 1; }

.wb-step-label {
  flex: 1;
}
.wb-step-label-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.wb-step.is-active .wb-step-label-title { color: var(--accent); }

.wb-step-label-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.1rem;
  min-height: 1.4em;
}
.wb-step-label-value.placeholder { color: var(--text-muted); font-weight: 400; }

.wb-step-chevron {
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.wb-step.is-active .wb-step-chevron { transform: rotate(180deg); color: var(--accent); }

/* Tijelo koraka */
.wb-step-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.wb-step.is-active .wb-step-body { display: block; }

/* ── Protein grid (slike) ── */
.wb-protein-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.wb-protein-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.wb-protein-card:hover { transform: translateY(-2px); }
.wb-protein-card.selected { border-color: var(--accent); }

.wb-protein-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.wb-protein-card:hover img { transform: scale(1.05); }

.wb-protein-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 0.6rem 0.6rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  text-align: center;
}
.wb-protein-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  display: block;
}
.wb-protein-card-price {
  font-family: var(--font-title);
  font-size: 0.85rem;
  color: var(--accent);
}

.wb-protein-card .wb-check {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
}
.wb-protein-card.selected .wb-check { display: flex; }

/* ── Opcijski grid (baza, umak, dodaci) ── */
.wb-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.wb-option {
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  user-select: none;
}
.wb-option:hover { border-color: rgba(243,112,33,0.4); }
.wb-option.selected {
  background: rgba(243,112,33,0.15);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Navigacija ── */
.wb-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.wb-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.wb-nav-btn:hover { background: var(--bg-card); border-color: rgba(243,112,33,0.3); }
.wb-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.wb-nav-btn--next {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  margin-left: auto;
}
.wb-nav-btn--next:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.wb-nav-info {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* ── Sažetak ── */
.wb-summary {
  display: none;
  background: var(--bg-card);
  border: 1px solid rgba(243,112,33,0.25);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1rem;
  animation: fadeIn 0.4s ease;
}
.wb-summary.visible { display: block; }

.wb-summary-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}
.wb-summary-title span { color: var(--accent); }

.wb-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.wb-summary-row {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
}
.wb-summary-row-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 5rem;
  flex-shrink: 0;
}
.wb-summary-row-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.wb-summary-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.wb-summary-reset {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wb-summary-reset:hover { border-color: var(--accent); color: var(--text); }

@media (max-width: 600px) {
  .wb-protein-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .wb-protein-card-name { font-size: 0.7rem; }
  .wb-protein-card-price { font-size: 0.75rem; }
  .wb-step-header { padding: 0.85rem 1rem; }
  .wb-step-body { padding: 0 1rem 1.25rem; }
}

@media (min-width: 601px) {
  .wb-protein-grid { grid-template-columns: repeat(6, 1fr); }
  .wb-protein-card { aspect-ratio: 2/3; }
}

/* ===== SIGNATURE HIGHLIGHTS ===== */
#highlights { background: var(--bg); }

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

/* Premium kartica s narančastim sjajem */
.highlight-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow:
    0 0 0 1px rgba(243,112,33,0.22),
    0 8px 40px rgba(243,112,33,0.14),
    0 2px 8px rgba(0,0,0,0.5);
}
/* Gradijentni rub – premium naglasak */
.highlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(243,112,33,0.65) 0%,
    transparent 45%,
    rgba(243,112,33,0.35) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(243,112,33,0.42),
    0 24px 64px rgba(243,112,33,0.24),
    0 4px 16px rgba(0,0,0,0.6);
}
.highlight-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.highlight-card:hover .highlight-card-bg { transform: scale(1.06); }

.card-tartufo .highlight-card-bg {
  background-image:
    linear-gradient(160deg, rgba(26,26,26,0.05) 0%, rgba(26,26,26,0.92) 72%),
    url('images/food/tartufo.jpeg');
}
.card-croccantino .highlight-card-bg {
  background-image:
    linear-gradient(160deg, rgba(26,26,26,0.05) 0%, rgba(26,26,26,0.92) 72%),
    url('images/food/sladoled1.jpeg');
}

.highlight-card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}
.highlight-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.highlight-card h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.highlight-card p {
  color: rgba(240,237,232,0.78);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.highlight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.price-tag {
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--accent);
}
/* Croccantino link gumb */
.btn-croccantino {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(243,112,33,0.12);
  border: 1px solid rgba(243,112,33,0.4);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn-croccantino:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-croccantino svg { transition: transform var(--transition); }
.btn-croccantino:hover svg { transform: translateX(3px); }

/* ===== MENI ===== */
#meni { background: linear-gradient(180deg, #1e1e1e 0%, var(--bg) 100%); }

.meni-header { text-align: center; }
.meni-header .section-lead { margin-left: auto; margin-right: auto; }

.meni-category { margin-bottom: 4rem; }

.meni-cat-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-title);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 2rem;
  white-space: nowrap;
}
.meni-cat-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.meni-cat-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  vertical-align: middle;
}

.meni-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.meni-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

img.lb-trigger { cursor: pointer; }

.meni-card {
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.meni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(243,112,33,0.2);
  border-color: rgba(243,112,33,0.2);
}

.meni-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-elevated);
}
.meni-card--small .meni-card-img { aspect-ratio: 4/3; }

.meni-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.meni-card:hover .meni-card-img img { transform: scale(1.06); }

/* Placeholder kad nema slike */
.meni-card-img img[src=""],
.meni-card-img img:not([src]) {
  display: none;
}

.meni-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
}
.meni-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.meni-card-top h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.meni-price {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.meni-card-body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== MENI VIDLJIVOST ===== */
.meni-mobile { display: none; }
.meni-desktop { display: block; }

@media (max-width: 600px) {
  .meni-desktop { display: none; }
  .meni-mobile  { display: block; }
}

/* ===== MENI MOBILE – CAROUSEL ===== */
.mob-cat { margin-bottom: 3rem; }

/* Carousel track */
.mob-carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 10px;
  padding: 0.5rem 0 1rem;
  padding-left: 8%;
  padding-right: 8%;
}
.mob-carousel::-webkit-scrollbar { display: none; }

/* Svaka kartica – povećana ~25% */
.mob-card {
  flex: 0 0 84%;
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition:
    transform 0.35s cubic-bezier(0.4,0,0.2,1),
    filter 0.35s cubic-bezier(0.4,0,0.2,1),
    opacity 0.35s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.45) blur(1.5px);
  opacity: 0.6;
  transform: scale(0.91);
  will-change: transform, filter, opacity;
  cursor: pointer;
}
.mob-card.is-active {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

/* Slika */
.mob-img-wrap { width: 100%; overflow: hidden; }
.mob-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* OVERLAY stil (glavna jela) */
.mob-card--overlay {
  position: relative;
}
.mob-card--overlay .mob-img-wrap {
  aspect-ratio: 3/4;
}
.mob-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}
.mob-overlay-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 0.15rem;
}
.mob-overlay-price {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--accent);
}

/* KLASIČAN stil (za prigristi, dodaci) */
.mob-card:not(.mob-card--overlay) .mob-img-wrap {
  aspect-ratio: 4/3;
}
.mob-card-body {
  padding: 0.75rem 1rem 0.9rem;
}
.mob-card-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.mob-card-price {
  font-family: var(--font-title);
  font-size: 1rem;
  color: var(--accent);
}

/* ===== STUDENT ZONE ===== */
#student-zone {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.student-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.student-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.student-circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.student-circle::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: var(--bg-card);
}
.student-circle-text {
  position: relative;
  z-index: 1;
  text-align: center;
}
.student-circle-text .pct {
  font-family: var(--font-title);
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
}
.student-circle-text .pct-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.student-content h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.student-content p { color: var(--text-muted); margin-bottom: 1.5rem; }
.student-conds {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.student-conds li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.student-conds li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  text-align: center;
}
.footer-brand .logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.footer-social a:hover {
  background: rgba(243,112,33,0.1);
  border-color: var(--accent);
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.hours-table { width: auto; min-width: 160px; border-collapse: collapse; margin: 0 auto; }
.hours-table td {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 0.25rem 0.4rem;
  vertical-align: top;
}
.hours-table td:last-child { text-align: right; }
.hours-table .open { color: #4ade80; }

.map-placeholder {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.map-placeholder svg { opacity: 0.4; }

.footer-address {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  font-style: normal;
}
.footer-address strong { color: var(--text); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}
.footer-bottom a { color: var(--accent); transition: opacity var(--transition); }
.footer-bottom a:hover { opacity: 0.8; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lightbox-overlay.active { display: flex; }

/* Desktop: single image */
.lightbox-track { display: none; }

.lightbox-img {
  max-width: 88vw;
  max-height: 62vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  animation: lb-in 0.25s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 42px; height: 42px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(243,112,33,0.5);
  transition: background var(--transition), transform var(--transition);
  z-index: 2001;
}
.lightbox-close:hover { background: var(--accent-dark); transform: scale(1.1); }

.lightbox-info {
  text-align: center;
  max-width: min(88vw, 560px);
  animation: lb-in 0.3s cubic-bezier(0.4,0,0.2,1);
}
.lightbox-info-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.lightbox-info-price {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.lightbox-info-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mobile lightbox – fullscreen swipe */
@media (max-width: 600px) {
  .lightbox-overlay {
    padding: 0;
    gap: 0;
    justify-content: flex-start;
  }
  /* Sakrij desktop elemente */
  .lightbox-overlay > .lightbox-img,
  .lightbox-overlay > .lightbox-info { display: none; }

  /* Swipe track zauzima cijeli ekran */
  .lightbox-track {
    display: flex;
    width: 100%;
    flex: 1;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: stretch;
  }
  .lightbox-track::-webkit-scrollbar { display: none; }

  .lightbox-slide {
    flex: 0 0 100vw;
    width: 100vw;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 1.25rem 1rem;
  }

  .lightbox-slide img {
    max-width: 92vw;
    max-height: 50vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 16px 48px rgba(0,0,0,0.7);
    flex-shrink: 0;
  }

  .lightbox-slide-info {
    text-align: center;
    padding: 0 0.5rem;
    width: 100%;
  }
  .lb-s-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
  }
  .lb-s-price {
    font-family: var(--font-title);
    font-size: 1.15rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
  }
  .lb-s-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* Dot indikatori */
  .lightbox-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    padding: 0.75rem 0 1.5rem;
    flex-shrink: 0;
  }
  .lightbox-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }
  .lightbox-dot.active {
    background: var(--accent);
    transform: scale(1.4);
  }
}

/* ===== DESKTOP ORDER POPUP ===== */
.order-popup-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1200;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.order-popup-backdrop.active { display: flex; }

.order-popup {
  background: #1e1e1e;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  animation: lb-in 0.25s cubic-bezier(0.4,0,0.2,1);
}

.order-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.order-popup-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text);
}
.order-popup-close {
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition);
}
.order-popup-close:hover { background: rgba(255,255,255,0.15); }

.order-popup-items { display: flex; flex-direction: column; gap: 0.5rem; }

.order-popup-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  transition: background var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}
.order-popup-item:hover { background: rgba(243,112,33,0.08); border-color: rgba(243,112,33,0.2); }

.order-popup-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.order-popup-icon--phone { background: var(--accent); }
.order-popup-icon img { width: 100%; height: 100%; object-fit: cover; }

.order-popup-label { flex: 1; }
.order-popup-label-main { font-weight: 700; font-size: 0.95rem; display: block; }
.order-popup-label-sub  { font-size: 0.75rem; color: var(--text-muted); }

.order-popup-arrow { color: var(--text-muted); }

/* Naruči odmah – platform gumbi */
.wb-order-desktop { display: inline-block; }
.wb-order-mobile  { display: none; }
@media (max-width: 960px) {
  .wb-order-desktop { display: none; }
  .wb-order-mobile  { display: inline-block; }
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ===== UTILITY ===== */
.text-accent { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav ul { display: none; }
  .hamburger { display: flex; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-card { min-height: 400px; }

  .student-inner { grid-template-columns: 1fr; }
  .student-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 600px) {
  .fab {
    bottom: 1.25rem;
    right: 1.25rem;
    left: auto;
    border-radius: 50px;
    border-top: none;
    justify-content: center;
    padding: 0.9rem 1.4rem;
    font-size: 0.8rem;
    box-shadow: none;
  }
  body { padding-bottom: 0; }

  .hero { padding-top: 5rem; padding-bottom: 3rem; min-height: 95vh; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .btn-primary { text-align: center; }
  .delivery-btns { justify-content: center; }
  .hero-scroll { display: flex; }

  .highlight-card { min-height: 340px; }
  .highlight-card h3 { font-size: 1.6rem; }
  .highlight-card-footer { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  .section-inner { padding: 3.5rem 1.25rem; }

  .student-visual {
    display: flex !important;
    order: 2;
    margin-top: 2.5rem;
    justify-content: center;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.25rem; }
}
