:root {
    --primary-color: #ff0000;     /* Zorpido Red */
    --secondary-color: #ffe100;  /* Zorpido Yellow */
    --dark-color: #1a1a1a;       /* Charcoal Black */
    --light-color: #ffffff;      /* Clean White */
}

body {
    font-family: 'Nunito', sans-serif;
    height: 100%;
    margin: 0;
    padding-top: 5rem; 
    padding: 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--dark-color);
}
/* ================================================================
   ZORPIDO NAVBAR  —  Production CSS
   Brand: #D92B2B (red) | #F5B800 (yellow) | #FFFFFF (white)
   Load after Bootstrap 5 CSS.
   Zero HTML changes — class/ID selectors only.
================================================================ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --nb-red: #D92B2B;
  --nb-red-dark: #A81F1F;
  --nb-red-mid: #F03434;
  --nb-yellow: #F5B800;
  --nb-yellow-lt: #FFD340;
  --nb-yellow-bg: #FFF9E0;
  --nb-white: #FFFFFF;
  --nb-cream: #FFFBF2;
  --nb-dark: #1C0A00;
  --nb-text: #2D1200;
  --nb-muted: #7A4A30;
  --nb-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nb-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================================================
   NAVBAR SHELL — sticky, glass
================================================================ */
#futuristic-navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 0 !important;
  background: rgba(255, 251, 242, 0.90) !important;
  backdrop-filter: blur(18px) saturate(1.7) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.7) !important;
  border-bottom: 1.5px solid rgba(217, 43, 43, 0.10);
  box-shadow: 0 2px 20px rgba(217, 43, 43, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: background 0.3s var(--nb-ease), box-shadow 0.3s var(--nb-ease);
}

/* Red→Yellow top accent stripe */
#futuristic-navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nb-red) 0%, var(--nb-yellow) 50%, var(--nb-red) 100%);
  background-size: 200% 100%;
  animation: nbAccentSlide 3.5s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes nbAccentSlide {
  from {
    background-position: 200% center;
  }

  to {
    background-position: -200% center;
  }
}

/* Scrolled — more opaque + deeper shadow */
#futuristic-navbar.nb-scrolled {
  background: rgba(255, 251, 242, 0.97) !important;
  box-shadow: 0 4px 32px rgba(217, 43, 43, 0.14), 0 1px 6px rgba(0, 0, 0, 0.07) !important;
}

#futuristic-navbar .container {
  padding-top: 11px;
  padding-bottom: 11px;
}

/* ================================================================
   LOGO
================================================================ */
#futuristic-navbar .navbar-brand {
  padding: 0;
  flex-shrink: 0;
  transition: transform 0.22s var(--nb-ease), filter 0.22s var(--nb-ease);
}

#futuristic-navbar .navbar-brand:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 0 10px rgba(217, 43, 43, 0.30));
}

#futuristic-navbar .morph-logo {
  border-radius: 10px;
  display: block;
  transition: box-shadow 0.22s var(--nb-ease);
}

/* ================================================================
   DESKTOP NAV LINKS  (≥ 992px)
================================================================ */
@media (min-width: 992px) {

  #futuristic-navbar .navbar-nav .nav-link {
    position: relative;
    color: var(--nb-text) !important;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.02em;
    padding: 8px 15px !important;
    border-radius: 10px;
    transition: color 0.2s var(--nb-ease), background 0.2s var(--nb-ease);
  }

  /* Slide-up underline */
  #futuristic-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--nb-red), var(--nb-yellow));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.24s var(--nb-ease);
  }

  #futuristic-navbar .navbar-nav .nav-link:hover,
  #futuristic-navbar .navbar-nav .nav-link.active {
    color: var(--nb-red) !important;
    background: rgba(217, 43, 43, 0.06);
  }

  #futuristic-navbar .navbar-nav .nav-link:hover::after,
  #futuristic-navbar .navbar-nav .nav-link.active::after {
    width: 55%;
  }

  /* Kill underline for dropdown-toggle & special buttons */
  #futuristic-navbar #navbarAccount::after,
  #futuristic-navbar .btn-register-glow::after,
  #futuristic-navbar a.nav-link[href*="login"]::after {
    display: none !important;
  }
}
/* ================================================================
   COMMON NAVBAR BUTTON SIZE
================================================================ */

#futuristic-navbar a:has(.bi-cart-fill),
#futuristic-navbar a:has(.bi-shop),
#futuristic-navbar #navbarAccount {

  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 42px;
  /* SAME HEIGHT */
  margin-top: 0;
  /* REMOVE uneven push */
  padding: 0 14px;
  /* balanced spacing */

  border-radius: 12px;
  vertical-align: middle;
}


/* ================================================================
   CART BUTTON
================================================================ */

#futuristic-navbar a:has(.bi-cart-fill) {
  width: 42px;
  padding: 0;
}

#futuristic-navbar .bi-cart-fill {
  font-size: 1.15rem;
  color: var(--nb-red);
}


/* ================================================================
   POS BUTTON
================================================================ */

#futuristic-navbar a:has(.bi-shop) {
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
}


/* ================================================================
   ACCOUNT BUTTON
================================================================ */

#futuristic-navbar #navbarAccount {
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

#navbarAccount .bi-person-circle {
  font-size: 1.4rem;
}
/* ================================================================
   DROPDOWN MENU  — CSS handles only appearance;
   visibility toggled exclusively by JS via .nb-dd-open
================================================================ */
#futuristic-navbar .dropdown-menu {
  display: block !important;
  /* always in DOM, JS shows/hides */
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) scale(0.96) !important;
  transition: opacity 0.20s var(--nb-ease),
    transform 0.22s var(--nb-spring),
    visibility 0s linear 0.22s !important;
  /* appearance */
  background: var(--nb-white) !important;
  border: 1.5px solid rgba(217, 43, 43, 0.12) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 52px rgba(217, 43, 43, 0.14),
    0 4px 14px rgba(0, 0, 0, 0.07) !important;
  padding: 6px !important;
  min-width: 210px !important;
  margin-top: 10px !important;
  right: 0 !important;
  left: auto !important;
  overflow: hidden;
}

/* Red→Yellow stripe at top */
#futuristic-navbar .dropdown-menu::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--nb-red), var(--nb-yellow));
  border-radius: 3px 3px 0 0;
  margin: -6px -6px 10px;
}

/* Open state — added by JS on the .dropdown wrapper */
#futuristic-navbar .dropdown.nb-dd-open .dropdown-menu {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
  transition: opacity 0.20s var(--nb-ease),
    transform 0.22s var(--nb-spring),
    visibility 0s linear 0s !important;
}

/* Dropdown items */
#futuristic-navbar .dropdown-item {
  border-radius: 11px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--nb-text) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: background 0.17s var(--nb-ease), color 0.17s var(--nb-ease) !important;
  cursor: pointer;
}

#futuristic-navbar .dropdown-item:hover,
#futuristic-navbar .dropdown-item:focus {
  background: rgba(217, 43, 43, 0.07) !important;
  color: var(--nb-red) !important;
}

#futuristic-navbar .dropdown-item.text-danger,
#futuristic-navbar button.dropdown-item[type="submit"] {
  color: var(--nb-red) !important;
}

#futuristic-navbar .dropdown-item.text-danger:hover,
#futuristic-navbar button.dropdown-item[type="submit"]:hover {
  background: rgba(217, 43, 43, 0.09) !important;
}

/* Emoji prefixes */
#futuristic-navbar .dropdown-item[href*="dashboard"]::before {
  content: '🏠\00a0';
}

#futuristic-navbar .dropdown-item[href*="cart"]:not(.nav-link)::before {
  content: '🍔\00a0';
}

#futuristic-navbar button.dropdown-item[type="submit"]::before {
  content: '🚪\00a0';
}

#futuristic-navbar .dropdown-divider {
  border-color: rgba(217, 43, 43, 0.10) !important;
  margin: 4px 2px !important;
}

/* Logout form */
#futuristic-navbar .dropdown-menu form {
  margin: 0;
  padding: 0;
}

#futuristic-navbar .dropdown-menu form button.dropdown-item {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: inherit;
}

