/* ===== MENU SEARCH BAR ===== */
.menu-search-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  margin-bottom: 2rem;
  transition: all .4s var(--ease);
}
.menu-search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(212,168,83,.15);
}
.menu-search-bar i { color: var(--gold); font-size: 1rem; }
.menu-search-bar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .95rem;
}
.menu-search-bar input::placeholder { color: var(--text-muted); }
.search-clear {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .9rem;
  padding: .3rem;
  transition: color .3s;
}
.search-clear:hover { color: var(--gold); }
.no-results-msg {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.no-results-msg span { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ===== ADD TO CART BUTTON ===== */
.add-to-cart-btn {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold);
  border: 1px solid rgba(212,168,83,.2);
  padding: .35rem .85rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.add-to-cart-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(212,168,83,.3);
}
.add-to-cart-btn.added {
  background: linear-gradient(135deg, #38a169, #276749);
  color: #fff;
  border-color: rgba(56,161,105,.3);
}

/* ===== FLOATING CART BUTTON ===== */
.floating-cart {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 5px 25px rgba(212,168,83,.4);
  transition: all .4s var(--ease);
  animation: cartBounce 2s ease-in-out infinite;
}
.floating-cart:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(212,168,83,.5);
}
@keyframes cartBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e53e3e;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(229,62,62,.4);
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: linear-gradient(180deg, #0d0d0d, #060606);
  border-left: 1px solid rgba(212,168,83,.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right .4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: -10px 0 40px rgba(0,0,0,.5);
}
.cart-drawer.open { right: 0; }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(212,168,83,.1);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
}
.cart-header h3 i { margin-right: .5rem; }
.cart-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color .3s;
}
.cart-close:hover { color: var(--gold); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-empty span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.cart-empty p { font-size: 1.1rem; margin-bottom: .3rem; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212,168,83,.06);
  animation: fadeInUp .3s ease;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.cart-item-info .cart-item-price {
  font-size: .85rem;
  color: var(--gold);
  font-weight: 600;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,.2);
  background: var(--glass-bg);
  color: var(--gold);
  font-size: .85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.cart-item-qty button:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}
.cart-item-qty span {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 20px;
  text-align: center;
}
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(212,168,83,.1);
  background: rgba(13,13,13,.95);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.cart-total span:first-child {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.cart-total-amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cart-order-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: .75rem;
  padding: .85rem !important;
}
.cart-clear-btn {
  width: 100%;
  justify-content: center;
  padding: .6rem !important;
  font-size: .8rem !important;
}

/* ===== TODAY'S SPECIAL BANNER ===== */
.todays-special-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  animation: slideUpBanner .6s ease .5s both;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.todays-special-banner.hidden { transform: translateY(110%); transition: transform .4s ease; }
.todays-special-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.5rem;
  background: linear-gradient(135deg, rgba(78,12,12,.95), rgba(30,8,8,.98));
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(212,168,83,.2);
  box-shadow: 0 -5px 30px rgba(0,0,0,.4);
}
.todays-special-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: .85rem;
  transition: color .3s;
  flex-shrink: 0;
}
.todays-special-close:hover { color: var(--gold); }
.todays-special-icon { font-size: 1.5rem; animation: pulse3d 2s ease-in-out infinite; flex-shrink: 0; }
.todays-special-text { flex: 1; }
.todays-special-label {
  display: block;
  font-size: .68rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.todays-special-deal {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--text-primary);
}
.todays-special-deal strong { color: var(--gold); font-size: 1.1rem; }
.todays-special-deal s { color: var(--text-muted); font-size: .8rem; }
.todays-special-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all .3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.todays-special-btn:hover {
  box-shadow: 0 0 20px rgba(212,168,83,.4);
  transform: scale(1.05);
}

/* ===== RESERVATION MODAL ===== */
.reservation-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}
.reservation-overlay.open { opacity: 1; visibility: visible; }
.reservation-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(800px) rotateX(10deg) scale(.9);
  width: 550px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, #0d0d0d, #060606);
  border: 1px solid rgba(212,168,83,.15);
  border-radius: 24px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .5s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 25px 80px rgba(0,0,0,.6), 0 0 40px rgba(212,168,83,.08);
}
.reservation-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) perspective(800px) rotateX(0) scale(1);
}
.reservation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(212,168,83,.1);
}
.reservation-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
}
.reservation-header h3 i { margin-right: .5rem; }
.reservation-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color .3s;
}
.reservation-close:hover { color: var(--gold); }
.reservation-form { padding: 1.5rem 2rem 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: .5rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  color: var(--gold);
  margin-bottom: .4rem;
  font-weight: 500;
}
.form-group label i { margin-right: .3rem; font-size: .75rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .88rem;
  outline: none;
  transition: all .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212,168,83,.1);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.reservation-submit { width: 100%; justify-content: center; margin-top: .5rem; }

/* ===== FLOATING BOOK TABLE BUTTON ===== */
.floating-reserve {
  position: fixed;
  bottom: 6rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.3rem;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  border: 1px solid rgba(212,168,83,.2);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 998;
  box-shadow: 0 5px 25px var(--maroon-glow);
  transition: all .4s var(--ease);
  animation: cartBounce 3s ease-in-out infinite;
}
.floating-reserve:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 8px 30px rgba(212,168,83,.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .todays-special-inner { gap: .5rem; padding: .7rem 1rem; }
  .todays-special-deal { font-size: .82rem; }
  .todays-special-btn { padding: .4rem .9rem; font-size: .72rem; }
  .floating-reserve { bottom: 4.5rem; left: 1rem; padding: .55rem 1rem; font-size: .75rem; }
  .floating-cart { bottom: 4.5rem; right: 1rem; width: 52px; height: 52px; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-form { padding: 1rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .todays-special-icon { display: none; }
  .floating-reserve span { display: none; }
  .floating-reserve { width: 48px; height: 48px; padding: 0; justify-content: center; border-radius: 50%; }
}
