/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* === PRIMARY COLORS === */
  --espresso:       #1a5e7e;   /* ana blue-teal */
  --espresso-light: #2C789B;   /* hover */
  --espresso-dark:  #12475E;   /* active */
  --espresso-rgb:   26, 94, 126;
  --espresso-dark-rgb: 18, 71, 94;

  --gold:           #7d674c;   /* muted gold */
  --gold-dark:      #6A5740;   /* hover */
  --gold-light:     #F1ECE4;   /* soft gold bg */
  --gold-rgb:       125, 103, 76;

  /* === BACKGROUNDS === */
  --bg-body:    #F5F7F9;
  --bg-surface: #FFFFFF;
  --bg-muted:   #E9EEF3;   /* hafif blue-gray */
  --bg-subtle:  #F2F5F8;

  /* === BORDERS === */
  --border:        #D2DBE5;
  --border-subtle: #E6EDF4;

  /* === TEXT COLORS === */
  --text:       #0F1C26;   /* koyu blue-gray */
  --text-sub:   #4A5F73;
  --text-muted: #7A8FA3;

  /* === RADII === */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* === BUTTON HEIGHTS === */
  --btn-h:    44px;
  --btn-h-sm: 36px;
  --btn-h-lg: 52px;

  /* === NAV === */
  --nav-h:    96px;
  --nav-h-sm: 62px;

  /* === SHADOWS === */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow:    0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);

  /* === BOOTSTRAP OVERRIDES === */
  --bs-primary:          var(--espresso);
  --bs-primary-rgb:      26,94,126;
  --bs-body-bg:          var(--bg-body);
  --bs-body-color:       var(--text);
  --bs-border-color:     var(--border);
  --bs-border-radius:    var(--radius);
  --bs-border-radius-sm: var(--radius-sm);
  --bs-border-radius-lg: var(--radius-lg);
}
/* ============================================================
   Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden !important; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--bg-body);
  color: var(--text);
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
}

main { flex: 1 0 auto; padding-top: var(--nav-h); }
.main-no-pt { padding-top: 0; }

.font-heading { font-family: 'Cinzel', serif; }
img { max-width: 100%; height: auto; }
a { color: var(--espresso); transition: color var(--transition); }
a:hover { color: var(--espresso-light); }

/* ============================================================
   Skeleton
   ============================================================ */
@keyframes skeleton-pulse {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.skeleton {
  background: linear-gradient(90deg,
    var(--bg-muted) 25%, var(--border-subtle) 50%, var(--bg-muted) 75%);
  background-size: 400% 100%;
  animation: skeleton-pulse 1.6s ease infinite;
  border-radius: var(--radius-sm);
  color: transparent !important;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Typography
   ============================================================ */
h1,h2,h3,h4,h5,h6 { color: var(--text); font-weight: 500; line-height: 1.25; }
.text-muted    { color: var(--text-muted) !important; }
.text-sub      { color: var(--text-sub); }
.text-gold     { color: var(--gold); }
.text-espresso { color: var(--espresso); }

/* ============================================================
   Buttons — consistent height, thin borders, uniform radius
   ============================================================ */
.btn {
  height: var(--btn-h);
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .01em;
  border-width: 1.5px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-sm  { height: var(--btn-h-sm); padding: 0 14px; font-size: .825rem; }
.btn-lg  { height: var(--btn-h-lg); padding: 0 28px; font-size: 1rem; }
.btn-xs  { height: 28px; padding: 0 10px; font-size: .75rem; }

.btn-primary            { background: var(--espresso); border-color: var(--espresso); color: #fff; }
.btn-primary:hover      { background: var(--espresso-light); border-color: var(--espresso-light); color: #fff; }
.btn-outline-primary    { border-color: var(--espresso); color: var(--espresso); background: transparent; }
.btn-outline-primary:hover { background: var(--espresso); border-color: var(--espresso); color: #fff; }
.btn-gold               { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover         { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }
.btn-ghost              { background: transparent; border-color: transparent; color: var(--text-sub); }
.btn-ghost:hover        { background: var(--bg-muted); color: var(--text); border-color: transparent; }
.btn-white              { background: #fff; border-color: #fff; color: var(--espresso); }
.btn-white:hover        { background: var(--bg-muted); color: var(--espresso); }
.btn-outline-white      { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-icon { width: var(--btn-h); padding: 0; border-radius: 50%; }
.btn-icon.btn-sm { width: var(--btn-h-sm); }

/* ============================================================
   Forms
   ============================================================ */
.form-control, .form-select {
  border-color: var(--border);
  border-radius: var(--radius-sm);
  border-width: 1.5px;
  height: var(--btn-h);
  padding: 0 14px;
  background-color: var(--bg-surface);
  color: var(--text);
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--espresso);
  box-shadow: 0 0 0 3px rgba(26,94,126,.12);
  background-color: var(--bg-surface);
  color: var(--text);
}
textarea.form-control       { height: auto; padding: 12px 14px; }
.form-label                 { font-weight: 600; font-size: .875rem; color: var(--text-sub); margin-bottom: 6px; }
.form-check-input:checked   { background-color: var(--espresso); border-color: var(--espresso); }
.form-switch .form-check-input:checked { background-color: var(--espresso); }
.input-group .btn           { height: var(--btn-h); }

/* ============================================================
   Cards
   ============================================================ */
.card              { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
.card-header       { background: transparent; border-bottom: 1px solid var(--border); padding: 16px 20px; font-weight: 700; }
.card-body         { padding: 20px; }
.card-footer       { background: transparent; border-top: 1px solid var(--border); padding: 14px 20px; }

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(10, 38, 51, .84) 0%, rgba(26,94,126,.0) 100%);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
  display: flex;
}
.site-header.scrolled {
  height: var(--nav-h-sm);
  background: rgba(18,71,94,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 2px 16px rgba(0,0,0,.25);
    border-bottom: 3px solid var(--gold);
}
.site-header.header-solid {
  background: rgba(18,71,94,.98);
  height: var(--nav-h-sm);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  transition: padding .35s ease;
}
.site-header.scrolled .header-inner,
.site-header.header-solid .header-inner { padding: 0; }
@media (max-width: 991.98px) {
  .header-inner { grid-template-columns: 1fr auto; }
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo img {
  height: 52px;
  width: auto;
  transition: height .35s ease;
}
.site-header.scrolled .header-logo img,
.site-header.header-solid .header-logo img { height: 36px; }
.header-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  transition: font-size .35s ease;
}
.site-header.scrolled .header-logo-text,
.site-header.header-solid .header-logo-text { font-size: 1.2rem; }
.header-logo-text:hover { color: var(--gold); }

/* Center nav (desktop) */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav li a {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .03em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.header-nav li a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: left .28s cubic-bezier(.4,0,.2,1), right .28s cubic-bezier(.4,0,.2,1);
}
.header-nav li a:hover::after,
.header-nav li a.active::after { left: 14px; right: 14px; }
.header-nav li a:hover, .header-nav li a.active { color: #fff; background: transparent; }

/* ── Header Nav Dropdown ──────────────────────────────────────── */
.header-nav-item { position: relative; list-style: none; }

/* Caret icon inside link */
.nav-dd-caret {
  margin-left: 4px;
  opacity: .65;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.header-nav-item.has-dropdown:hover > a .nav-dd-caret,
.header-nav-item.has-dropdown.open  > a .nav-dd-caret { transform: rotate(180deg); opacity: 1; }

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.14), 0 1px 4px rgba(0,0,0,.08);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 1010;
}

/* Arrow tip */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--bg-surface);
  border-top: 0;
  filter: drop-shadow(0 -1px 0 var(--border-subtle));
}

/* Show on hover or .open */
.header-nav-item.has-dropdown:hover > .nav-dropdown,
.header-nav-item.has-dropdown.open  > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown links */
.nav-dropdown-link {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  color: var(--text);
  font-size: .88rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  border-radius: 0;
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
  position: relative;
}
.nav-dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .15s;
}
.nav-dropdown-link::after { display: none; } /* override parent ::after */
.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: var(--bg-subtle);
  color: var(--espresso);
  padding-left: 22px;
}
.nav-dropdown-link:hover::before,
.nav-dropdown-link.active::before { opacity: 1; }

/* ── Mobile Sidebar — nested collapse ─────────────────────────── */
.sidebar-nav-group { display: flex; flex-direction: column; }

.sidebar-nav-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.sidebar-toggle-caret {
  transition: transform var(--transition);
  opacity: .55;
}
.sidebar-nav-toggle[aria-expanded="true"] .sidebar-toggle-caret { transform: rotate(180deg); opacity: .9; }

.sidebar-nav-sub { padding: 4px 0 4px 16px; }
.sidebar-nav-sub-link {
  display: block;
  padding: 9px 16px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  border-left: 2px solid rgba(255,255,255,.1);
  margin-bottom: 2px;
}
.sidebar-nav-sub-link:hover,
.sidebar-nav-sub-link.active {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-left-color: var(--gold);
}

/* ── Footer nav links ─────────────────────────────────────────── */
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-nav-list { display: flex; flex-direction: column; gap: 2px; }
.footer-nav-link {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-nav-link:hover { color: var(--gold); }

/* Right actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.header-action-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  position: relative;
}
.header-action-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 32px;
  padding: 0 10px;
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  border: none;
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition);
}
.lang-toggle-btn:hover { background: rgba(255,255,255,.18); }
.lang-toggle-btn img { border-radius: 2px; }
.lang-caret { opacity: .6; transition: transform var(--transition); }
.lang-dropdown.show .lang-caret { transform: rotate(180deg); }
.lang-dropdown-menu {
  min-width: 130px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 4px;
}
.lang-dropdown-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-xs);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text) !important;
  padding: 7px 10px !important;
}
.lang-dropdown-item img { border-radius: 2px; flex-shrink: 0; }
.lang-dropdown-item.active, .lang-dropdown-item:active { background: var(--bg-muted) !important; color: var(--espresso) !important; }

/* Bag badge */
.bag-badge {
  position: absolute;
  top: 5px; right: 5px;
  width: 17px; height: 17px;
  background: var(--gold);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  line-height: 1;
}
.bag-badge[data-count="0"], .bag-badge:empty { display: none; }

/* ============================================================
   Mobile Sidebar (Offcanvas)
   ============================================================ */
.sidebar-offcanvas {
  width: 296px !important;
  background: var(--bg-surface);
  border-right: 1px solid var(--border) !important;
}
.sidebar-logo-wrap { padding: 24px 20px 16px; border-bottom: 1px solid var(--border); }
.sidebar-logo-text { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 700; color: var(--espresso); }

.sidebar-nav { padding: 8px 12px; }
.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-sub);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all var(--transition);
}
.sidebar-nav-link:hover, .sidebar-nav-link.active {
  background: var(--bg-muted);
  color: var(--espresso);
}
.sidebar-nav-link.active { font-weight: 700; }
.sidebar-nav-link svg { color: var(--text-muted); flex-shrink: 0; }
.sidebar-divider { height: 1px; background: var(--border); margin: 8px 14px; }

/* ============================================================
   Branch Bar
   ============================================================ */
.branch-bar {
  background: var(--espresso-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 0;
  position: sticky;
  top: var(--nav-h-sm);
  z-index: 990;
}
.branch-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 42px;
}
.branch-bar-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  flex-shrink: 0;
  white-space: nowrap;
}
.branch-bar-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.branch-bar-tabs::-webkit-scrollbar { display: none; }
.branch-bar-tab {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.62);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.branch-bar-tab:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.branch-bar-tab.active {
  color: var(--gold);
  border-color: rgba(125,103,76,.4);
  background: rgba(125,103,76,.08);
}
.branch-bar-hint {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
  padding: 0 8px;
}
@media (max-width: 575.98px) {
  .branch-bar-label { display: none; }
  .branch-bar-inner { height: 38px; }
}

/* ============================================================
   Cart Offcanvas
   ============================================================ */
.cart-offcanvas { width: 420px !important; max-width: 100vw; }
.cart-offcanvas .offcanvas-header { background: var(--espresso-dark); border-bottom: 1px solid rgba(255,255,255,.1); padding: 20px 24px; }
.cart-offcanvas .offcanvas-body   { padding: 0; display: flex; flex-direction: column; }

/* Empty cart state */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 48px 24px;
  min-height: 320px;
}
.cart-empty-state .cart-empty-icon {
  width: 100px;
  height: 100px;
  color: var(--espresso);
  opacity: .18;
}
.cart-empty-state .cart-empty-icon svg { width: 100%; height: 100%; }
.cart-empty-state p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* Same icon on cart page */
.cart-page-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 64px 24px;
}
.cart-page-empty .cart-empty-icon {
  width: 120px; height: 120px;
  color: var(--espresso);
  opacity: .15;
}
.cart-page-empty .cart-empty-icon svg { width: 100%; height: 100%; }
.cart-page-empty p { font-size: 1rem; color: var(--text-muted); margin: 0; }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-item-img {
  width: 68px; height: 68px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-muted);
}
.cart-item-name  { font-weight: 700; font-size: .88rem; color: var(--text); }
.cart-item-price { color: var(--espresso); font-weight: 700; font-size: .9rem; }
.cart-item-old   { text-decoration: line-through; color: var(--text-muted); font-size: .78rem; }

