/* ============================================================
   Bunz Genz Cafe — Main Stylesheet
   ============================================================ */

:root {
  --yellow: #FFD400;
  --yellow-dark: #E6BF00;
  --black: #111111;
  --dark-gray: #1E1E1E;
  --white: #FFFFFF;
  --bg-light: #F8F8F8;
  --success: #27AE60;
  --error: #E74C3C;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.08);
  --shadow-card: 0 6px 18px rgba(17, 17, 17, 0.07);
  --shadow-pop: 0 16px 40px rgba(17, 17, 17, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-light);
  color: var(--black);
  margin: 0;
  padding-bottom: 40px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }

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

::selection { background: var(--yellow); color: var(--black); }

/* ---------------- Buttons ---------------- */
.btn-brand {
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-card);
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--yellow-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-brand:active { transform: translateY(0); }

.btn-outline-brand {
  background: transparent;
  border: 2px solid var(--black);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  transition: all 0.2s ease;
}
.btn-outline-brand:hover {
  background: var(--black);
  color: var(--white);
}

/* ---------------- Navbar ---------------- */
.navbar-brand-cafe {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.75rem;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  white-space: nowrap;
}
.logo-badge {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.3rem;
  transform: rotate(-6deg);
  flex-shrink: 0;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-search {
  flex: 1;
  max-width: 420px;
  position: relative;
}
.nav-search input {
  width: 100%;
  border: none;
  background: var(--bg-light);
  border-radius: 999px;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: box-shadow 0.2s ease;
}
.nav-search input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.5);
}
.nav-search i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.cart-nav-btn {
  position: relative;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}
.cart-nav-btn:hover { transform: scale(1.06); }
.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--white);
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 1.2rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.hero-blob {
  position: absolute;
  top: -80px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: var(--yellow);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  z-index: 0;
  animation: blobFloat 9s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.04); }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-text h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-text h1 span { color: var(--yellow); -webkit-text-stroke: 1.5px var(--black); }
.hero-text p {
  font-size: 1.05rem;
  color: #444;
  max-width: 460px;
  margin-bottom: 1.8rem;
}
.hero-img-wrap {
  position: relative;
  z-index: 1;
}
.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  transform: rotate(2deg);
  animation: heroFloat 4.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-12px); }
}
.hero-stat-chip {
  position: absolute;
  bottom: 18px;
  left: -18px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-pop);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}
.hero-stat-chip .icon-circle {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.hero-stat-chip strong { display: block; font-family: var(--font-display); font-size: 0.95rem; }
.hero-stat-chip span { font-size: 0.72rem; color: #777; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-blob { width: 380px; height: 380px; top: -60px; right: -100px; }
  .hero-text p { max-width: 100%; }
  .hero-stat-chip { left: 10px; }
}

/* ---------------- Category strip ---------------- */
.category-section { padding: 0.4rem 1.2rem 1.2rem; max-width: 1200px; margin: 0 auto; }
.category-scroller {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.4rem 0.1rem 1rem;
  scrollbar-width: none;
}
.category-scroller::-webkit-scrollbar { display: none; }
.category-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: all 0.18s ease;
  white-space: nowrap;
}
.category-chip i { font-size: 1rem; }
.category-chip:hover { transform: translateY(-2px); }
.category-chip.active {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

/* ---------------- Filters ---------------- */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 0 1rem;
}
.filter-bar select {
  border: none;
  background: var(--white);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-body);
}
.filter-bar select:focus { outline: 2px solid var(--yellow); }

/* ---------------- Menu grid ---------------- */
.menu-section { max-width: 1200px; margin: 0 auto; padding: 0.5rem 1.2rem 2rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.3rem;
}
.food-card {
    overflow: visible !important;
}