/* ================================================================
   LOGIN BUTTON
================================================================ */
#futuristic-navbar a.nav-link[href*="login"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: #ffc107 !important;
  color: #dc3545 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: 100px !important;
  border: 1.5px solid rgba(217, 43, 43, 0.22) !important;
  text-decoration: none !important;
  transition: background 0.2s var(--nb-ease), color 0.2s var(--nb-ease), border-color 0.2s var(--nb-ease), transform 0.2s var(--nb-ease), box-shadow 0.2s var(--nb-ease) !important;
}

#futuristic-navbar a.nav-link[href*="login"]:hover {
  background: rgba(217, 43, 43, 0.06) !important;
  color: var(--nb-red) !important;
  border-color: var(--nb-red) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(217, 43, 43, 0.12) !important;
}

/* ================================================================
   REGISTER BUTTON
================================================================ */
#futuristic-navbar .btn-register-glow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--nb-red) !important;
  color: var(--nb-white) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  text-decoration: none !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 4px 18px rgba(217, 43, 43, 0.30),
    3px 3px 0 var(--nb-red-dark) !important;
  transition: background 0.2s var(--nb-ease),
    transform 0.2s var(--nb-ease),
    box-shadow 0.2s var(--nb-ease) !important;
}

#futuristic-navbar .btn-register-glow:hover {
  background: var(--nb-red-mid) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(217, 43, 43, 0.38),
    3px 3px 0 var(--nb-red-dark) !important;
}

#futuristic-navbar .btn-register-glow:active {
  transform: translateY(1px) !important;
  box-shadow: 0 2px 8px rgba(217, 43, 43, 0.28),
    1px 1px 0 var(--nb-red-dark) !important;
}

/* Shine sweep */
#futuristic-navbar .btn-register-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.45s ease;
  pointer-events: none;
}

#futuristic-navbar .btn-register-glow:hover::before {
  left: 130%;
}

/* Yellow dot accent */
#futuristic-navbar .btn-register-glow::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--nb-yellow);
  flex-shrink: 0;
  order: 99;
  display: inline-block;
}

/* ================================================================
   HAMBURGER  — visible ONLY on mobile (< 992px)
================================================================ */
#futuristic-navbar .custom-toggler {
  display: none;
  /* hidden desktop by default */
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--nb-white) !important;
  border: 1.5px solid rgba(217, 43, 43, 0.18) !important;
  border-radius: 13px !important;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(217, 43, 43, 0.08);
  transition: border-color 0.2s var(--nb-ease),
    box-shadow 0.2s var(--nb-ease),
    transform 0.2s var(--nb-ease);
  z-index: 1080;
  position: relative;
}

#futuristic-navbar .custom-toggler:hover {
  border-color: var(--nb-red) !important;
  box-shadow: 0 4px 16px rgba(217, 43, 43, 0.18);
  transform: scale(1.05);
}

#futuristic-navbar .custom-toggler:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(217, 43, 43, 0.15) !important;
}

/* 3 bars */
#futuristic-navbar .custom-toggler span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--nb-red);
  transition: transform 0.30s var(--nb-ease),
    opacity 0.25s var(--nb-ease),
    width 0.25s var(--nb-ease);
}

#futuristic-navbar .custom-toggler span:nth-child(1) {
  width: 22px;
}

#futuristic-navbar .custom-toggler span:nth-child(2) {
  width: 14px;
}

#futuristic-navbar .custom-toggler span:nth-child(3) {
  width: 22px;
}

#futuristic-navbar .custom-toggler:hover span:nth-child(2) {
  width: 22px;
}

/* Open → × morphs */
#futuristic-navbar .custom-toggler.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 22px;
}

#futuristic-navbar .custom-toggler.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#futuristic-navbar .custom-toggler.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 22px;
}

/* Show only mobile */
@media (max-width: 991.98px) {
  #futuristic-navbar .custom-toggler {
    display: flex !important;
  }
}

/* ================================================================
   MOBILE OVERLAY  (injected by JS as #nb-overlay)
   JS sets `right` dynamically to exclude the panel area so panel
   links are NEVER blocked by the overlay.
   z-index sits below the panel (1065).
================================================================ */
#nb-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* JS overrides on mobile to clip panel area */
  z-index: 1055;
  /* below panel (1065) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s var(--nb-ease);
}

#nb-overlay.nb-overlay-visible {
  pointer-events: auto;
}

/* ================================================================
   MOBILE PANEL  — right-side drawer  (< 992px)
================================================================ */
@media (max-width: 991.98px) {

  /* --- Panel shell --- */
  #futuristic-navbar .navbar-collapse {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(310px, 84vw) !important;
    height: 100dvh !important;
    background: var(--nb-white) !important;
    border-left: 1.5px solid rgba(217, 43, 43, 0.10) !important;
    box-shadow: -6px 0 40px rgba(217, 43, 43, 0.14), -2px 0 10px rgba(0, 0, 0, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 76px 18px 36px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* start off-screen */
    transform: translateX(105%) !important;
    transition: transform 0.36s var(--nb-spring) !important;
    z-index: 1065 !important;
    /* above overlay (1055) */
    pointer-events: auto !important;
    /* panel itself always interactive */
    /* kill Bootstrap flex defaults */
    flex-basis: auto !important;
    margin: 0 !important;
    max-height: none !important;
  }

  /* Panel top stripe */
  #futuristic-navbar .navbar-collapse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nb-red), var(--nb-yellow));
    pointer-events: none;
    /* stripe must NOT block clicks */
  }

  /* Open state — toggled by JS */
  #futuristic-navbar .navbar-collapse.nb-panel-open {
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }

  /* Kill Bootstrap's collapsing height animation */
  #futuristic-navbar .navbar-collapse.collapsing {
    transition: none !important;
    height: 100dvh !important;
  }

  /* Ensure EVERY link/button inside panel is always clickable */
  #futuristic-navbar .navbar-collapse *,
  #futuristic-navbar .navbar-collapse a,
  #futuristic-navbar .navbar-collapse button {
    pointer-events: auto !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /* --- Section headings inside panel --- */
  #futuristic-navbar .navbar-nav.mx-auto::before {
    content: 'NAVIGATE';
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--nb-muted);
    padding: 0 10px 8px;
    pointer-events: none;
    position: relative;
    z-index: 0 !important;
  }

  #futuristic-navbar .navbar-nav:last-child::before {
    content: 'ACCOUNT';
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--nb-muted);
    padding: 4px 10px 8px;
    pointer-events: none;
    position: relative;
    z-index: 0 !important;
  }

  /* --- Nav lists --- */
  #futuristic-navbar .navbar-nav {
    width: 100% !important;
    flex-direction: column !important;
    gap: 3px !important;
  }

  #futuristic-navbar .navbar-nav.mx-auto {
    border-bottom: 1px solid rgba(217, 43, 43, 0.08);
    padding-bottom: 14px;
    margin-bottom: 12px !important;
  }

  /* --- Nav links in panel --- */
  #futuristic-navbar .navbar-nav .nav-link {
    color: var(--nb-text) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    padding: 13px 14px !important;
    border-radius: 13px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: background 0.18s var(--nb-ease), color 0.18s var(--nb-ease) !important;
    cursor: pointer !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: rgba(217, 43, 43, 0.10);
  }

  #futuristic-navbar .navbar-nav .nav-link::after {
    display: none !important;
  }

  #futuristic-navbar .navbar-nav .nav-link::before {
    font-size: 18px;
    flex-shrink: 0;
    pointer-events: none;
  }

  #futuristic-navbar .navbar-nav .nav-link[href*="menu"]::before {
    content: '🍔';
  }

  #futuristic-navbar .navbar-nav .nav-link[href*="gallery"]::before {
    content: '📸';
  }

  #futuristic-navbar .navbar-nav .nav-link[href*="contact"]::before {
    content: '📞';
  }

  #futuristic-navbar .navbar-nav .nav-link:hover,
  #futuristic-navbar .navbar-nav .nav-link:active {
    background: rgba(217, 43, 43, 0.06) !important;
    color: var(--nb-red) !important;
  }

  /* --- Cart in panel --- */
  #futuristic-navbar .nav-link.position-relative:has(.bi-cart-fill),
  #futuristic-navbar a.nav-link:has(.bi-cart-fill) {
    width: 100% !important;
    height: auto !important;
    padding: 13px 14px !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    border-radius: 13px !important;
    border: 1.5px solid rgba(217, 43, 43, 0.14) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  #futuristic-navbar a.nav-link:has(.bi-cart-fill)::before,
  #futuristic-navbar .nav-link.position-relative:has(.bi-cart-fill)::before {
    content: 'Cart';
    font-size: 15px;
    font-weight: 700;
    color: inherit;
    order: 1;
    pointer-events: none;
  }

  #futuristic-navbar a.nav-link:has(.bi-cart-fill):hover,
  #futuristic-navbar .nav-link.position-relative:has(.bi-cart-fill):hover {
    background: rgba(217, 43, 43, 0.06) !important;
    transform: none !important;
    box-shadow: none !important;
  }

  /* --- POS in panel --- */
  #futuristic-navbar a:has(.bi-shop) {
    width: 100% !important;
    border-radius: 13px !important;
    padding: 13px 14px !important;
    font-size: 15px !important;
    justify-content: flex-start !important;
    transform: none !important;
  }

  #futuristic-navbar a:has(.bi-shop):hover {
    transform: none !important;
  }

  /* --- Account toggle in panel --- */
  #futuristic-navbar #navbarAccount {
    width: 100% !important;
    border-radius: 13px !important;
    padding: 13px 14px !important;
    font-size: 15px !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    transform: none !important;
    cursor: pointer !important;
  }

  #futuristic-navbar #navbarAccount:hover {
    transform: none !important;
  }

  #futuristic-navbar #navbarAccount .nb-chevron {
    margin-left: auto;
  }

  /* --- Dropdown in panel — hidden until JS adds .nb-mobile-dd-open --- */
  #futuristic-navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    transition: none !important;
    width: 100% !important;
    margin-top: 6px !important;
    border-radius: 13px !important;
    box-shadow: 0 4px 16px rgba(217, 43, 43, 0.09) !important;
    min-width: 0 !important;
    /* hidden by default on mobile */
    visibility: hidden !important;
    opacity: 0 !important;
    display: none !important;
    pointer-events: none !important;
  }

  #futuristic-navbar .dropdown-menu.nb-mobile-dd-open {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  /* Ensure dropdown items are tappable */
  #futuristic-navbar .dropdown-menu .dropdown-item {
    cursor: pointer !important;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: rgba(217, 43, 43, 0.10);
  }

  /* --- Login in panel --- */
  #futuristic-navbar a.nav-link[href*="login"] {
    width: 100% !important;
    border-radius: 13px !important;
    padding: 13px 14px !important;
    font-size: 15px !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    transform: none !important;
    cursor: pointer !important;
  }

  #futuristic-navbar a.nav-link[href*="login"]::before {
    content: '🔑';
    font-size: 17px;
    pointer-events: none;
  }

  #futuristic-navbar a.nav-link[href*="login"]:hover,
  #futuristic-navbar a.nav-link[href*="login"]:active {
    transform: none !important;
    box-shadow: none !important;
    background: rgba(217, 43, 43, 0.06) !important;
  }

  /* --- Register in panel --- */
  #futuristic-navbar .btn-register-glow {
    width: 100% !important;
    border-radius: 14px !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    justify-content: center !important;
    transform: none !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.15);
  }

  #futuristic-navbar .btn-register-glow::before {
    display: none !important;
  }

  #futuristic-navbar .btn-register-glow:hover,
  #futuristic-navbar .btn-register-glow:active {
    transform: none !important;
  }
}