.cart-qty-ctrl { display: flex; align-items: center; gap: 6px; margin-top: 8px; }
.cart-qty-btn {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-sub);
  font-size: .9rem;
  line-height: 1;
  transition: all var(--transition);
}
.cart-qty-btn:hover { border-color: var(--espresso); color: var(--espresso); }
.cart-qty-num { width: 28px; text-align: center; font-weight: 700; font-size: .9rem; }

.cart-qty-value::-webkit-outer-spin-button,.cart-qty-value::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
.cart-qty-value {-moz-appearance: textfield;text-align: center;}

.cart-summary { padding: 20px 24px; border-top: 1px solid var(--border); margin-top: auto; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: .875rem; }
.cart-summary-total { font-size: 1.1rem; font-weight: 800; color: var(--espresso); margin-top: 10px; }

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info .cart-item-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.cart-remove-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.cart-remove-btn:hover { color: #dc2626; }

/* ============================================================
   Product Detail Modal
   ============================================================ */
.modal-product .modal-content  { overflow: hidden; border: none; }
.modal-product .modal-header   { border-bottom: 1px solid var(--border-subtle); padding: .75rem 1.25rem; }
.modal-product .modal-title    { font-size: 1rem; font-weight: 700; }
.modal-product .modal-body     { padding: 0; }
.modal-product .modal-footer   { border-top: 1px solid var(--border-subtle); padding: .75rem 1.25rem; }
.modal-product .modal-close-floating { top: 12px; right: 12px; }

.product-modal-img-col {
  min-height: 260px;
  background: var(--bg-muted);
  overflow: hidden;
}
@media (min-width: 992px) {
  .product-modal-img-col { min-height: 440px; }
  .modal-product .modal-body .row { height: 100%; min-height: 440px; }
  .product-modal-detail-col { max-height: 80vh; }
}
.product-modal-img-col .product-modal-swiper,
.product-modal-img-col .swiper,
.product-modal-img-col .swiper-wrapper,
.product-modal-img-col .swiper-slide { height: 100%; }
.product-modal-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-modal-price  { font-size: 1.3rem; font-weight: 800; color: var(--espresso); }
.product-modal-section { margin-bottom: .75rem; }

.allergen-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.allergen-badge  {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .72rem;
  font-weight: 600;
  padding: .2rem .6rem;
  background: var(--bg-muted);
  border-radius: 20px;
  color: var(--text-sub);
}

.cart-qty-control { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   Hero (Home)
   ============================================================ */
.site-hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--espresso-dark);
  margin-top: calc(-1 * var(--nav-h));
}
.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.hero-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: scroll-bounce 2.2s ease infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  55%      { transform: translateX(-50%) translateY(8px); }
}