.food-body {
    overflow: visible !important;
}
.food-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.food-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.food-img-box { position: relative; aspect-ratio: 5/4; overflow: hidden; background: #eee; }
.food-img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.food-card:hover .food-img-box img { transform: scale(1.06); }

.badge-row {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  z-index: 2;
}
.food-badge {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.badge-best { background: var(--black); color: var(--yellow); }
.badge-offer { background: var(--error); color: var(--white); }

.veg-dot {
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  border-radius: 5px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}
.veg-dot span { width: 10px; height: 10px; border-radius: 50%; }
.veg-dot.veg span { background: var(--success); }
.veg-dot.non-veg span { background: var(--error); }

.food-body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.food-body h3 { font-size: 1.02rem; margin: 0; }
.food-desc { font-size: 0.8rem; color: #777; margin: 0; min-height: 2.1em; }
.food-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin-top: 0.2rem; }
.food-price { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.food-price-strike { font-size: 0.85rem; color: #999; text-decoration: line-through; }

.food-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 0.6rem; }
.qty-stepper {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg-light); border-radius: 999px; padding: 0.25rem;
}
.qty-stepper button {
  width: 28px; height: 28px; border-radius: 50%; border: none;
  background: var(--white); font-weight: 700; box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.qty-stepper span { font-weight: 700; min-width: 18px; text-align: center; font-size: 0.9rem; }
.add-cart-btn {
  background: var(--black); color: var(--yellow);
  border: none; border-radius: 999px; padding: 0.55rem 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.82rem;
  display: flex; align-items: center; gap: 0.4rem; cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease;
}
.add-cart-btn:hover { background: var(--yellow); color: var(--black); }
.add-cart-btn.added { animation: popAdd 0.4s ease; }
@keyframes popAdd {
  0% { transform: scale(1); }
  40% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.unavailable-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--black);
  z-index: 3;
}

.empty-state { text-align: center; padding: 3rem 1rem; color: #888; }
.empty-state i { font-size: 2.6rem; color: #ccc; margin-bottom: 0.7rem; display: block; }

/* ---------------- Floating cart pill ---------------- */
.floating-cart-pill {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 1040;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: var(--shadow-pop);
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  transition: transform 0.2s ease;
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.floating-cart-pill.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.floating-cart-pill:hover { transform: translateY(-3px); }
.floating-cart-pill .fc-count {
  background: var(--yellow); color: var(--black);
  border-radius: 50%; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.floating-cart-pill .fc-total { color: var(--yellow); }

/* ---------------- Cart drawer ---------------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(17,17,17,0.45);
  backdrop-filter: blur(2px);
  z-index: 1050; opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%;
  width: min(420px, 100%);
  background: var(--white);
  z-index: 1060;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  display: flex; flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.show { transform: translateX(0); }
.cart-drawer-header {
  padding: 1.2rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #eee;
}
.cart-drawer-header h3 { margin: 0; font-size: 1.15rem; }
.cart-drawer-header button {
  border: none; background: var(--bg-light); width: 34px; height: 34px;
  border-radius: 50%; cursor: pointer; font-size: 1rem;
}
.cart-items-wrap { flex: 1; overflow-y: auto; padding: 1rem 1.3rem; }
.cart-item-row {
  display: flex; gap: 0.8rem; padding: 0.8rem 0; border-bottom: 1px solid #f2f2f2;
}
.cart-item-row img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 0.9rem; margin: 0 0 0.2rem; font-family: var(--font-display); }
.cart-item-info .price { font-size: 0.82rem; color: #777; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.cart-remove-btn { border: none; background: none; color: var(--error); font-size: 0.78rem; cursor: pointer; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: #999; }
.cart-empty i { font-size: 2.4rem; color: #ddd; }

.cart-drawer-footer { border-top: 1px solid #eee; padding: 1.1rem 1.3rem 1.4rem; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 0.35rem; color: #555; }
.cart-summary-row.total { font-size: 1.1rem; font-weight: 800; color: var(--black); font-family: var(--font-display); }
.cart-drawer-footer .btn-brand { width: 100%; margin-top: 0.7rem; padding: 0.9rem; font-size: 1rem; }

/* ---------------- Checkout modal ---------------- */
.checkout-modal .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  overflow: hidden;
}
.checkout-modal .modal-header {
  background: var(--black);
  color: var(--white);
  border: none;
}
.checkout-modal .modal-header .btn-close { filter: invert(1); }
.checkout-modal label { font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.3rem; }
.checkout-modal .form-control {
  border-radius: 12px; padding: 0.65rem 0.9rem; border: 1.5px solid #eee;
}
.checkout-modal .form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,212,0,0.3); }
.order-summary-box { background: var(--bg-light); border-radius: 14px; padding: 1rem; margin-top: 0.5rem; }
.order-summary-item { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.25rem 0; }
.pay-method-box {
  display: flex; align-items: center; gap: 0.7rem;
  background: #fff9db; border: 1.5px solid var(--yellow);
  border-radius: 14px; padding: 0.8rem 1rem; margin-top: 0.6rem;
}
.pay-method-box i { font-size: 1.4rem; color: var(--success); }

/* Delivery dropdown same style as inputs */
.custom-select {
    width: 100%;
    height: auto;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    border: 1.5px solid #eee;
    background-color: #fff;
    font-size: 1rem;
    color: #212529;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592c.859 0 1.319 1.013.753 1.658L8.753 11.14a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    background-size: 14px;
}

.custom-select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255,212,0,0.3);
    outline: none;
}

@media(max-width:576px){
    .custom-select {
        font-size:14px;
        padding:0.65rem 0.8rem;
    }
}
.delivery-dropdown {
    position: relative;
}

.delivery-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.delivery-menu {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 5px;
    z-index: 9999;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.delivery-menu.show {
    display: block;
}

.delivery-option {
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
}

.delivery-option:hover {
    background: #fff9db;
}

.delivery-fee {
    font-weight: 600;
    color: #555;
}


/* ---------------- Success animation ---------------- */
.success-modal .modal-content { border-radius: var(--radius-lg); border: none; text-align: center; padding: 1.5rem 1rem; }
.success-check {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--success); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 2.6rem; color: white;
  animation: popCheck 0.5s cubic-bezier(.2,.9,.3,1.3);
}
@keyframes popCheck {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-order-num {
  display: inline-block; background: var(--yellow); font-family: var(--font-display);
  font-weight: 800; padding: 0.4rem 1rem; border-radius: 999px; margin: 0.6rem 0;
}

/* ---------------- Toast ---------------- */
.toast-stack { position: fixed; top: 1rem; right: 1rem; z-index: 1080; display: flex; flex-direction: column; gap: 0.6rem; }
.toast-brand {
  background: var(--black); color: white; padding: 0.8rem 1.1rem; border-radius: 12px;
  display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem;
  box-shadow: var(--shadow-pop);
  animation: toastIn 0.25s ease;
}
.toast-brand.success i { color: var(--success); }
.toast-brand.error i { color: var(--error); }
@keyframes toastIn { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ---------------- Loading spinner ---------------- */
.loader-wrap { display: flex; justify-content: center; padding: 3rem 0; grid-column: 1/-1; }
.spinner-brand {
  width: 42px; height: 42px; border-radius: 50%;
  border: 4px solid #eee; border-top-color: var(--yellow);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Section title */
.section-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.section-title h2 { font-size: 1.5rem; margin: 0; }

footer.site-footer {
  text-align: center; padding: 2rem 1rem 1rem; color: #999; font-size: 0.82rem;
}

.footer-social {
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:20px;
}

.footer-social a {
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:24px;
    color:white;
    text-decoration:none;

    /* 3D effect */
    box-shadow:
        0 6px 0 rgba(0,0,0,0.25),
        0 10px 15px rgba(0,0,0,0.25);

    transition:all .3s ease;
}


/* Facebook */
.footer-social a:nth-child(1) {
    background:linear-gradient(145deg,#1877f2,#0b3d91);
}


/* Instagram */
.footer-social a:nth-child(2) {
    background:linear-gradient(
        135deg,
        #feda75,
        #d62976,
        #962fbf,
        #4f5bd5
    );
}


/* TikTok */
.footer-social a:nth-child(3) {
    background:linear-gradient(145deg,#000,#25f4ee,#fe2c55);
}


/* YouTube */
.footer-social a:nth-child(4) {
    background:linear-gradient(145deg,#ff0000,#8b0000);
}


/* WhatsApp (if enabled) */
/*
.footer-social a:nth-child(5) {
    background:linear-gradient(145deg,#25d366,#075e54);
}
*/

.footer-social a:hover {

    transform:
        translateY(-6px)
        rotate(5deg)
        scale(1.1);

    box-shadow:
        0 10px 0 rgba(0,0,0,0.2),
        0 18px 25px rgba(0,0,0,0.35);
}


/* Icon shine effect */
.footer-social a::before {
    content:"";
    position:absolute;
}


/* Make icon slightly embossed */
.footer-social i {
    text-shadow:
        1px 2px 2px rgba(0,0,0,.5);
}


/* Delivery note */
.delivery-note {

    display:block;
    color:#dc3545;
    font-size:0.75rem;
    line-height:1.4;
    margin-top:4px;
    font-weight:500;

}


/* ===============================
   PRICE DROPDOWN
================================ */

.custom-price-dropdown {

    position:relative;
    width:100%;
    z-index:20;

}


/* Button */

.price-dropdown-btn {

    width:100%;
    height:42px;

    border-radius:12px;

    border:1px solid #eee;

    background:#fff;

    padding:0 14px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;

}


.price-dropdown-btn:hover {

    border-color:#ffc107;

}


/* Dropdown box */

.price-dropdown-menu {

    position:absolute;

    left:0;
    right:0;

    top:48px;

    background:#fff;

    border-radius:14px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

    padding:8px;

    display:none;

    z-index:9999;

    max-height:240px;

    overflow-y:auto;

}


/* Show dropdown */

.price-dropdown-menu.show {

    display:block;

}



/* Dropdown item */

.price-dropdown-item {

    padding:8px 10px;

    border-radius:10px;

    cursor:pointer;

    transition:.25s;

}



.price-dropdown-item:hover,
.price-dropdown-item.active {

    background:#fff7dc;

}



/* Option name */

.option-name {

    font-size:13px;

    font-weight:600;

    color:#222;

}



/* Offer price */

.offer-price {

    margin-top:3px;

    font-size:18px;

    color:#e63946;

    font-weight:700;

}



/* Old price */

.old-price {

    margin-left:6px;

    color:#999;

    font-size:15px;

    text-decoration:line-through;

    font-weight:500;

}



/* Normal price */

.normal-price {

    margin-top:3px;

    font-size:18px;
    font-weight:800;

    color:#333;

}



/* Selected dropdown text */

.selected-price-text {

    font-size:13px;

}



/* ===============================
   FIX DROPDOWN CUTTING ISSUE
================================ */


/* Allow dropdown to overflow outside card */

.food-card,
.food-body,
.menu-grid,
.row,
.col {

    overflow:visible !important;

}


/* Keep dropdown above other cards */

.food-card {

    position:relative;
    z-index:1;

}


.food-card:has(.price-dropdown-menu.show) {

    z-index:100;

}




/* Mobile */

@media(max-width:576px){


    .price-dropdown-btn {

        height:40px;

        font-size:13px;

    }


    .price-dropdown-item {

        padding:8px;

    }


    .price-dropdown-menu {

        max-height:200px;

    }


    .option-name {

        font-size:12px;

    }


    .offer-price,
    .normal-price {

        font-size:21px;

    }

}