/* ================================================================
   TINY PHONES  ≤ 390px  (iPhone SE, Galaxy A13, etc.)
================================================================ */
@media (max-width: 390px) {
  #futuristic-navbar .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  #futuristic-navbar .morph-logo {
    height: 36px !important;
  }

  #futuristic-navbar .navbar-collapse {
    width: 90vw !important;
    padding: 70px 14px 32px !important;
  }
}

/* ================================================================
   BODY SCROLL LOCK
================================================================ */
body.nb-body-locked {
  overflow: hidden !important;
  touch-action: none !important;
}

/* ═══════════════════════════════════════════
   ZORPIDO HERO SECTION — CSS
   Brand: Red #D92B2B | Yellow #F5B800 | White
   Font deps: Fredoka One, Plus Jakarta Sans (Google Fonts)
   Icon dep:  Font Awesome 6
═══════════════════════════════════════════ */

:root {
  --z-red: #D92B2B;
  --z-red-dark: #A81F1F;
  --z-red-light: #F03434;
  --z-yellow: #F5B800;
  --z-yellow-lt: #FFD340;
  --z-yellow-pale: #FFF8DC;
  --z-white: #FFFFFF;
  --z-cream: #FFFBF2;
  --z-dark: #1C0A00;
  --z-text: #2D1200;
  --z-muted: #7A4A30;
  --z-border: rgba(217, 43, 43, 0.12);
}

/* ═══════════════════════════════════════════
   SECTION SHELL
═══════════════════════════════════════════ */
#hero {
  position: relative;
  background: var(--z-cream);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 78% 40%, rgba(245, 184, 0, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 8% 70%, rgba(217, 43, 43, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.z-dot-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(217, 43, 43, 0.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}

.z-arch {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--z-red);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.z-top-bar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  animation: zFadeDown 0.5s ease both;
}

.z-top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.z-open-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--z-white);
  border: 1.5px solid var(--z-border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--z-text);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.z-open-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.z-delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--z-yellow);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--z-dark);
}

.z-delivery-badge i {
  font-size: 11px;
}

.z-top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.z-nav-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--z-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}

.z-nav-link:hover {
  color: var(--z-red);
}

.z-nav-sep {
  width: 1px;
  height: 16px;
  background: var(--z-border);
}

.z-nav-order-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--z-red);
  color: var(--z-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
  box-shadow: 0 4px 14px rgba(217, 43, 43, 0.3);
}

.z-nav-order-btn:hover {
  background: var(--z-red-light);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   HERO GRID
═══════════════════════════════════════════ */
.z-hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 20px 56px 48px;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

/* ── LEFT ── */
.z-hero-left {
  display: flex;
  flex-direction: column;
}

.z-category-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--z-yellow-pale);
  border: 1.5px solid rgba(245, 184, 0, 0.45);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 800;
  color: #7A5800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 22px;
  opacity: 0;
  animation: zSlideRight 0.5s 0.1s ease forwards;
}

.z-hero-headline {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(52px, 6.2vw, 88px);
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  opacity: 0;
  animation: zSlideRight 0.55s 0.2s ease forwards;
}

.z-hl-dark {
  display: block;
  color: var(--z-text);
}

.z-hl-red {
  display: block;
  color: var(--z-red);
  position: relative;
  padding-bottom: 6px;
}

.z-hl-red::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 65%;
  height: 5px;
  background: var(--z-yellow);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  animation: zScaleIn 0.45s 0.75s ease forwards;
}

.z-hero-tagline {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--z-muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 34px;
  opacity: 0;
  animation: zSlideRight 0.55s 0.3s ease forwards;
}

.z-hero-tagline b {
  color: var(--z-text);
  font-weight: 700;
}

/* CTA Buttons */
.z-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  opacity: 0;
  animation: zSlideRight 0.55s 0.38s ease forwards;
}

.z-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--z-red);
  color: var(--z-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(217, 43, 43, 0.35), 4px 4px 0 var(--z-red-dark);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.z-btn-primary:hover {
  background: var(--z-red-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(217, 43, 43, 0.4), 4px 4px 0 var(--z-red-dark);
}

.z-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--z-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid var(--z-border);
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}

.z-btn-outline:hover {
  border-color: var(--z-red);
  background: rgba(217, 43, 43, 0.04);
  transform: translateY(-2px);
}

/* Quick tags */
.z-quick-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  opacity: 0;
  animation: zSlideRight 0.55s 0.44s ease forwards;
}