/* Swiper nav overrides */
.swiper-button-next, .swiper-button-prev {
  color: rgba(255,255,255,.7) !important;
  width: 44px !important;
  height: 44px !important;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 18px !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,.5); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--gold); width: 24px; border-radius: 4px; transition: width .3s; }

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 100px 0 52px;
  background: var(--espresso-dark);
  overflow: hidden;
  margin-top: calc(-1 * var(--nav-h-sm));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
}
.page-hero .container { position: relative; z-index: 1; padding-top: var(--nav-h-sm); }
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: #fff;
  margin-bottom: 10px;
}

.hero-breadcrumb {
  display: flex; flex-wrap: wrap; gap: 4px; align-items: center;
  list-style: none; padding: 0; margin: 0;
}
.hero-breadcrumb li { display: flex; align-items: center; gap: 4px; }
.hero-breadcrumb li+li::before { content: '/'; color: rgba(255,255,255,.35); font-size: .75rem; }
.hero-breadcrumb a    { color: rgba(255,255,255,.6); font-size: .82rem; text-decoration: none; }
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-breadcrumb li:last-child span { color: rgba(255,255,255,.9); font-size: .82rem; }

/* ============================================================
   Sections
   ============================================================ */
.section    { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 112px 0; }

.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--text);
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ============================================================
   Menu — Category Swipers
   ============================================================ */
.menu-cats-wrap {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h-sm);
  z-index: 100;
}
.menu-cats-swiper { padding: 0 16px !important; }

.menu-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px 12px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  min-width: 76px;
  text-decoration: none;
  color: var(--text-sub);
  transition: color var(--transition), border-bottom-color var(--transition);
}
.menu-cat-item:hover, .menu-cat-item.active {
  color: var(--espresso);
  border-bottom-color: var(--espresso);
}
.menu-cat-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-muted);
  transition: background var(--transition);
}
.menu-cat-item:hover .menu-cat-icon,
.menu-cat-item.active .menu-cat-icon { background: var(--espresso); }

.menu-cat-icon img, .menu-cat-icon svg { width: 26px; height: 26px; }
.menu-cat-item:hover .menu-cat-icon img,
.menu-cat-item.active .menu-cat-icon img { filter: brightness(10); }
.menu-cat-item:hover .menu-cat-icon svg path,
.menu-cat-item.active .menu-cat-icon svg path { fill: #fff; }

.menu-cat-name { font-size: .77rem; font-weight: 700; text-align: center; white-space: nowrap; }

/* Sub-categories */
.menu-subcats-wrap {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.menu-subcats-swiper { padding: 6px 16px !important; }
.menu-subcat-item {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  color: var(--text-sub);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.menu-subcat-item:hover, .menu-subcat-item.active {
  background: var(--espresso);
  color: #fff;
  border-color: var(--espresso);
}

/* ============================================================
   Product Cards
   ============================================================ */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-muted);
  position: relative;
  flex-shrink: 0;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-name  { font-weight: 700; font-size: .92rem; margin-bottom: 4px; color: var(--text); }
.product-card-desc  { font-size: .8rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.4; flex: 1; }
.product-card-footer{ display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.product-price      { font-weight: 800; font-size: 1rem; color: var(--espresso); }
.product-price-old  { font-size: .78rem; color: var(--text-muted); text-decoration: line-through; margin-left: 4px; }
.product-price-wrap { display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap; }

.product-add-btn {
  width: 34px; height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--espresso);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.product-add-btn:hover { background: var(--espresso-light); transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  z-index: 1;
}

.allergen-icons     { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 6px; }
.allergen-icon      { width: 16px; height: 16px; opacity: .6; }

/* Mobile: list layout */
@media (max-width: 767.98px) {
  .product-card { flex-direction: row; border-radius: var(--radius-sm); }
  .product-card-image { width: 108px; min-width: 108px; aspect-ratio: auto; border-radius: 0; }
  .product-card-body  { padding: 12px; }
  .product-card-name  { font-size: .85rem; }
  .product-card-desc  {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ============================================================
   Gallery — Filters
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
  justify-content: center;
}
.gallery-filter-btn {
  padding: .38rem 1.1rem;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  color: var(--text-sub);
  text-decoration: none;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: #fff;
}

/* ============================================================
   Gallery — Masonry
   ============================================================ */
.gallery-masonry {
  columns: 4 180px;
  column-gap: 12px;
}
@media (max-width: 991.98px) { .gallery-masonry { columns: 3 160px; } }
@media (max-width: 767.98px) { .gallery-masonry { columns: 2 140px; } }
@media (max-width: 480px)    { .gallery-masonry { columns: 2 120px; } }

.gallery-item-wrap {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.gallery-item-wrap.hidden { display: none; }

/* ── Skeleton shimmer ── */
.gallery-skeleton {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: galleryShimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes galleryShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery-item.loaded { opacity: 1; }
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: all var(--transition);
}
.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-visible .gallery-item-overlay { opacity: 1; background: rgba(0,0,0,.35); }

/* ============================================================
   Events
   ============================================================ */
.event-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-image { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-muted); position: relative; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.event-card:hover .event-image img { transform: scale(1.04); }
.event-date-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--espresso);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  text-align: center;
}
.event-date-badge .day   { display: block; font-size: 1.3rem; font-weight: 800; font-family: 'Cinzel', serif; line-height: 1; }
.event-date-badge .month { display: block; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.event-body  { padding: 18px; }
.event-title a { color: var(--text); font-weight: 700; font-size: 1rem; text-decoration: none; }
.event-title a:hover { color: var(--espresso); }
.event-meta { display: flex; flex-direction: column; gap: 3px; color: var(--text-muted); font-size: .8rem; margin: 6px 0 10px; }
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.event-price  { font-weight: 800; color: var(--espresso); font-size: 1.05rem; }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter-section {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-form { max-width: 480px; }
.newsletter-input-wrap {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  overflow: hidden;
  transition: border-color var(--transition);
}
.newsletter-input-wrap:focus-within { border-color: var(--espresso); }
.newsletter-input {
  flex: 1;
  border: none;
  padding: 0 16px;
  height: var(--btn-h);
  font-size: .875rem;
  background: transparent;
  color: var(--text);
  outline: none;
  min-width: 0;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn {
  height: var(--btn-h);
  padding: 0 20px;
  background: var(--espresso);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}
.newsletter-btn:hover { background: var(--espresso-light); }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.03) 0%, transparent 50%);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  flex-shrink: 0;
  background: var(--espresso-dark);
  color: rgba(255,255,255,.7);
  padding: 52px 0 0;
}
.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  text-decoration: none;
}
.footer-tagline   { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 6px; }
.footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 14px; }
.footer-addr      { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.8; }
.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(125,103,76,.1); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy  { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   Contact
   ============================================================ */
.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  color: var(--espresso);
  flex-shrink: 0;
}

/* ============================================================
   Auth Modal (user login — modal-based)
   ============================================================ */
.auth-modal .modal-dialog { max-width: 440px; }
.auth-modal .modal-content { border: none; border-radius: 0; }
.auth-modal .modal-header  { border: none; padding: 28px 32px 0; position: relative; }
.auth-modal .modal-body    { padding: 20px 32px 32px; }

.modal-close-floating {
  position: absolute;
  top: -15px; right: -15px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  border: 2.5px solid #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: .7rem;
  line-height: 1;
  transition: background var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  padding: 0;
}
.modal-close-floating:hover { background: var(--espresso); }
.modal-fullscreen .modal-close-floating { top: 16px; right: 16px; }

/* Auth tabs */
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.auth-tab {
  flex: 1; height: 42px;
  background: transparent; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  font-weight: 700; font-size: .875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.auth-tab.active { color: var(--espresso); border-bottom-color: var(--espresso); }

.google-btn {
  width: 100%; height: var(--btn-h);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text);
  font-weight: 700; font-size: .875rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.google-btn:hover { border-color: var(--espresso); background: var(--bg-muted); color: var(--text); }

.auth-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-muted); font-size: .78rem;
  margin: 20px 0;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ================================================================
   AUTH PAGES — standalone login / register / forgot / reset
================================================================ */
.auth-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 16px;
  background: var(--bg-muted);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 480px) {
  .auth-card { padding: 28px 20px; }
}

.auth-logo {
  display: block;
  margin: 0 auto 28px;
  max-height: 52px;
  width: auto;
}

.auth-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--espresso);
  text-align: center;
  margin: 0 0 24px;
}

/* Google SSO button (.btn-google used in auth views) */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
  color: var(--text);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-google:hover {
  border-color: var(--espresso);
  background: var(--bg-muted);
  color: var(--text);
}
.btn-google svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Password input with visibility toggle */
.input-password-toggle { position: relative; }
.input-password-toggle .form-control { padding-right: 44px; }
.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 2px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  z-index: 2;
}
.password-toggle-btn:hover { color: var(--espresso); }
.password-toggle-btn svg { width: 18px; height: 18px; }

/* Admin dedicated login page */
.admin-login-wrap {
  min-height: 100vh;
  background: var(--espresso-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.admin-login-card {
  width: 100%; max-width: 400px;
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   Modals (global overrides)
   ============================================================ */
.modal-content { border: none; border-radius: 0; }
.modal-header  { border-bottom: 1px solid var(--border); padding: 18px 24px; }
.modal-body    { padding: 24px; }
.modal-footer  { border-top: 1px solid var(--border); padding: 14px 24px; gap: 8px; }

/* ============================================================
   Toasts
   ============================================================ */
.toast-container {
  position: fixed;
  bottom: 24px; 
  left: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 8px;
  width: 340px;
  pointer-events: none;
}
.toast-promise {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: toast-in .28s cubic-bezier(0.34,1.56,0.64,1) forwards;
  pointer-events: auto;
}
.toast-promise.hiding { animation: toast-out .25s ease forwards; }

@keyframes toast-in  { from { opacity:0; transform: translateX(50px); } to { opacity:1; transform: none; } }
@keyframes toast-out { from { opacity:1; transform: none; } to { opacity:0; transform: translateX(50px); } }

.toast-promise.success { border-left-color: #16A34A; }
.toast-promise.error   { border-left-color: #DC2626; }
.toast-promise.warning { border-left-color: #D97706; }
.toast-promise.info    { border-left-color: #2563EB; }

svg.toast-icon { width:18px; height:18px; flex-shrink:0; }
.toast-promise.success svg.toast-icon { color: #16A34A; }
.toast-promise.error   svg.toast-icon { color: #DC2626; }
.toast-promise.warning svg.toast-icon { color: #D97706; }
.toast-promise.info    svg.toast-icon { color: #2563EB; }

.toast-body  { flex:1; font-size:.875rem; line-height:1.4; color: var(--text); }
.toast-close { background:none; border:none; cursor:pointer; color:var(--text-muted); padding:2px; line-height:1; flex-shrink:0; }
.toast-close svg { width:14px; height:14px; display:block; }
.toast-close:hover { color: var(--text); }

/* ============================================================
   Cookie Banner — floating card
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9980;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .38s cubic-bezier(.34,1.28,.64,1), opacity .3s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner-icon {
  width: 40px; height: 40px;
  background: rgba(125,103,76,.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 12px;
}
.cookie-banner-title { font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: 6px; }
.cookie-banner-text  { font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.cookie-banner-text a { color: var(--espresso); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 8px; }
.cookie-banner-actions .btn { flex: 1; font-size: .82rem; }

/* ============================================================
   Account
   ============================================================ */
.account-sidebar-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.account-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  color: var(--text-sub); font-weight: 600; font-size: .875rem;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}
.account-nav-item:hover       { background: var(--bg-muted); color: var(--espresso); }
.account-nav-item.active      { background: var(--bg-muted); color: var(--espresso); border-left-color: var(--espresso); }

.order-status-pill { display: inline-flex; align-items: center; padding: 3px 12px; border-radius: 20px; font-size: .73rem; font-weight: 700; }
.status-pending    { background: #FEF9C3; color: #854D0E; }
.status-confirmed  { background: #DBEAFE; color: #1E40AF; }
.status-preparing  { background: #FEE2E2; color: #991B1B; }
.status-ready      { background: #D1FAE5; color: #065F46; }
.status-on_the_way { background: #E0E7FF; color: #3730A3; }
.status-delivered  { background: #DCFCE7; color: #166534; }
.status-cancelled  { background: #F3F4F6; color: #6B7280; }

/* ============================================================
   Checkout
   ============================================================ */
.order-type-option {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 18px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-sub); font-weight: 700; font-size: .875rem;
  transition: all var(--transition); cursor: pointer;
}
input[type=radio]:checked + .order-type-option { border-color: var(--espresso); background: var(--bg-muted); color: var(--espresso); }

.payment-option {
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700; font-size: .82rem;
  transition: all var(--transition); cursor: pointer;
}
input[type=radio]:checked + .payment-option { border-color: var(--espresso); background: var(--bg-muted); color: var(--espresso); }

/* Coupon */
.coupon-applied {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: var(--radius-sm);
  font-size: .875rem; color: #166534;
}

/* ============================================================
   Legal
   ============================================================ */
.legal-content { max-width: 780px; margin: 0 auto; line-height: 1.9; }
.legal-content h2 { font-size: 1.15rem; margin: 32px 0 10px; color: var(--text); }
.legal-content p, .legal-content li { color: var(--text-sub); font-size: .925rem; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }

/* ============================================================
   Pagination
   ============================================================ */
.pagination .page-link {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid var(--border);
  color: var(--text-sub); font-weight: 600; font-size: .85rem;
  margin: 0 2px;
  transition: all var(--transition);
}
.pagination .page-link:hover { border-color: var(--espresso); color: var(--espresso); background: var(--bg-muted); }
.pagination .page-item.active .page-link { background: var(--espresso); border-color: var(--espresso); color: #fff; }

/* ============================================================
   Scroll-to-top
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 24px;
  width: 42px; height: 42px;
  border-radius: 50%; border: none;
  background: var(--espresso); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 890; box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover   { background: var(--espresso-light); }

/* ============================================================
   WhatsApp FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed; bottom: 28px; left: 24px;
  height: 48px;
  border-radius: 24px;
  background: #25D366; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 18px 0 14px;
  text-decoration: none;
  font-size: .875rem; font-weight: 600;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition), padding var(--transition);
  z-index: 890;
  white-space: nowrap;
}
.whatsapp-fab:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.whatsapp-fab svg { flex-shrink: 0; }
@media (max-width: 575.98px) {
  .whatsapp-fab { height: 44px; padding: 0 14px 0 12px; font-size: .8rem; }
}

/* ============================================================
   Utility
   ============================================================ */
.img-cover   { object-fit: cover; width: 100%; height: 100%; }
.overflow-h  { overflow: hidden; }
.bg-muted    { background: var(--bg-muted) !important; }
.bg-subtle   { background: var(--bg-subtle) !important; }
.divider     { height: 1px; background: var(--border); }
.gap-6       { gap: 6px !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
  .site-header { height: var(--nav-h-sm); }
  .section     { padding: 52px 0; }
  .section-lg  { padding: 72px 0; }
  .page-hero   { padding: 90px 0 44px; }
}
@media (max-width: 575.98px) {
  .toast-container { left: 12px; right: 12px; width: auto; bottom: 12px; }
  .cookie-banner { right: 16px; bottom: 16px; }
  .hero-title { font-size: 2.2rem; }
}

@media print {
  .site-header, .whatsapp-fab, .scroll-top, .cookie-banner { display: none !important; }
  body { background: #fff; }
}

/* ============================================================
   Hero Section (Home page — Swiper background)
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--espresso-dark);
  margin-top: calc(-1 * var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-swiper-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

/* Ken Burns — 4 köşeden yavaş zoom */
@keyframes kb-tl { 0% { transform: scale(1.14) translate( 1.8%,  1.8%); } 100% { transform: scale(1) translate(0, 0); } }
@keyframes kb-tr { 0% { transform: scale(1.14) translate(-1.8%,  1.8%); } 100% { transform: scale(1) translate(0, 0); } }
@keyframes kb-bl { 0% { transform: scale(1.14) translate( 1.8%, -1.8%); } 100% { transform: scale(1) translate(0, 0); } }
@keyframes kb-br { 0% { transform: scale(1.14) translate(-1.8%, -1.8%); } 100% { transform: scale(1) translate(0, 0); } }
.hero-bg-img.kb-tl { animation: kb-tl 9s ease forwards; }
.hero-bg-img.kb-tr { animation: kb-tr 9s ease forwards; }
.hero-bg-img.kb-bl { animation: kb-bl 9s ease forwards; }
.hero-bg-img.kb-br { animation: kb-br 9s ease forwards; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--espresso-dark);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  width: 100%;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.78);
  max-width: 500px;
  margin: 0 auto 36px;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255,255,255,.45);
  animation: scroll-bounce 2.2s ease infinite;
}
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.38);
  color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.6); color: #fff; }
.btn-accent       { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-accent:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; }

/* ============================================================
   Page Hero Wrap (inner pages)
   ============================================================ */
.page-hero-wrap {
  position: relative;
  padding: 112px 0 52px;
  background: var(--espresso-dark) url('/assets/images/hero-bg.webp');
  overflow: hidden;
  background-size: cover;
  background-position: center;
  margin-top: calc(-1 * var(--nav-h));
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,71,94,.70) 0%, rgba(18,71,94,.55) 100%);
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-h-sm);
}
.page-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  color: #fff;
  margin-bottom: 10px;
}
.page-hero-desc {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
  margin-bottom: 14px;
}
.page-hero-breadcrumb {
  --bs-breadcrumb-divider: '/';
  margin: 0;
}
.page-hero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .82rem; text-decoration: none; }
.page-hero-breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.page-hero-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: .82rem; }
.page-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.35); }

/* ============================================================
   Menu Category Strips (aliases for new class names)
   ============================================================ */
.menu-categories-wrap {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h-sm);
  z-index: 100;
  overflow: hidden;
}
.menu-main-cat-swiper { padding: 0 !important; }
.menu-main-cat-slide  { width: auto !important; }
.menu-main-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 14px 12px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  min-width: 80px;
  text-decoration: none;
  color: var(--text-sub);
  transition: color var(--transition), border-bottom-color var(--transition);
  white-space: nowrap;
}
.menu-main-cat-item:hover,
.menu-main-cat-item.active { color: var(--espresso); border-bottom-color: var(--espresso); }
.menu-main-cat-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-muted);
  transition: background var(--transition);
}
.menu-main-cat-item:hover .menu-main-cat-icon,
.menu-main-cat-item.active .menu-main-cat-icon { background: var(--espresso); color: #fff; }
.menu-main-cat-icon img { width: 28px; height: 28px; }
.menu-main-cat-item:hover .menu-main-cat-icon img,
.menu-main-cat-item.active .menu-main-cat-icon img { filter: brightness(10); }
.menu-main-cat-icon svg { width: 28px; height: 28px; }
.menu-main-cat-label { font-size: .78rem; font-weight: 700; text-align: center; }

.menu-subcats-wrap {
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: calc(var(--nav-h-sm) + 115px);
  z-index: 99;
}
.menu-sub-cat-swiper { padding: 8px 16px !important; }
.menu-sub-cat-slide  { width: auto !important; }
.menu-sub-cat-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  color: var(--text-sub);
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 1.5px solid var(--border);
  background: var(--bg-surface);
}
.menu-sub-cat-item:hover,
.menu-sub-cat-item.active { background: var(--espresso); color: #fff; border-color: var(--espresso); }
.menu-sub-cat-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  background: var(--bg-muted);
  border-radius: 9px;
  font-size: .68rem;
  font-weight: 700;
}
.menu-sub-cat-item:hover .menu-sub-cat-count,
.menu-sub-cat-item.active .menu-sub-cat-count { background: rgba(255,255,255,.25); }

/* ============================================================
   Product Card — class name aliases
   ============================================================ */
.product-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-muted);
  position: relative;
  flex-shrink: 0;
}
.product-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block;
}
.product-card:hover .product-card-img { transform: scale(1.04); }
.product-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  background: var(--gold);
  color: #fff;
  z-index: 1;
}
.product-card-unavailable-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
}
.product-price-original   { text-decoration: line-through; color: var(--text-muted); font-size: .8rem; margin-right: 4px; }
.product-price-discounted { font-weight: 800; color: var(--espresso); font-size: 1rem; }
.product-allergen-dots { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 4px; margin-bottom: 6px; }
.allergen-dot { display: inline-flex; align-items: center; }