.z-qt-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--z-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.z-qt {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--z-white);
  border: 1.5px solid var(--z-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--z-text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.z-qt:hover {
  background: var(--z-red);
  border-color: var(--z-red);
  color: var(--z-white);
}

/* Social proof */
.z-proof-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  opacity: 0;
  animation: zSlideRight 0.55s 0.52s ease forwards;
}

.z-proof-avatars {
  display: flex;
  align-items: center;
}

.z-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--z-white);
  background: linear-gradient(135deg, var(--z-yellow-lt), var(--z-red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-left: -10px;
  overflow: hidden;
  flex-shrink: 0;
}

.z-avatar:first-child {
  margin-left: 0;
}

.z-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.z-proof-stars {
  color: var(--z-yellow);
  font-size: 12px;
}

.z-proof-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--z-muted);
}

.z-proof-text b {
  color: var(--z-text);
  font-weight: 800;
}

.z-proof-sep {
  width: 1px;
  height: 30px;
  background: var(--z-border);
}

.z-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.z-proof-num {
  font-family: 'Fredoka One', sans-serif;
  font-size: 20px;
  line-height: 1;
  color: var(--z-text);
}

.z-proof-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--z-muted);
}

/* ── RIGHT PANEL ── */
.z-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: zPopIn 0.65s 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.z-showcase-card {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.z-showcase-circle {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  background: radial-gradient(circle, var(--z-yellow) 0%, rgba(245, 184, 0, 0.25) 60%, transparent 80%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.18;
}

.z-food-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(155deg, #FFF3D0 0%, #FFE0A0 50%, #FFCB7A 100%);
  box-shadow:
    0 28px 72px rgba(217, 43, 43, 0.18),
    0 6px 20px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.z-food-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.z-food-placeholder {
  text-align: center;
  padding: 24px;
}

.z-food-emoji {
  font-size: 96px;
  line-height: 1;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.12));
}

.z-food-hint {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(180, 100, 20, 0.45);
}

.z-chip-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.z-chip-icon.z-ci-red {
  background: rgba(217, 43, 43, 0.10);
}

.z-chip-icon.z-ci-yellow {
  background: rgba(245, 184, 0, 0.12);
}

.z-chip-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--z-text);
  line-height: 1;
  display: block;
}

.z-chip-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--z-muted);
  display: block;
  margin-top: 2px;
}

/* Order pill */
.z-card-pill {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--z-red);
  color: var(--z-white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 100px;
  box-shadow: 0 8px 26px rgba(217, 43, 43, 0.38);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
  z-index: 4;
  transition: transform 0.18s, box-shadow 0.18s;
}

.z-card-pill:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 14px 34px rgba(217, 43, 43, 0.42);
}

.z-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--z-yellow);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FEATURES BAND
═══════════════════════════════════════════ */
.z-features-band {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  background: var(--z-white);
  border-top: 1.5px solid rgba(217, 43, 43, 0.08);
  margin-top: 56px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.03);
}

.z-feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1.5px solid rgba(217, 43, 43, 0.08);
  text-decoration: none;
  transition: background 0.18s;
}

.z-feature-item:last-child {
  border-right: none;
}

.z-feature-item:hover {
  background: var(--z-cream);
}

.z-fi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.z-fi-red {
  background: rgba(217, 43, 43, 0.08);
}

.z-fi-yellow {
  background: rgba(245, 184, 0, 0.12);
}

.z-fi-green {
  background: rgba(34, 197, 94, 0.10);
}

.z-fi-blue {
  background: rgba(59, 130, 246, 0.08);
}

.z-fi-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--z-text);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.z-fi-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--z-muted);
  display: block;
}

/* ── Wave ── */
.z-hero-wave {
  position: relative;
  z-index: 4;
  line-height: 0;
  margin-top: -1px;
}

.z-hero-wave svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
@keyframes zSlideRight {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zPopIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(14px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes zFadeDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zScaleIn {
  to {
    transform: scaleX(1);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .z-top-bar {
    padding: 18px 32px;
  }

  .z-hero-grid {
    padding: 16px 32px 48px;
    gap: 32px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE LANDSCAPE (≤860px)
═══════════════════════════════════════════ */
@media (max-width: 860px) {
  .z-hero-grid {
    grid-template-columns: 1fr;
    padding: 16px 24px 48px;
    gap: 40px;
  }

  .z-hero-left {
    align-items: center;
    text-align: center;
    order: 2;
  }

  .z-hero-right {
    order: 1;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }

  .z-category-chip {
    margin-left: auto;
    margin-right: auto;
  }

  .z-hero-tagline {
    max-width: 100%;
  }

  .z-cta-row {
    justify-content: center;
  }

  .z-quick-tags {
    justify-content: center;
  }

  .z-proof-strip {
    justify-content: center;
  }
  .z-top-bar {
    padding: 16px 24px;
  }

  .z-delivery-badge {
    display: none;
  }

  .z-nav-link,
  .z-nav-sep {
    display: none;
  }

  .z-features-band {
    flex-wrap: wrap;
  }

  .z-feature-item {
    flex: 1 1 50%;
    border-bottom: 1.5px solid rgba(217, 43, 43, 0.08);
  }

  .z-feature-item:nth-child(2n) {
    border-right: none;
  }

  .z-feature-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE PORTRAIT (≤480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .z-hero-headline {
    font-size: 50px;
  }

  .z-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .z-btn-primary,
  .z-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .z-proof-strip {
    gap: 12px;
  }

  .z-proof-sep {
    display: none;
  }

  .z-feature-item {
    flex: 1 1 100%;
    border-right: none !important;
  }

  .z-feature-item:not(:last-child) {
    border-bottom: 1.5px solid rgba(217, 43, 43, 0.08) !important;
  }

  .z-chip-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .z-chip-title {
    font-size: 11px;
  }

  .z-chip-sub {
    font-size: 10px;
  }
}
/* .featured-slider-section */
/* ========================================
   ZORPIDO FEATURED SLIDER STYLES
   Enhanced Image Gallery with Animations
   ======================================== */

:root {
  --zorpido-red: #DC2626;
  --zorpido-red-dark: #991B1B;
  --zorpido-red-light: #EF4444;
  --zorpido-yellow: #FBBF24;
  --zorpido-yellow-light: #FEF3C7;
  --zorpido-yellow-dark: #F59E0B;
}

.zorpido-featured-slider {
  /* background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 50%, #FFFFFF 100%); */
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.zorpido-featured-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatDecor 12s ease-in-out infinite;
}

.zorpido-featured-slider::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatDecor 15s ease-in-out infinite reverse;
}

@keyframes floatDecor {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.1);
  }
}

/* Section Header */
.slider-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-red-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  margin: 0;
}

/* Slider Wrapper */
.featured-slider-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.slider-decoration {
  position: absolute;
  top: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
}

.decoration-left {
  left: -50px;
  background: var(--zorpido-yellow);
  animation: decorPulse 4s ease-in-out infinite;
}

.decoration-right {
  right: -50px;
  background: var(--zorpido-red);
  animation: decorPulse 4s ease-in-out infinite reverse;
}

@keyframes decorPulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-50%) scale(1.3);
    opacity: 0.7;
  }
}

/* Main Carousel */
.zorpido-carousel {
  position: relative;
  border-radius: 24px;
  padding: 1.5rem;
  overflow: hidden;
}

.zorpido-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--zorpido-red), var(--zorpido-yellow), var(--zorpido-red));
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* Carousel Track */
.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.9) translateX(100px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.carousel-slide.exit {
  opacity: 0;
  transform: scale(0.9) translateX(-100px);
}

/* Slide Inner */
.slide-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Image Container */
.image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-container:hover .featured-image {
  transform: scale(1.08);
}

/* Image Info Overlay */
.image-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.image-container:hover .image-info-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.image-description {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Navigation Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.control-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-red-dark));
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
  font-size: 1.5rem;
  pointer-events: auto;
  opacity: 0;
  transform: scale(0.8);
}

.zorpido-carousel:hover .control-arrow {
  opacity: 1;
  transform: scale(1);
}

.control-arrow:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(220, 38, 38, 0.6);
}

.control-arrow:active {
  transform: scale(0.95);
}

/* Thumbnail Navigation */
.thumbnail-navigation {
  margin-top: 1.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--zorpido-yellow) #E5E7EB;
}

.thumbnail-navigation::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-navigation::-webkit-scrollbar-track {
  background: #E5E7EB;
  border-radius: 3px;
}

.thumbnail-navigation::-webkit-scrollbar-thumb {
  background: var(--zorpido-yellow);
  border-radius: 3px;
}

.thumbnail-track {
  display: flex;
  gap: 1rem;
  padding: 0.5rem 0;
}

.thumbnail-item {
  position: relative;
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  background: none;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.thumbnail-item.active {
  border-color: var(--zorpido-red);
  box-shadow: 0 0 0 2px var(--zorpido-yellow);
}

.thumbnail-item.active .thumbnail-overlay {
  opacity: 0;
}

.thumbnail-item:hover {
  transform: scale(1.05);
  border-color: var(--zorpido-yellow);
}

.thumbnail-item:hover .thumbnail-overlay {
  opacity: 0.3;
}

/* Progress Indicators */
.progress-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.progress-dot {
  width: 50px;
  height: 6px;
  background: #ff0000;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dot-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--zorpido-red), var(--zorpido-yellow));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-dot.active .dot-fill {
  animation: fillProgress 5s linear;
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.progress-dot:hover {
  background: #D1D5DB;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10;
}

.counter-separator {
  margin: 0 0.25rem;
  opacity: 0.6;
}

/* Autoplay Toggle */
.autoplay-toggle {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid var(--zorpido-yellow);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 1.25rem;
}

.autoplay-toggle:hover {
  background: var(--zorpido-red);
  border-color: var(--zorpido-red);
  transform: scale(1.1);
}

.autoplay-toggle .play-icon {
  display: none;
}

.autoplay-toggle.active .pause-icon {
  display: block;
}

.autoplay-toggle.active .play-icon {
  display: none;
}

.autoplay-toggle:not(.active) .pause-icon {
  display: none;
}

.autoplay-toggle:not(.active) .play-icon {
  display: block;
}

/* Info Bar */
.slider-info-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6B7280;
  font-weight: 600;
  font-size: 0.938rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--zorpido-red);
}

/* Fullscreen Modal */
.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fullscreen-modal.active {
  display: flex;
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  z-index: 10;
}

.modal-close:hover {
  background: var(--zorpido-red);
  border-color: var(--zorpido-red);
  transform: rotate(90deg);
}

.modal-content {
  width: auto;
  max-height: 90%;
  padding: 10px;
}

#fullscreenImage {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.modal-nav-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.modal-nav-btn:hover {
  background: var(--zorpido-red);
  border-color: var(--zorpido-red);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .zorpido-featured-slider {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .zorpido-carousel {
    padding: 1rem;
  }

  .control-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
    opacity: 1;
  }

  .thumbnail-item {
    width: 80px;
    height: 60px;
  }

  .slider-info-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .image-title {
    font-size: 1.25rem;
  }

  .image-description {
    font-size: 0.875rem;
  }

  .modal-nav {
    padding: 0 1rem;
  }

  .modal-nav-btn {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .slide-counter,
  .autoplay-toggle {
    display: none;
  }

  .control-arrow {
    width: 40px;
    height: 40px;
  }
}






/* ===========================
why-choose
=========================== */

.zorpido-why-choose {
  /* background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 30%, #FFFFFF 70%, #FEF3C7 100%); */
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

:root {
  --red: #E8150B;
  --red-deep: #C01008;
  --red-soft: #FF3B30;
  --yellow: #FFD200;
  --yellow-deep: #F5C400;
  --yellow-pale: #FFF5C0;
  --white: #FFFFFF;
  --off-white: #FFFDF5;
}

/* === SECTION WRAPPER === */
.zorpido-services {
  background-image:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(255, 210, 0, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(232, 21, 11, 0.1) 0%, transparent 55%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}



/* Decorative large circle */
.zorpido-services::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.zorpido-services .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}

/* === SECTION HEADER === */
.zorpido-services .section-header {
  text-align: center;
  margin-bottom: 72px;
}

.zorpido-services .section-header h2 {
  font-size: clamp(48px, 7vw, 80px);
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 0 6px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

/* Yellow underline slash on heading */
.zorpido-services .section-header h2::after {
  content: '';
  display: block;
  height: 6px;
  width: 60%;
  margin: 10px auto 0;
  background: var(--yellow);
  border-radius: 3px;
}

.zorpido-services .section-header p {
  font-size: 17px;
  color: #7A3A38;
  max-width: 420px;
  margin: 18px auto 0;
  line-height: 1.65;
  font-weight: 500;
}

/* === CATEGORY LABELS === */
.zorpido-services .service-category {
  margin-bottom: 60px;
}

.zorpido-services .category-title {
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  display: inline-block;
  padding: 6px 18px 5px;
  border-radius: 4px 4px 0 0;
  margin-bottom: 0;
  position: relative;
}

.zorpido-services .category-title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

/* Line below category label */
.zorpido-services .service-category>.category-title+.services-grid,
.zorpido-services .service-category {
  border-top: 3px solid var(--red);
  padding-top: 32px;
}

/* === SERVICES GRID === */
.zorpido-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* === SERVICE CARD === */
.zorpido-services .service-card {
  background: var(--white);
  border: 2px solid rgba(232, 21, 11, 0.12);
  border-radius: 18px;
  padding: 32px 26px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.22, .68, 0, 1.2),
    border-color 0.25s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 2px 12px rgba(232, 21, 11, 0.06);
}

/* Yellow left edge accent */
.zorpido-services .service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--yellow);
  transition: height 0.3s ease, top 0.3s ease;
}

/* Red corner fill on hover */
.zorpido-services .service-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zorpido-services .service-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: var(--red);
  box-shadow:
    0 16px 48px rgba(232, 21, 11, 0.14),
    0 4px 16px rgba(255, 210, 0, 0.2);
}

.zorpido-services .service-card:hover::before {
  background: var(--red);
  top: 0;
  bottom: 0;
  border-radius: 0;
}

.zorpido-services .service-card:hover::after {
  opacity: 1;
}

/* === SERVICE ICON === */
.zorpido-services .service-icon {
  font-size: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow);
  border-radius: 14px;
  margin-bottom: 18px;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(.22, .68, 0, 1.6);
}

.zorpido-services .service-card:hover .service-icon {
  background: var(--yellow);
  border-color: var(--yellow-deep);
  transform: rotate(-6deg) scale(1.1);
}

/* === CARD TITLES === */
.zorpido-services .service-card h4,
.zorpido-services .service-card .feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--red-deep);
  margin: 0 0 10px;
  line-height: 1.3;
}

/* === CARD BODY === */
.zorpido-services .service-card p,
.zorpido-services .service-card .feature-description {
  font-size: 14px;
  color: #6B4040;
  line-height: 1.72;
  margin: 0;
  font-weight: 400;
}

/* === UPCOMING CATEGORY === */
.zorpido-services .service-category.upcoming .category-title {
  background: var(--yellow);
  color: var(--red-deep);
}

.zorpido-services .service-category.upcoming {
  border-top-color: var(--yellow-deep);
}

/* === COMING SOON CARD === */
.zorpido-services .service-card.coming-soon {
  background: #FFFBEA;
  border: 2px dashed var(--yellow-deep);
  box-shadow: none;
}

.zorpido-services .service-card.coming-soon::before {
  background: var(--yellow);
}

.zorpido-services .service-card.coming-soon:hover {
  border-color: var(--red);
  box-shadow: 0 16px 48px rgba(255, 210, 0, 0.2);
}

.zorpido-services .service-card.coming-soon:hover::before {
  background: var(--red);
}

/* === COMING BADGE === */
.zorpido-services .coming-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-deep);
  background: var(--yellow);
  border-radius: 100px;
  border: 1.5px solid var(--yellow-deep);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .zorpido-services {
    padding: 72px 0 80px;
  }

  .zorpido-services .container {
    padding: 0 20px;
  }

  .zorpido-services .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zorpido-services .section-header {
    margin-bottom: 48px;
  }

  .zorpido-services .service-card {
    padding: 26px 22px;
  }
}
/* CTA Section */
.cta-section {
  /* background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-red-dark)); */
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 4rem;
}
.cta-content {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--zorpido-red);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--zorpido-red);
}