/* Alerjen chip (SVG ikon, ürün detay sayfası) */
.allergen-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.25);
  cursor: default; transition: background .15s;
}
.allergen-chip:hover { background: rgba(245,158,11,.22); }
.allergen-chip-icon {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; color: #92400e;
}
.allergen-chip-icon svg { width: 100%; height: 100%; display: block; }
.allergen-name-tag {
  font-size: .72rem; line-height: 1.2;
  background: rgba(245,158,11,.12); color: #92400e;
  border: 1px solid rgba(245,158,11,.25);
  border-radius: 20px; padding: 3px 8px; white-space: nowrap; font-weight: 600;
}

/* Product detail quantity stepper */
.pqc-row { display: flex; align-items: center; gap: 12px; }
.pqc-stepper {
  display: flex; align-items: center;
  border: 2px solid var(--border, #e5e7eb); border-radius: 14px;
  background: #fff; flex-shrink: 0; overflow: hidden;
}
.pqc-btn {
  width: 48px; height: 48px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub, #6b7280);
  transition: background .15s, color .15s;
}
.pqc-btn:hover { background: var(--bg-muted, #f3f4f6); color: var(--espresso, #3b1f0a); }
.pqc-num {
  min-width: 44px; text-align: center;
  font-weight: 700; font-size: 1.1rem; color: var(--text-body, #111827);
  border-left: 1.5px solid var(--border, #e5e7eb);
  border-right: 1.5px solid var(--border, #e5e7eb);
  user-select: none; padding: 0 4px;
}
.pqc-cart-btn {
  flex: 1; height: 48px; font-size: 1rem; font-weight: 600;
  border-radius: 14px !important;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pqc-unavailable {
  display: flex; align-items: center; gap: 8px;
  color: #b45309; background: #fffbeb;
  border: 1px solid #fcd34d; border-radius: 12px;
  padding: 14px 18px; font-size: .9rem; font-weight: 500;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.menu-section-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: var(--text);
  font-weight: 700;
}
.menu-subsection-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-muted);
}
.empty-state svg { margin: 0 auto 18px; display: block; color: var(--border); }
.empty-state p { font-size: 1.05rem; margin-bottom: 20px; }

@media (max-width: 767.98px) {
  .product-card-img-wrap { width: 108px; min-width: 108px; aspect-ratio: auto; height: 100%; }
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Footer — 4-col Bootstrap grid layout
   ============================================================ */
.footer {
  flex-shrink: 0;
  background: var(--espresso-dark);
  color: rgba(255,255,255,.7);
  padding: 52px 0 0;
}

/* Logo & brand */
.footer-logo   { height: 36px; width: auto; }
.footer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.4); margin-top: 8px; line-height: 1.5; }

/* Column titles (managed from admin nav menu parent items) */
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col-title-link {
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col-title-link:hover { color: rgba(255,255,255,.7); }

/* Nav link columns */
.footer-nav-list { display: flex; flex-direction: column; gap: 4px; }
.footer-nav-link {
  display: block;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  text-decoration: none;
  padding: 3px 0;
  transition: color var(--transition);
}
.footer-nav-link:hover { color: var(--gold); }

/* Contact column */
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: .875rem; }
.footer-address { font-style: normal; display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }
.footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .875rem;
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--gold); }

/* Social icons */
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-btn {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(125,103,76,.1); }

/* Newsletter */
.footer-newsletter { display: flex; width: 100%; max-width: 240px; }
.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .82rem;
  outline: none;
  transition: border-color var(--transition);
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter-input:focus { border-color: var(--gold); }
.footer-newsletter-btn {
  height: 38px;
  width: 40px;
  background: var(--gold);
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.footer-newsletter-btn:hover { background: var(--gold-dark); }

/* Payment logos row */
.footer-payments {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-payment-pill {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-payment-pill:hover { background: rgba(255,255,255,.18); }
.footer-payment-logo {
  height: 26px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-legal-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-nav a { font-size: .78rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color var(--transition); }
.footer-legal-nav a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   Auth Modal — new class names
   ============================================================ */
.auth-modal .modal-content { border: none; border-radius: 0; position: relative; }
.auth-modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
}
.auth-tab-btn {
  flex: 1;
  height: 48px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-weight: 700;
  font-size: .875rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.auth-tab-btn.active { color: var(--espresso); border-bottom-color: var(--espresso); }
.auth-pane { display: none; }
.auth-pane.active { display: block; }
.auth-modal-body { padding: 28px 32px 32px; }

/* ============================================================
   Sidebar language buttons
   ============================================================ */
.sidebar-lang-row { display: flex; gap: 8px; }
.sidebar-lang-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: .8rem;
  color: var(--text-sub);
  text-decoration: none;
  transition: all var(--transition);
}
.sidebar-lang-btn img { border-radius: 2px; flex-shrink: 0; }
.sidebar-lang-btn:hover,
.sidebar-lang-btn.active { border-color: var(--espresso); color: var(--espresso); background: var(--bg-muted); }

/* ============================================================
   CTA Section aliases
   ============================================================ */
.cta-section { padding: 72px 0; text-align: center; }
.cta-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 14px;
}
.cta-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.95); margin-bottom: 8px; }
.cta-content  { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 640px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================================================
   CTA YouTube Video Background
   ============================================================ */
.cta-section[data-yt-id] { padding: 96px 0; min-height: 600px;}
.cta-yt-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.cta-yt-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  pointer-events: none;
  border: 0;
}
.cta-yt-overlay {
  position: absolute;
  inset: 0;
  background: var(--espresso-dark);
  z-index: 1;
  transition: opacity 0.6s ease;
}
.cta-yt-content {
  position: relative;
  z-index: 2;
}

/* Contact directions button */
.contact-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   Section warm background
   ============================================================ */
.section-warm { background: var(--bg-muted); }

/* ============================================================
   Map embed
   ============================================================ */
.map-embed-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 350px; }
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Divider accent
   ============================================================ */
.divider-accent {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 14px 0 24px;
}

/* ============================================================
   Cookie banner hidden state
   ============================================================ */
.cookie-banner[hidden] { display: none !important; }
.cookie-link { color: var(--espresso); text-decoration: underline; }

/* ============================================================
   Legal content — additional headings
   ============================================================ */
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--text); }
.legal-content h4 { font-size: .95rem; margin: 18px 0 6px; color: var(--text-sub); }
.legal-content a  { color: var(--espresso); }