.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
  background: white;
  color: var(--zorpido-red);
  transform: translateY(-3px);
}

/* CTA Stats */
.cta-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--zorpido-yellow);
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  animation: countUp 2s ease-out;
}

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

.stat-label {
  font-size: 0.938rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.float-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: floatAround 20s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 10%;
  animation-delay: 4s;
  font-size: 2.5rem;
}

.element-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 8s;
}

.element-4 {
  top: 60%;
  right: 5%;
  animation-delay: 12s;
  font-size: 2rem;
}

.element-5 {
  bottom: 10%;
  right: 20%;
  animation-delay: 16s;
  font-size: 2.5rem;
}

@keyframes floatAround {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg) scale(1.2);
  }
  50% {
    transform: translate(-20px, -50px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(40px, -20px) rotate(270deg) scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .zorpido-why-choose {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-inner {
    padding: 2rem;
  }

  .cta-section {
    padding: 2rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .header-badge {
    width: 80px;
    height: 80px;
  }

  .badge-icon {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 1.25rem;
  }
}

/* ===========================
reward section
   =========================== */
  .loyalty-program-section {
    /* background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 30%, #FFFFFF 70%, #FEF3C7 100%); */
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }

  .loyalty-program-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .loyalty-program-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 3.5rem;
  }

  .loyalty-content {
    position: relative;
    z-index: 1;
  }

  .loyalty-heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
  }

  .loyalty-lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .loyalty-lead::before {
    content: '🎁';
    font-size: 1.5rem;
  }

  .benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
  }

  .benefits-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
  }

  .benefits-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(220, 53, 69, 0.15);
  }

  .benefits-list li i {
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .loyalty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background-color:var(--light-color);
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 2, 6, 0);
    text-decoration: none;
  }

  .loyalty-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 53, 69, 0.4);
  }

  .loyalty-cta::after {
    content: '→';
    font-size: 1.3rem;
    transition: transform 0.3s ease;
  }

  .loyalty-cta:hover::after {
    transform: translateX(5px);
  }

  .loyalty-img-wrapper {
    position: relative;
    padding: 2rem;
  }

  .loyalty-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
  }

  .loyalty-img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 70px rgba(220, 53, 69, 0.25);
  }

  .loyalty-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }

  /* Tier Cards */
  .tiers-section {
    margin-top: 5rem;
  }

  .reward-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .reward-card:hover::before {
    transform: translateX(100%);
  }

  .reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .reward-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
  }

  .reward-card:hover .icon {
    transform: scale(1.15) rotate(10deg);
  }

  .reward-card h5 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .reward-card .points {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
  }

  .reward-card .desc {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
  }

  /* Starter Tier */
  .reward-card.starter {
border-color: #25995c;
    background-color: #e3ffc0;
    color: #25995c;
  }

  .reward-card.starter .icon {
    background: var(--light-color);
    color: #ffffff;
  }
  .reward-card.starter .icon i {
  font-size: 2rem;
  color: #25995c;
}


  .reward-card.starter .points {
    background: #f8f9fa;
    color: #25995c;
  }

  .reward-card.starter:hover {
    border-color: #25995c;
    box-shadow: 0 15px 40px rgba(13, 240, 62, 0.25);

  }

  /* Select Tier */
  .reward-card.select {
    border-color: #0dcaf0;
    color: #0dcaf0;
  }

  .reward-card.select .icon {
    background: linear-gradient(135deg, #0dcaf0, #0aa2c0);
    color: white;
  }

  .reward-card.select .points {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
  }

  .reward-card.select:hover {
    border-color: #0dcaf0;
    box-shadow: 0 15px 40px rgba(13, 202, 240, 0.25);
  }

  /* Gold Tier */
  .reward-card.gold {
    border-color: #ffc107;
    color: #f59f00;
  }

  .reward-card.gold .icon {
    background: linear-gradient(135deg, #ffc107, #f59f00);
    color: white;
  }

  .reward-card.gold .points {
    background: rgba(255, 193, 7, 0.15);
    color: #f59f00;
  }

  .reward-card.gold:hover {
    border-color: #ffc107;
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.3);
  }

  /* Elite Tier */
  .reward-card.elite {
    border-color: #c700ff;
    background: #fbeeff;
    color: #dc3545;
  }

  .reward-card.elite .icon {
    background: linear-gradient(135deg, #c700ff, #c862e4);
    color: white;
    box-shadow: 0 8px 20px rgba(162, 53, 220, 0.3);
  }

  .reward-card.elite .points {
    background: rgba(220, 53, 69, 0.15);
    color: #c700ff;
  }

  .reward-card.elite:hover {
    border-color: #c700ff;
    box-shadow: 0 15px 40px rgba(212, 0, 255, 0.35);
  }

  .reward-card.elite h5 {
    color: #c700ff;
  }

  /* Badge for Elite */
  .elite-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #b035dc;
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }

    .loyalty-heading {
      font-size: 1.75rem;
    }

    .loyalty-lead {
      font-size: 1.15rem;
    }

    .benefits-list li {
      font-size: 0.95rem;
      padding: 0.875rem 1rem;
    }

    .loyalty-img-wrapper {
      padding: 1rem;
      margin-top: 2rem;
    }

    .tiers-section {
      margin-top: 3rem;
    }

    .reward-card {
      margin-bottom: 1.5rem;
    }
  }
/* === Featured Menu Section (Minimal Glow) === */
.featured-menu-section {
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  /* background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 30%, #FFFFFF 70%, #FEF3C7 100%); */

}

.section-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* === Glass Menu Card === */
.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* only bottom */
}

.glass-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* subtle bottom glow */
}
/* === Menu Image === */
.menu-card img {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  height: 230px;
  object-fit: cover;
}

/* === Glass Buttons (Soft Glow) === */
.btn-glass {
  background: rgb(255 53 53);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 6px 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.btn-glass:hover {
  background: rgba(255, 0, 0, 0.45);
  transform: translateY(-2px);
}

/* === Secondary Button === */
.btn-glass-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* === View Full Menu Button (same as your register style) === */
.btn-register-glow {
  background: linear-gradient(90deg, rgba(255,0,0,0.8), rgba(255,64,64,0.8));
  color: #fff;
  border: none;
  width: auto;
  border-radius: 30px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.btn-register-glow:hover {
  background: linear-gradient(90deg, rgba(255,64,64,1), rgba(255,0,0,1));
  transform: translateY(-2px);
}
/* === Responsive Grid === */
@media (max-width: 768px) {
  .featured-menu-section .card {
    margin-bottom: 1.5rem;
  }
  .featured-menu-section .card img {
    height: 200px;
  }
  .section-title {
    font-size: 1.6rem;
  }
}

/* === Modal Glass Effect === */
/* Glass modal remains */
.glass-modal {
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #fff;
}
.glass-modal .modal-header {
  background: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-modal .modal-title {
  color: #fff;
  font-weight: 600;
}


@media (max-width: 576px) {
  .modal-dialog {
    margin: 1rem;
  }
  .modal-img {
    max-height: 200px;
  }
}
/* === Popup Modal Scrollable Description === */
#dishModal .modal-body {
  max-height: 70vh; /* limit height */
  overflow-y: auto; /* scroll if content exceeds */
}

#dishModal .modal-body::-webkit-scrollbar {
  width: 6px;
}

#dishModal .modal-body::-webkit-scrollbar-thumb {
  background-color: rgba(255, 0, 0, 0.3);
  border-radius: 3px;
}


/* ========================================
   ZORPIDO GALLERY SECTION STYLES
   Enhanced with Animations and Brand Colors
   ======================================== */

:root {
  --zorpido-red: #DC2626;
  --zorpido-red-dark: #991B1B;
  --zorpido-red-light: #EF4444;
  --zorpido-yellow: #FBBF24;
  --zorpido-yellow-light: #FEF3C7;
  --zorpido-yellow-dark: #F59E0B;
}

.zorpido-gallery-section {
  /* background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 30%, #FFFFFF 70%, #FEF3C7 100%); */
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.gallery-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.deco-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: decoFloat 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -50px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.3), transparent);
}