/* ============================================================
   Contact page
   ============================================================ */
.contact-form-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-tag {
  display: inline-block;
  background: rgba(125,103,76,.14);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.contact-form-title { font-family: 'Cinzel', serif; font-size: 1.65rem; margin-bottom: 6px; color: var(--text); }
.contact-form-sub   { color: var(--text-muted); font-size: .88rem; margin-bottom: 0; }

/* Floating-label fields */
.contact-field { position: relative; }
.contact-input {
  display: block;
  width: 100%;
  padding: 22px 16px 8px;
  background: var(--bg-muted);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
  font-family: inherit;
}
.contact-input:focus { border-color: var(--espresso); background: var(--bg-surface); }
.contact-label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: .88rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: top .18s ease, font-size .18s ease, color .18s ease, transform .18s ease;
}
.contact-textarea ~ .contact-label { top: 18px; transform: none; }
.contact-input:focus ~ .contact-label,
.contact-input:not(:placeholder-shown) ~ .contact-label {
  top: 8px; transform: none; font-size: .7rem; color: var(--espresso);
}
.contact-textarea:focus ~ .contact-label,
.contact-textarea:not(:placeholder-shown) ~ .contact-label {
  top: 6px; font-size: .7rem; color: var(--espresso);
}
.contact-submit-btn { height: var(--btn-h-lg); font-size: 1rem; font-weight: 700; letter-spacing: .02em; }

/* Contact info cards */
.contact-info-header { margin-bottom: 20px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-card-link:hover {
  border-color: var(--espresso);
  box-shadow: 0 4px 20px rgba(26,94,126,.1);
  transform: translateY(-2px);
}
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--espresso);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card-wa .contact-card-icon { background: #25D366; }
.contact-card-label {
  display: block;
  font-size: .7rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 3px;
}
.contact-card-value { margin: 0; font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.contact-card-link:hover .contact-card-value { color: var(--espresso); }
.contact-card-wa.contact-card-link:hover .contact-card-value { color: #25D366; }

/* Social row */
.contact-social-label { font-size: .7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; display: block; }
.contact-social-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem; font-weight: 600;
  color: var(--text-sub);
  text-decoration: none;
  transition: all var(--transition);
}
.contact-social-btn:hover { background: var(--espresso); color: #fff; border-color: var(--espresso); }

/* Map strip */
.contact-map-wrap { width: 100%; height: 400px; overflow: hidden; }
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 575.98px) {
  .contact-form-card { padding: 24px 18px; }
}

/* ================================================================
   BLOG
   ================================================================ */

/* Page hero — large title variant used on blog/article pages */
.page-hero-title-lg { font-size: clamp(1.6rem, 4vw, 2.6rem); }

/* Blog listing grid */
.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-muted);
}
.blog-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-muted) 0%, rgba(125,103,76,.12) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); opacity: .4;
}
.blog-card-body {
  padding: 20px;
  display: flex; flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 8px;
  text-decoration: none;
}
.blog-card-cat:hover { color: var(--espresso); }
.blog-card-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 8px; line-height: 1.4;
  text-decoration: none;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-title:hover { color: var(--espresso); }
.blog-card-excerpt {
  font-size: .88rem; color: var(--text-sub);
  line-height: 1.6; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .78rem; color: var(--text-muted);
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.blog-card-meta svg { flex-shrink: 0; }

/* Article (single post) hero extras */
.blog-hero-cat {
  display: inline-block;
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 12px;
}
.blog-hero-cat:hover { color: #fff; }
.blog-hero-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.7);
  margin-top: 10px;
}
.blog-hero-meta svg { opacity: .7; flex-shrink: 0; }

/* Article body */
.blog-article { padding: 40px 0; }
.blog-article-cover {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.blog-article-lead {
  font-size: 1.1rem; color: var(--text-sub);
  line-height: 1.75; font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 18px; margin-bottom: 28px;
}

/* Prose — rendered HTML content (blog body & static pages) */
.prose {
  font-size: 1rem; line-height: 1.8; color: var(--text);
}
.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: 'Cinzel', serif;
  color: var(--espresso-dark);
  margin-top: 1.8em; margin-bottom: .6em; line-height: 1.3;
}
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.05rem; }
.prose p { margin-bottom: 1.2em; }
.prose ul, .prose ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 10px 18px; margin: 1.5em 0;
  background: rgba(125,103,76,.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-sub); font-style: italic;
}
.prose img {
  max-width: 100%; height: auto;
  border-radius: var(--radius-sm);
  margin: .5em 0;
}
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.2em; font-size: .92rem; }
.prose th { background: var(--bg-muted); padding: 10px 12px; text-align: left; font-weight: 700; border-bottom: 2px solid var(--border); }
.prose td { padding: 9px 12px; border-bottom: 1px solid var(--border); }
.prose code { background: var(--bg-muted); padding: 2px 6px; border-radius: 4px; font-size: .88em; }
.prose pre { background: var(--bg-muted); padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; margin-bottom: 1.2em; }
.prose pre code { background: none; padding: 0; }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2em 0; }