.shape-2 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  right: -50px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3), transparent);
  animation-delay: 7s;
}

@keyframes decoFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.deco-emoji {
  position: absolute;
  font-size: 3rem;
  opacity: 0.15;
  animation: emojiSpin 20s linear infinite;
}

.emoji-2 {
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes emojiSpin {
  0% {
    transform: rotate(0deg) translateX(50px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(50px) rotate(-360deg);
  }
}

/* Section Header */
.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.header-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
}

.icon-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--zorpido-yellow-light), var(--zorpido-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--zorpido-red);
  box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(5deg);
  }
}

.icon-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--zorpido-red);
  border-radius: 50%;
  animation: particleBurst 2s ease-out infinite;
}

.p-1 {
  top: 0;
  left: 50%;
  animation-delay: 0s;
}

.p-2 {
  top: 50%;
  right: 0;
  animation-delay: 0.5s;
}

.p-3 {
  bottom: 0;
  left: 50%;
  animation-delay: 1s;
}

.p-4 {
  top: 50%;
  left: 0;
  animation-delay: 1.5s;
}

@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

.gallery-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.brand-name {
  background: var(--primary-color);
  background-clip: text;
  position: relative;
  /* display: inline-block; */
}

.gallery-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.decoration-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--zorpido-red), transparent);
  border-radius: 2px;
  animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
  0%, 100% {
    width: 60px;
  }
  50% {
    width: 80px;
  }
}

.decoration-dot {
  width: 10px;
  height: 10px;
  background: var(--zorpido-yellow);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  aspect-ratio: 1;
  transition: transform 0.3s ease;
}

.card-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.image-container {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-yellow));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .image-container {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.gallery-card:hover .image-container::before {
  opacity: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-container:hover .gallery-image {
  transform: scale(1.1);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.image-container:hover .overlay-content {
  transform: translateY(0);
}

@keyframes zoomPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.image-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Corner Badge */
.corner-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.image-container:hover .corner-badge {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Shine Effect */
.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  z-index: 4;
}

.image-container:hover .shine-effect {
  left: 150%;
}

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.btn-view-gallery {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, var(--zorpido-red), var(--zorpido-red-dark));
  color: white;
  border-radius: 50px;
  font-size: 1.063rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-view-gallery:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.5);
  color: white;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  z-index: -1;
  /* transform: scale(0); */
  transition: transform 0.4s ease;
}

.btn-view-gallery:hover .btn-bg {
  transform: scale(1);
}

.btn-icon {
  font-size: 1.25rem;
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

.btn-view-gallery:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
}

.btn-view-gallery:hover .btn-shine {
  animation: btnShine 0.8s ease;
}

@keyframes btnShine {
  to {
    left: 150%;
  }
}

/* Empty State */
.gallery-empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.empty-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--zorpido-yellow-light), var(--zorpido-yellow));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 4rem;
  color: var(--zorpido-red);
  animation: emptyIconFloat 3s ease-in-out infinite;
}

@keyframes emptyIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.gallery-empty-state h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--zorpido-red-dark);
  margin-bottom: 1rem;
}

.gallery-empty-state p {
  font-size: 1.125rem;
  color: #6B7280;
  margin-bottom: 2rem;
}