/* Sidebar cards */
.blog-sidebar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 24px;
}
.blog-sidebar-title {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* Category list in sidebar */
.blog-cat-list { list-style: none; padding: 0; margin: 0; }
.blog-cat-list li { border-bottom: 1px solid var(--border); }
.blog-cat-list li:last-child { border-bottom: none; }
.blog-cat-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  font-size: .9rem; color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.blog-cat-link:hover { color: var(--espresso); }
.blog-cat-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 7px;
  background: var(--bg-muted); border-radius: 99px;
  font-size: .72rem; font-weight: 700; color: var(--text-muted);
}

/* Related posts list in sidebar */
.blog-related-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
}
.blog-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.blog-related-item:hover .blog-related-title { color: var(--espresso); }
.blog-related-thumb {
  width: 56px; height: 42px; object-fit: cover;
  border-radius: var(--radius-sm); flex-shrink: 0;
}
.blog-related-thumb-placeholder {
  width: 56px; height: 42px; flex-shrink: 0;
  background: var(--bg-muted); border-radius: var(--radius-sm);
}
.blog-related-title {
  font-size: .85rem; font-weight: 600; line-height: 1.4;
  color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color var(--transition);
}
.blog-related-date { font-size: .75rem; color: var(--text-muted); margin-top: 4px; }

/* Pagination */
.blog-pagination {
  display: flex; gap: 6px; align-items: center; justify-content: center;
  flex-wrap: wrap; margin-top: 32px;
}
.blog-pagination .page-link {
  min-width: 38px; height: 38px; padding: 0 10px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600;
  color: var(--text-sub); background: var(--bg-surface);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all var(--transition);
}
.blog-pagination .page-link:hover,
.blog-pagination .page-link.active {
  background: var(--espresso); color: #fff; border-color: var(--espresso);
}

@media (max-width: 767.98px) {
  .blog-article-lead { font-size: 1rem; }
  .blog-card-body { padding: 16px; }
  .blog-sidebar-card { padding: 18px; }
}

/* ============================================================
   About Page
   ============================================================ */

/* --- Hero --- */
.about-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--espresso-dark) url('/assets/images/hero-bg.webp') center/cover no-repeat;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,71,94,.85) 0%, rgba(26,94,126,.70) 100%);
  z-index: 0;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 1;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h-sm);
}
.about-hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.about-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.about-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 0;
}
.about-hero-breadcrumb {
  --bs-breadcrumb-divider: '/';
  margin-top: 20px;
}
.about-hero-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.55); font-size: .82rem; text-decoration: none; }
.about-hero-breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.about-hero-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: .82rem; }
.about-hero-breadcrumb .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* --- Story Section --- */
.about-story {
  padding: 88px 0 72px;
  background: var(--bg-body);
}
.about-story-deco {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.about-story-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.about-story-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  max-width: 80px;
}
.about-story-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--espresso-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.about-story-lead {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 28px;
}
.about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .93rem;
  color: var(--text-sub);
}
.about-feature-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Story card */
.about-content-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow);
  position: relative;
}
.about-content-card::before {
  content: '\201C';
  position: absolute;
  top: -16px;
  left: 36px;
  font-family: 'Cinzel', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .35;
}
.about-content-body.prose p {
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: .97rem;
}
.about-content-body.prose p:last-child { margin-bottom: 0; }
.about-content-body.prose strong { color: var(--espresso); font-weight: 600; }
.about-content-signature {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.about-signature-brand {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--espresso);
  margin-bottom: 2px;
}
.about-signature-tagline {
  font-size: .82rem;
  color: var(--gold);
  font-style: italic;
  margin: 0;
}

/* --- Stats Section --- */
.about-stats-section {
  padding: 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--espresso);
}
.about-stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.about-stat-item:last-child { border-right: none; }
.about-stat-num {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat-label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* --- Values Section --- */
.about-values-section {
  padding: 88px 0 80px;
  background: var(--bg-subtle);
}
.about-section-header { margin-bottom: 8px; }
.about-section-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.about-section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--espresso-dark);
  margin-bottom: 12px;
}
.about-section-desc {
  color: var(--text-muted);
  font-size: .95rem;
  max-width: 440px;
  margin: 0 auto;
}
.about-value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.about-value-card--featured {
  background: var(--espresso);
  border-color: var(--espresso);
}
.about-value-card--featured .about-value-title { color: #fff; }
.about-value-card--featured .about-value-desc  { color: rgba(255,255,255,.72); }
.about-value-card--featured .about-value-icon-wrap {
  background: rgba(255,255,255,.12);
  color: var(--gold);
}
.about-value-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 20px;
}
.about-value-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--espresso-dark);
  margin-bottom: 10px;
}
.about-value-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* --- CTA Section --- */
.about-cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--espresso-dark) url('/assets/images/hero-bg.webp') center/cover no-repeat;
  overflow: hidden;
}
.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,71,94,.70) 0%, rgba(18,71,94,.55) 100%);
  z-index: 0;
}
.about-cta-inner {
  position: relative;
  z-index: 1;
}
.about-cta-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-cta-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
}
.about-cta-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 0;
  letter-spacing: .04em;
}
.about-cta-tagline em { color: var(--gold); font-style: italic; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .about-story { padding: 60px 0 52px; }
  .about-content-card { padding: 28px 24px; }
  .about-values-section { padding: 60px 0; }
  .about-cta-section { padding: 72px 0; }
}
@media (max-width: 767.98px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat-item:nth-child(2) { border-right: none; }
  .about-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,.12); }
  .about-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .about-content-card::before { font-size: 3.5rem; }
}
@media (max-width: 575.98px) {
  .about-hero { padding: 120px 0 60px; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   CHECKOUT
================================================================ */
.checkout-card { border-radius: 12px; border: 1px solid var(--border); }

/* Address card (checkout + saved addresses) */
.address-card-wrap {
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s, background .15s;
}
.address-card-wrap:hover { border-color: var(--espresso); }
.address-card-wrap.selected { border-color: var(--espresso); background: rgba(26,94,126,.04); }
.address-card {
  display: block;
  padding: 12px 40px 12px 16px;
  cursor: pointer;
  border: none !important;
  background: none !important;
  border-radius: 10px;
}
.address-card:hover { border-color: transparent; }
.address-card.selected { border-color: transparent; background: none; }
.btn-addr-edit {
  position: absolute;
  top: 10px; right: 10px;
  width: 26px; height: 26px;
  border: none;
  background: var(--bg-muted);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.btn-addr-edit:hover { background: var(--espresso); color: #fff; }
.checkout-card .card-header { background: transparent; border-bottom: 1px solid var(--border); padding: 14px 20px; }
.checkout-card .card-body { padding: 20px; }
.checkout-card .card-footer { background: transparent; border-top: 1px solid var(--border); padding: 16px 20px; }

/* Order type cards */
.order-type-card { display: block; cursor: pointer; }
.order-type-option {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 18px 12px; border: 2px solid var(--border); border-radius: 10px;
  text-align: center; transition: all .2s; color: var(--text-muted);
}
.order-type-card.selected .order-type-option,
.order-type-card input:checked ~ .order-type-option {
  border-color: var(--espresso); color: var(--espresso); background: rgba(26,94,126,.06);
}

/* Payment method cards */
.payment-method-card { display: block; cursor: pointer; }
.payment-method-inner {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: 10px; transition: all .2s;
}
.payment-method-icon { color: var(--text-muted); flex-shrink: 0; width: 50px; display: flex; align-items: center; justify-content: center; }
.payment-method-name { flex: 1; font-weight: 500; }
.payment-method-check { display: none; color: var(--espresso); }
.payment-method-card.selected .payment-method-inner,
.payment-method-card input:checked ~ .payment-method-inner {
  border-color: var(--espresso); background: rgba(26,94,126,.05);
}
.payment-method-card.selected .payment-method-check,
.payment-method-card input:checked ~ .payment-method-inner .payment-method-check {
  display: block;
}

/* Tip grid */
.tip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.tip-btn {
  padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  background: transparent; font-size: .9rem; font-weight: 500; cursor: pointer;
  transition: all .18s; color: var(--text);
}
.tip-btn:hover { border-color: var(--espresso); color: var(--espresso); }
.tip-btn.active { border-color: var(--espresso); background: var(--espresso); color: #fff; }

/* Summary tip row */
#summaryTipRow { display: none; }

/* ================================================================
   FLOATING ORDER TRACKER
================================================================ */
.order-tracker {
  position: fixed; bottom: 24px; right: 24px; z-index: 1080;
  width: 280px; background: #fff; border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18); overflow: hidden;
  font-size: .875rem;
}
.order-tracker-header {
  display: flex; align-items: center; gap: 6px; padding: 12px 14px;
  background: var(--espresso); color: #fff; font-weight: 600;
}
.order-tracker-title { flex: 1; }
.order-tracker-num { font-size: .78rem; opacity: .85; }
.order-tracker-close {
  background: none; border: none; color: #fff; padding: 2px; opacity: .8; cursor: pointer; line-height: 1;
}
.order-tracker-close:hover { opacity: 1; }
.order-tracker-body { padding: 14px; }
.order-tracker-status { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-weight: 500; }
.tracker-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: #6c757d; transition: background .3s;
}
.tracker-dot.status-confirmed  { background: var(--espresso); }
.tracker-dot.status-preparing  { background: #f59e0b; animation: pulse-dot 1.5s infinite; }
.tracker-dot.status-on_the_way { background: #06b6d4; animation: pulse-dot 1.5s infinite; }
.tracker-dot.status-delivered  { background: #22c55e; }
.tracker-dot.status-cancelled  { background: #ef4444; }
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: .7; }
}
.order-tracker-steps { display: flex; align-items: center; gap: 0; }
.tracker-step {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border); flex-shrink: 0; transition: background .3s;
}
.tracker-step.done   { background: var(--espresso); }
.tracker-step.active { background: var(--espresso); box-shadow: 0 0 0 3px rgba(26,94,126,.25); }
.tracker-step-line   { flex: 1; height: 2px; background: var(--border); margin: 0 2px; transition: background .3s; }
.tracker-step-line.done { background: var(--espresso); }
.order-tracker-footer { padding: 10px 14px 14px; }

/* ================================================================
   ORDER PROGRESS STEPS (order-detail)
================================================================ */
.order-progress-steps {
  display: flex; align-items: center; background: var(--bg-muted);
  border-radius: 12px; padding: 16px 20px;
}
.order-progress-step { display: flex; flex-direction: column; align-items: center; min-width: 52px; }
.step-dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--border); margin-bottom: 6px;
  transition: background .3s; border: 2px solid var(--border);
}
.order-progress-step.done .step-dot   { background: var(--espresso); border-color: var(--espresso); }
.order-progress-step.active .step-dot { background: var(--espresso); border-color: var(--espresso); box-shadow: 0 0 0 4px rgba(26,94,126,.2); }
.step-label { font-size: .7rem; color: var(--text-muted); text-align: center; white-space: nowrap; }
.order-progress-step.done .step-label,
.order-progress-step.active .step-label { color: var(--espresso); font-weight: 500; }
.order-progress-line { flex: 1; height: 2px; background: var(--border); transition: background .3s; }
.order-progress-line.done { background: var(--espresso); }

/* ================================================================
   STAR RATING
================================================================ */
.star-label { cursor: pointer; }
.star-icon { transition: fill .15s; }

@media (max-width: 575.98px) {
  .order-tracker { right: 12px; bottom: 12px; width: 260px; }
  .tip-grid { gap: 6px; }
  .tip-btn { padding: 6px 12px; font-size: .82rem; }
}

/* ============================================================
   Career
   ============================================================ */
.career-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-surface);
  transition: box-shadow var(--transition), transform var(--transition);
  color: inherit;
  text-decoration: none;
}
.career-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.career-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .75rem;
}
.career-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 .2rem;
  color: var(--text);
}
.career-card-dept {
  font-size: .8rem;
  color: var(--espresso-light);
  font-weight: 500;
}
.career-type-badge,
.career-type-badge-lg {
  background: var(--espresso);
  color: #fff;
  font-size: .72rem;
  white-space: nowrap;
  border-radius: 20px;
  padding: .25rem .65rem;
}
.career-type-badge-lg {
  font-size: .85rem;
  padding: .4rem .8rem;
}
.career-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}
.career-meta-item {
  font-size: .82rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.career-card-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.career-card-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--espresso);
}

/* ============================================================
   Event Application Form
   ============================================================ */
.event-form-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--espresso);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Event type grid cards */
.event-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s, color .15s;
  min-height: 86px;
}
.event-type-card:hover { border-color: var(--espresso); }
.event-type-card.selected,
.event-type-card:has(input:checked) {
  border-color: var(--espresso);
  background: rgba(26,94,126,.06);
  color: var(--espresso);
}
.event-type-icon { line-height: 1; opacity: .7; }
.event-type-card.selected .event-type-icon,
.event-type-card:has(input:checked) .event-type-icon { opacity: 1; }
.event-type-label { font-size: .78rem; font-weight: 600; line-height: 1.2; }

/* Pill option (guest count, venue) */
.event-option-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 2px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  transition: border-color .15s, background .15s, color .15s;
  white-space: nowrap;
}
.event-option-pill:hover { border-color: var(--espresso); }
.event-option-pill.selected,
.event-option-pill:has(input:checked) {
  border-color: var(--espresso);
  background: var(--espresso);
  color: #fff;
}

/* Service checkboxes */
.event-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  transition: border-color .15s, background .15s, color .15s;
  min-height: 80px;
}
.event-service-card:hover { border-color: var(--gold); }
.event-service-card.selected,
.event-service-card:has(input:checked) {
  border-color: var(--gold);
  background: rgba(125,103,76,.08);
  color: var(--espresso);
}

/* bg-espresso utility */
.bg-espresso { background-color: var(--espresso) !important; }


/* ============================================================
   z-index: sticky-top below fixed header / FABs
   ============================================================ */
.sticky-top { z-index: 99; }

/* ============================================================
   Skeleton Loading
   ============================================================ */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-muted) 25%, var(--bg-subtle) 50%, var(--bg-muted) 75%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}
.skeleton-img   { width: 64px; height: 64px; border-radius: var(--radius-sm); flex-shrink: 0; }
.skeleton-line  { height: 12px; border-radius: 6px; }
.skeleton-line-sm { height: 10px; border-radius: 5px; }

/* Cart page skeleton items */
.cart-skeleton-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cart-skeleton-item:last-child { border-bottom: none; }
.cart-skeleton-body { flex: 1; display: flex; flex-direction: column; gap: 8px; }

/* ============================================================
   Menu Load-More
   ============================================================ */
.product-card.js-hidden-product { display: none; }
.load-more-wrap {
  text-align: center;
  margin-top: 24px;
  padding-top: 8px;
}

/* ============================================================
   SVG Icon Preview (admin)
   ============================================================ */
.svg-icon-preview svg { width: 100%; height: 100%; display: block; }

/* ============================================================
   Testimonials Section
   ============================================================ */
.testimonials-section { background: var(--bg-muted); }

.testimonials-swiper {
  padding-bottom: 52px !important;
  overflow: hidden;
}
.testimonials-swiper .swiper-wrapper { align-items: stretch; }
.testimonials-swiper .swiper-slide   { height: auto; }

.testimonial-card {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 12px rgba(var(--espresso-rgb), .07);
  border: 1px solid var(--border-subtle);
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(var(--espresso-rgb), .13);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: .95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-content {
  font-style: italic;
  color: var(--text-sub);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 20px;
  font-size: .93rem;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.testimonial-author-name {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-author-title {
  font-size: .76rem;
  color: var(--text-muted);
}
.testimonial-date {
  font-size: .74rem;
  color: var(--text-muted);
}

/* Swiper pagination & nav */
.testimonials-pagination .swiper-pagination-bullet {
  background: var(--espresso);
  opacity: .3;
}
.testimonials-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--espresso);
}
.testimonials-prev,
.testimonials-next {
  color: var(--espresso) !important;
  --swiper-navigation-size: 22px;
}
.testimonials-prev::after,
.testimonials-next::after { font-size: 22px !important; }

@media (max-width: 767px) {
  .testimonials-prev,
  .testimonials-next { display: none; }
}