.empty-decoration {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.empty-decoration .dot {
  width: 12px;
  height: 12px;
  background: var(--zorpido-yellow);
  border-radius: 50%;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.empty-decoration .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.empty-decoration .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotBounce {
  0%, 80%, 100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}





/* ================================
   Footer Styling (Zorpido Café)
================================ */

.footer-container {
  /* background: linear-gradient(180deg, #FFFFFF 0%, #FEF3C7 30%, #FFFFFF 70%, #FEF3C7 100%); */
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  margin-bottom: 40px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* General text styling */
.footer-container p,
.footer-container a {
  font-size: 0.95rem;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

/* Footer links and icons */
.footer-link {
  color: var(--dark-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(3px);
}

.footer-link i {
  transition: all 0.3s ease;
}

.footer-link:hover i {
  color: var(--primary-color);
  transform: scale(1.2);
}

/* Section headings */
.footer-container h5 {
  color: var(--primary-color);
}

/* Company Info Section */
.company-info {
  text-align: center;
  justify-content: center;
}

.company-info h6 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.company-info p {
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
}

.company-info p:hover,
.company-info a:hover {
  text-decoration: none;
}

/* Optional: make section responsive & compact on smaller screens */
@media (max-width: 768px) {
  .company-info {
    text-align: center;
  }
  .company-info h6 {
    font-size: 0.95rem;
  }
  .company-info p {
    font-size: 0.88rem;
  }
}

/* Dividers */
.footer-container hr {
  border-color: var(--primary-color);
  opacity: 0.5;
}

/* Bottom links */
.footer-container a.footer-link {
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-container a.footer-link:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .footer-container {
    padding: 30px 20px;
  }
  .footer-container p,
  .footer-container a {
    font-size: 0.9rem;
  }
  .footer-container img {
    max-height: 45px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
  }

  .footer-container .row {
    flex-direction: column;
    align-items: center;
  }

  .company-info {
    text-align: left;
  }

  .footer-container img {
    max-height: 40px;
  }

  .footer-container hr {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-container p,
  .footer-container a {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 20px 10px;
  }
  .footer-container p,
  .footer-container a {
    font-size: 0.85rem;
  }
  .footer-container img {
    max-height: 35px;
  }
}
@media (min-width: 1400px){
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1450px;
    }}




/* ================================
cta-section
/* ================================*/
.cta-section {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
    margin-top: 50px;
    padding: 4rem 1.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background-image: linear-gradient(135deg, #ff3c00, #eecc47);
    color: var(--light-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}



.cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.cta-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 36rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color:var(--white-color);
    border-radius: 9999px;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
    border: 2px solid var(--light-color);         
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
                0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.cta-button:hover {
    transform: scale(1.05);
    background-color: var(--light-color);
    color: var(--primary-color); 
}

/* Responsive */
@media (min-width: 640px) {
    .cta-title {
        font-size: 3rem;
    }
    .cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 4rem;
    }
}


/* ================================
age restriction modal
/* ================================*/
  #ageModal .modal-content {
    border-radius: 18px;
    padding: 25px 30px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  #ageModal h5 {
    font-weight: 600;
    font-size: 1.25rem;
  }

  #ageModal p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  #ageModal .btn {
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 0.95rem;
  }

  #ageModal .btn-primary {
    background: #ff914d;
    border-color: #ff914d;
  }

  #ageModal .btn-primary:hover {
    background: #ff7a26;
    border-color: #ff7a26;
  }

  #ageModal .btn-outline-secondary:hover {
    background: #f1f1f1;
  }





    /* ===============================================
     TESTIMONIALS SECTION - ZORPIDO CAFÉ
     Modern, Clean, Responsive Styling
     Brand Colors: Red (#E63946), White (#FFFFFF), Yellow (#FFD700)
     =============================================== */
  
    /* -----------------
     Section Container
     ----------------- */
    .zorpido-testimonials {
      position: relative;
      padding: 80px 20px;
      /* background: linear-gradient(135deg, #fff 0%, #fff5f5 100%); */
      overflow: hidden;
    }
  
    .zorpido-testimonials .container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
  
    /* -----------------
     Section Header
     ----------------- */
    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
      animation: fadeInUp 0.8s ease-out;
    }
  
    .header-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
    }
  
    .badge-icon {
      font-size: 40px;
      z-index: 2;
      animation: bounce 2s infinite;
    }
  
    .badge-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border: 3px solid #E63946;
      border-radius: 50%;
      animation: pulse-ring 2s ease-out infinite;
    }
  
    .section-title {
      font-size: 42px;
      font-weight: 700;
      color: #2b2b2b;
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
  
    .section-subtitle {
      font-size: 18px;
      color: #666;
      font-weight: 400;
    }
  
    /* -----------------
     Floating Quotes Background
     ----------------- */
    .floating-quotes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      pointer-events: none;
      opacity: 0.05;
      z-index: 1;
    }
  
    .quote-float {
      position: absolute;
      font-size: 200px;
      font-weight: 700;
      color: #E63946;

    }
  
    .quote-1 {
      top: 10%;
      left: 5%;
      animation: float 8s ease-in-out infinite;
    }
  
    .quote-2 {
      bottom: 15%;
      right: 8%;
      animation: float 10s ease-in-out infinite reverse;
    }
  
    /* -----------------
     Testimonial Slider Container
     ----------------- */
    .testimonial-slider-container {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
  
    .testimonial-slider {
      position: relative;
      width: 100%;
      min-height: 400px;
      overflow: hidden;
    }
  
    /* -----------------
     Testimonial Cards
     ----------------- */
    .testimonial-card {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      border-radius: 20px;
      padding: 50px 40px;
      box-shadow: 0 10px 40px rgba(230, 57, 70, 0.1);
      opacity: 0;
      transform: translateX(100px) scale(0.95);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
  
    .testimonial-card.active {
      opacity: 1;
      transform: translateX(0) scale(1);
      pointer-events: auto;
      position: relative;
    }
  
    .testimonial-card.prev {
      transform: translateX(-100px) scale(0.95);
      opacity: 0;
    }
  
    /* -----------------
     Customer Profile
     ----------------- */
    .customer-profile {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 30px;
    }
  
    .profile-image-wrapper {
      position: relative;
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }
  
    .customer-photo {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      z-index: 2;
    }
  
    .image-glow {
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      background: linear-gradient(135deg, #E63946, #FFD700);
      border-radius: 50%;
      opacity: 0.3;
      filter: blur(10px);
      animation: glow 3s ease-in-out infinite;
    }
  
    .verified-badge {
      position: absolute;
      bottom: -2px;
      right: -2px;
      background: #E63946;
      color: #fff;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      border: 3px solid #fff;
      z-index: 3;
      box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
    }
  
    .customer-details {
      flex: 1;
    }
  
    .customer-name {
      font-size: 22px;
      font-weight: 600;
      color: #2b2b2b;
      margin: 0 0 5px 0;
    }
  
    .customer-badge {
      font-size: 14px;
      color: #666;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 5px;
    }
  
    .customer-badge i {
      color: #E63946;
      font-size: 16px;
    }
  
    /* -----------------
     Rating Stars
     ----------------- */
    .rating-stars {
      display: flex;
      gap: 5px;
      margin-bottom: 25px;
      font-size: 22px;
    }
  
    .rating-stars i {
      color: #FFD700;
      transition: transform 0.3s ease;
    }
  
    .rating-stars i:hover {
      transform: scale(1.2);
    }
  
    /* -----------------
     Testimonial Message
     ----------------- */
    .testimonial-message {
      position: relative;
      padding: 0 20px;
    }
  
    .testimonial-message p {
      font-size: 18px;
      line-height: 1.8;
      color: #444;
      font-style: italic;
      margin: 0;
      text-align: center;
    }
  
    .quote-icon {
      position: absolute;
      font-size: 60px;
      font-weight: 700;
      color: #E63946;
      opacity: 0.2;

      line-height: 1;
    }
  
    .quote-icon {
      top: -20px;
      left: -10px;
    }
  
    .quote-icon.quote-close {
      bottom: -40px;
      right: -10px;
      top: auto;
      left: auto;
    }
  
    /* -----------------
     Navigation Controls
     ----------------- */
    .slider-navigation {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }
  
    .nav-btn {
      width: 50px;
      height: 50px;
      border: 2px solid #E63946;
      background: #fff;
      color: #E63946;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
  
    .nav-btn:hover {
      background: #E63946;
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
    }
  
    .nav-btn:active {
      transform: scale(0.95);
    }
  
    .nav-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.4s ease, height 0.4s ease;
    }
  
    .nav-btn:hover::before {
      width: 100px;
      height: 100px;
    }
  
    /* -----------------
     Slider Dots
     ----------------- */
    .slider-dots {
      display: flex;
      gap: 12px;
      align-items: center;
    }
  
    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ddd;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease;
      position: relative;
    }
  
    .dot:hover {
      background: #FFD700;
      transform: scale(1.2);
    }
  
    .dot.active {
      background: #E63946;
      width: 35px;
      border-radius: 6px;
    }
  
    /* -----------------
     Auto Progress Bar
     ----------------- */
    .auto-progress-bar {
      width: 100%;
      height: 4px;
      background: #f0f0f0;
      border-radius: 2px;
      margin-top: 30px;
      overflow: hidden;
      position: relative;
    }
  
    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #E63946, #FFD700);
      border-radius: 2px;
      width: 0;
      animation: progress 5s linear infinite;
      position: relative;
    }
  
    .progress-fill::after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 30px;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5));
    }
  
    /* -----------------
     Empty State
     ----------------- */
    .empty-state {
      text-align: center;
      padding: 80px 20px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(230, 57, 70, 0.08);
    }
  
    .empty-icon {
      font-size: 80px;
      margin-bottom: 20px;
      opacity: 0.6;
    }
  
    .empty-state h3 {
      font-size: 28px;
      font-weight: 600;
      color: #2b2b2b;
      margin-bottom: 10px;
    }
  
    .empty-state p {
      font-size: 16px;
      color: #666;
      margin-bottom: 30px;
    }
  
    .btn-share {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 35px;
      background: #E63946;
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
    }
  
    .btn-share:hover {
      background: #d32f3c;
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
    }
  
    /* -----------------
     Animations
     ----------------- */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
  
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  
    @keyframes bounce {
  
      0%,
      100% {
        transform: translateY(0);
      }
  
      50% {
        transform: translateY(-10px);
      }
    }
  
    @keyframes pulse-ring {
      0% {
        transform: scale(1);
        opacity: 1;
      }
  
      100% {
        transform: scale(1.5);
        opacity: 0;
      }
    }
  
    @keyframes float {
  
      0%,
      100% {
        transform: translateY(0);
      }
  
      50% {
        transform: translateY(-30px);
      }
    }
  
    @keyframes glow {
  
      0%,
      100% {
        opacity: 0.3;
      }
  
      50% {
        opacity: 0.6;
      }
    }
  
    @keyframes progress {
      0% {
        width: 0;
      }
  
      100% {
        width: 100%;
      }
    }
  
    /* -----------------
     Responsive Design
     ----------------- */
  
    /* Tablet */
    @media (max-width: 768px) {
      .zorpido-testimonials {
        padding: 60px 15px;
      }
  
      .section-title {
        font-size: 32px;
      }
  
      .section-subtitle {
        font-size: 16px;
      }
  
      .testimonial-card {
        padding: 40px 25px;
        min-height: 380px;
      }
  
      .customer-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
  
      .customer-details {
        width: 100%;
      }
  
      .testimonial-message p {
        font-size: 16px;
      }
  
      .quote-float {
        font-size: 150px;
      }
  
      .slider-navigation {
        gap: 20px;
      }
  
      .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
      }
    }
  
    /* Mobile */
    @media (max-width: 480px) {
      .zorpido-testimonials {
        padding: 50px 10px;
      }
  
      .section-title {
        font-size: 28px;
      }
  
      .section-subtitle {
        font-size: 14px;
      }
  
      .header-badge {
        width: 60px;
        height: 60px;
      }
  
      .badge-icon {
        font-size: 30px;
      }
  
      .testimonial-card {
        padding: 30px 20px;
        min-height: 350px;
      }
  
      .profile-image-wrapper {
        width: 70px;
        height: 70px;
      }
  
      .customer-name {
        font-size: 20px;
      }
  
      .rating-stars {
        font-size: 18px;
        justify-content: center;
      }
  
      .testimonial-message p {
        font-size: 15px;
        line-height: 1.6;
      }
  
      .quote-icon {
        font-size: 50px;
      }
  
      .slider-navigation {
        gap: 15px;
      }
  
      .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
  
      .dot {
        width: 10px;
        height: 10px;
      }
  
      .dot.active {
        width: 25px;
      }
  
      .empty-state {
        padding: 60px 15px;
      }
  
      .empty-icon {
        font-size: 60px;
      }
  
      .empty-state h3 {
        font-size: 22px;
      }
  
      .btn-share {
        padding: 12px 25px;
        font-size: 14px;
      }
    }