/* ===== MOMO TANTRA + ICHHEYDOTCOM � UNIFIED STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Noto+Sans+Bengali:wght@400;600;700&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --red: #ff334b; /* Vibrant Cherry Red */
  --red-dark: #b3001b;
  --red-light: #ff7686;
  --yellow: #ffc300; /* Rich Golden Yellow */
  --yellow-dark: #cc9c00;
  --green: #00e676; /* Vibrant Lime Green */
  --blue: #2979ff;
  --purple: #d500f9;
  --orange: #ff9100;
  
  --bg-dark: #0a0404; /* Super deep rich dark background */
  --bg-card: #140d0d;
  --bg-card2: #1e1414;
  --bg-glass: rgba(20, 10, 10, 0.65);
  --bg-glass2: rgba(30, 15, 15, 0.75);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.12);
  
  --text-primary: #ffffff;
  --text-secondary: #d1c4c4; /* Warm grey-white */
  --text-muted: #887a7a;
  
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-red: 0 0 25px rgba(255, 51, 75, 0.35);
  --shadow-yellow: 0 0 25px rgba(255, 195, 0, 0.35);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hidden { display: none !important; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; outline: none;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border2); }
.btn-outline:hover { background: var(--bg-glass2); border-color: var(--red); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-icon { padding: 10px; border-radius: var(--radius-full); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-red { background: var(--red); color: #fff; }
.badge-yellow { background: var(--yellow); color: #000; }
.badge-green { background: var(--green); color: #fff; }
.badge-blue { background: var(--blue); color: #fff; }
.tag-veg { width: 18px; height: 18px; border: 2px solid #22c55e; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tag-veg::after { content: ''; width: 8px; height: 8px; background: #22c55e; border-radius: 50%; display: block; }
.tag-nonveg { width: 18px; height: 18px; border: 2px solid #e63946; border-radius: 3px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tag-nonveg::after { content: ''; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-bottom: 9px solid #e63946; display: block; }
.star { color: var(--yellow); }
.stars { display: flex; gap: 2px; }
.rating-num { font-weight: 700; color: var(--yellow); }

/* ===== LOADING OVERLAY ===== */
#loading-overlay {
  position: fixed; inset: 0; background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s ease;
}
.loading-content { text-align: center; }
.loading-logo { font-size: 48px; animation: bounce 1s infinite; margin-bottom: 16px; }
.loading-brand { font-size: 28px; font-weight: 900; color: var(--red); }
.loading-tagline { color: var(--text-secondary); font-size: 14px; margin-top: 4px; }
.loading-bar { width: 200px; height: 3px; background: var(--bg-card); border-radius: 3px; margin: 24px auto 0; overflow: hidden; }
.loading-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--yellow)); border-radius: 3px; animation: loadBar 1.5s ease-in-out forwards; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,15,15,0.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(15,15,15,0.98); box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav-brand-text .name { font-size: 20px; font-weight: 900; color: var(--red); line-height: 1; }
.nav-brand-text .tagline { font-size: 11px; color: var(--yellow); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-btn {
  position: relative; background: var(--red); border: none; border-radius: var(--radius-md);
  padding: 10px 18px; color: #fff; font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.cart-count {
  position: absolute; top: -8px; right: -8px;
  background: var(--yellow); color: #000; border-radius: 50%;
  width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; animation: pop 0.3s ease;
}
.cart-total { font-size: 13px; font-weight: 600; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0000 50%, #0f0f0f 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -50%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,214,10,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner { display: flex; align-items: center; gap: 60px; padding: 80px 20px; }
.hero-content { flex: 1; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230,57,70,0.15); border: 1px solid rgba(230,57,70,0.3);
  border-radius: var(--radius-full); padding: 6px 16px;
  font-size: 13px; color: var(--red-light); font-weight: 600;
  margin-bottom: 24px; animation: fadeSlideUp 0.6s ease forwards;
}
.hero-title {
  font-size: clamp(42px, 6vw, 72px); font-weight: 900; line-height: 1.1;
  margin-bottom: 12px; animation: fadeSlideUp 0.6s 0.1s ease both;
}
.hero-title span { color: var(--red); }
.hero-bengali {
  font-family: 'Noto Sans Bengali', sans-serif;
  font-size: 22px; color: var(--yellow); margin-bottom: 8px;
  animation: fadeSlideUp 0.6s 0.2s ease both;
}
.hero-tagline {
  font-size: 18px; color: var(--text-secondary); margin-bottom: 32px;
  animation: fadeSlideUp 0.6s 0.25s ease both;
  font-style: italic;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 40px;
  animation: fadeSlideUp 0.6s 0.3s ease both;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary);
}
.hero-meta-item .icon { font-size: 18px; }
.hero-meta-item strong { color: var(--text-primary); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; animation: fadeSlideUp 0.6s 0.35s ease both; }
.hero-image-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  z-index: 1; animation: fadeSlideUp 0.8s 0.2s ease both;
}
.hero-img-circle {
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.3), rgba(255,214,10,0.15));
  border: 3px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 50px rgba(230,57,70,0.4), inset 0 0 30px rgba(255,255,255,0.1);
  animation: float 4s ease-in-out infinite;
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}
.hero-img-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translateZ(20px) scale(1.02);
  transition: var(--transition);
}
.hero-img-circle:hover img {
  transform: translateZ(40px) scale(1.08);
}

/* ===== OFFERS BANNER ===== */
.offers-section { padding: 40px 20px; background: linear-gradient(135deg, #1a0000, #0f0f0f); }
.offers-track { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--red) transparent; }
.offer-card {
  min-width: 300px; background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(255,214,10,0.08));
  border: 1px solid rgba(230,57,70,0.2); border-radius: var(--radius-lg);
  padding: 20px; cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.offer-card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: var(--shadow-red); }
.offer-icon { font-size: 36px; margin-bottom: 8px; }
.offer-title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.offer-desc { font-size: 13px; color: var(--text-secondary); }
.offer-badge { display: inline-block; margin-top: 10px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--red); font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; line-height: 1.2; }
.section-title span { color: var(--red); }
.section-sub { color: var(--text-secondary); font-size: 16px; margin-top: 8px; }

/* ===== MENU SECTION ===== */
.menu-section { padding: 80px 20px; }
.menu-layout { display: flex; gap: 32px; align-items: flex-start; }
.menu-sidebar {
  width: 220px; flex-shrink: 0; position: sticky; top: 90px;
  background: var(--bg-card); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 16px; overflow: hidden;
}
.menu-sidebar-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 12px; padding: 0 8px; }
.cat-btn {
  width: 100%; padding: 10px 12px; border-radius: var(--radius-sm);
  background: transparent; border: none; color: var(--text-secondary);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: var(--transition-fast); text-align: left; white-space: nowrap;
}
.cat-btn:hover { background: var(--bg-glass); color: var(--text-primary); }
.cat-btn.active { background: rgba(230,57,70,0.15); color: var(--red); font-weight: 700; }
.cat-btn .cat-icon { font-size: 18px; }
.cat-btn .cat-badge { margin-left: auto; font-size: 10px; }
.menu-content { flex: 1; }
.menu-category-section { margin-bottom: 48px; }
.cat-section-title {
  font-size: 22px; font-weight: 800; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.menu-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-4px); border-color: rgba(230,57,70,0.3); box-shadow: var(--shadow-card); }
.menu-card-img {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--bg-card2); transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-img-wrap { overflow: hidden; position: relative; }
.menu-card-badges {
  position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap;
}
.menu-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.menu-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 8px; }
.menu-card-name { font-size: 16px; font-weight: 700; line-height: 1.3; }
.menu-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; flex: 1; margin-bottom: 12px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.menu-card-price { font-size: 20px; font-weight: 800; color: var(--text-primary); }
.menu-card-price span { font-size: 13px; color: var(--text-secondary); font-weight: 400; }
.qty-control {
  display: flex; align-items: center; gap: 2px;
  background: var(--bg-card2); border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--border);
}
.qty-btn {
  width: 32px; height: 32px; background: transparent; border: none;
  color: var(--text-primary); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast); font-weight: 700;
}
.qty-btn:hover { background: var(--red); }
.qty-btn.add-btn { background: var(--red); }
.qty-btn.add-btn:hover { background: var(--red-dark); }
.qty-num { min-width: 32px; text-align: center; font-size: 15px; font-weight: 700; }
.item-unavailable { opacity: 0.5; }
.item-unavailable .qty-btn { cursor: not-allowed; }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 1100; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; right: -420px; top: 0; bottom: 0; width: 420px;
  background: var(--bg-card); border-left: 1px solid var(--border);
  z-index: 1200; transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card);
}
.cart-header-title { font-size: 20px; font-weight: 800; }
.cart-close {
  width: 36px; height: 36px; background: var(--bg-card2); border: none;
  border-radius: 50%; color: var(--text-primary); font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
}
.cart-close:hover { background: var(--red); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-secondary); }
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }
.cart-item {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); align-items: center;
}
.cart-item-img { width: 60px; height: 60px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--text-secondary); }
.cart-item-total { font-size: 15px; font-weight: 700; color: var(--red); margin-left: auto; flex-shrink: 0; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--bg-card); }
.coupon-row { display: flex; gap: 8px; margin-bottom: 16px; }
.coupon-input {
  flex: 1; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text-primary);
  font-family: 'Outfit', sans-serif; font-size: 14px; outline: none;
  text-transform: uppercase; transition: var(--transition-fast);
}
.coupon-input:focus { border-color: var(--red); }
.coupon-input::placeholder { text-transform: none; color: var(--text-muted); }
.coupon-msg { font-size: 12px; margin-bottom: 12px; padding: 6px 10px; border-radius: var(--radius-sm); }
.coupon-msg.success { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.coupon-msg.error { background: rgba(230,57,70,0.1); color: var(--red-light); border: 1px solid rgba(230,57,70,0.2); }
.cart-summary { margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-secondary); margin-bottom: 6px; }
.cart-summary-row.total { font-size: 18px; font-weight: 800; color: var(--text-primary); padding-top: 10px; border-top: 1px solid var(--border); margin-top: 6px; }
.cart-summary-row.discount { color: var(--green); }

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(8px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); width: 100%; max-width: 540px;
  max-height: 90vh; overflow-y: auto;
  transform: scale(0.9); transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
  padding: 24px 28px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; background: var(--bg-card); z-index: 1;
}
.modal-title { font-size: 22px; font-weight: 800; }
.modal-body { padding: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 16px; color: var(--text-primary);
  font-family: 'Outfit', sans-serif; font-size: 15px; outline: none;
  transition: var(--transition-fast);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); background: var(--bg-card); }
.form-textarea { min-height: 80px; resize: vertical; }
.form-select option { background: var(--bg-card); }
.order-type-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.order-type-btn {
  flex: 1; min-width: 100px; padding: 10px 8px; border-radius: var(--radius-sm);
  background: var(--bg-card2); border: 1px solid var(--border);
  color: var(--text-secondary); font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition-fast);
  text-align: center;
}
.order-type-btn.active { background: rgba(230,57,70,0.15); border-color: var(--red); color: var(--red); }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--border); display: flex; gap: 12px; }

/* ===== ORDER SUCCESS ===== */
.order-success {
  text-align: center; padding: 40px 28px;
}
.order-success-icon { font-size: 80px; margin-bottom: 16px; animation: pop 0.5s ease; }
.order-success-title { font-size: 26px; font-weight: 900; margin-bottom: 8px; color: var(--green); }
.order-success-id { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.order-success-id strong { color: var(--yellow); font-family: monospace; font-size: 18px; }
.order-card {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; text-align: left; margin-bottom: 24px;
}
.order-card-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.order-card-row:last-child { margin-bottom: 0; font-weight: 700; font-size: 16px; color: var(--red); }
.order-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 80px 20px; background: linear-gradient(180deg, var(--bg-dark), #0a0000); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; margin-top: 40px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; transition: var(--transition);
}
.review-card:hover { border-color: rgba(230,57,70,0.2); transform: translateY(-2px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: 15px; font-weight: 700; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-verified { font-size: 11px; color: var(--green); font-weight: 600; }
.review-stars { display: flex; gap: 3px; margin-bottom: 8px; font-size: 14px; }
.review-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.owner-response {
  margin-top: 12px; padding: 10px 14px;
  background: rgba(230,57,70,0.06); border-left: 3px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 13px; color: var(--text-secondary);
}
.owner-response strong { color: var(--red); display: block; font-size: 12px; margin-bottom: 4px; }

/* ===== WRITE REVIEW FORM ===== */
.write-review-section {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px; margin-bottom: 40px;
}
.write-review-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.star-rating-input { display: flex; gap: 8px; margin-bottom: 4px; }
.star-btn {
  background: none; border: none; font-size: 32px; cursor: pointer;
  filter: grayscale(1); transition: var(--transition-fast); line-height: 1;
}
.star-btn.active, .star-btn:hover { filter: none; transform: scale(1.2); }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 80px 20px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  aspect-ratio: 4/3;
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(15,15,15,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 12px 20px; display: flex; align-items: center; gap: 12px;
}
.about-content-title { font-size: 36px; font-weight: 900; margin-bottom: 16px; }
.about-detail-list { list-style: none; }
.about-detail-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.about-detail-list li:last-child { border: none; }
.about-detail-list .icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.map-btn { margin-top: 24px; width: 100%; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 60px 20px 20px; color: var(--text-secondary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .name { font-size: 28px; font-weight: 900; color: var(--red); margin-bottom: 4px; }
.footer-brand .tagline { color: var(--yellow); font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--bg-card2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 18px; transition: var(--transition-fast);
}
.social-btn:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.footer-col-title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--red); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; }

/* ===== TRACK PAGE ===== */
.track-page { min-height: 100vh; padding: 100px 20px 60px; }
.track-card {
  max-width: 640px; margin: 0 auto;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
}
.order-status-track { padding: 24px 0; }
.status-step { display: flex; align-items: flex-start; gap: 16px; position: relative; }
.status-step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 19px; top: 38px; bottom: -28px; width: 2px;
  background: var(--border);
}
.status-step.done::after { background: var(--green); }
.status-step.active::after { background: linear-gradient(180deg, var(--green), var(--border)); }
.step-icon {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; border: 2px solid var(--border);
  background: var(--bg-card2); transition: var(--transition);
}
.status-step.done .step-icon { background: var(--green); border-color: var(--green); }
.status-step.active .step-icon { border-color: var(--yellow); animation: pulse 2s infinite; }
.step-content { flex: 1; padding-bottom: 28px; }
.step-label { font-size: 16px; font-weight: 700; }
.step-time { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.track-order-search { max-width: 500px; margin: 0 auto 40px; }
.track-search-input { width: 100%; background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 16px 20px; color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 16px; outline: none; transition: var(--transition-fast); text-align: center; letter-spacing: 2px; text-transform: uppercase; }
.track-search-input:focus { border-color: var(--red); }

/* ===== ADMIN PANEL ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: var(--bg-card); border-right: 1px solid var(--border);
  flex-shrink: 0; display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100;
  transition: transform 0.3s ease;
}
.admin-sidebar-header {
  padding: 24px 20px; border-bottom: 1px solid var(--border);
  text-align: center;
}
.admin-sidebar-header .logo { font-size: 22px; font-weight: 900; color: var(--red); }
.admin-sidebar-header .sub { font-size: 11px; color: var(--yellow); font-weight: 600; }
.admin-nav { flex: 1; padding: 16px 12px; overflow-y: auto; }
.admin-nav-item {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  background: transparent; border: none; color: var(--text-secondary);
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 12px;
  transition: var(--transition-fast); text-align: left; margin-bottom: 4px;
}
.admin-nav-item:hover { background: var(--bg-glass); color: var(--text-primary); }
.admin-nav-item.active { background: rgba(230,57,70,0.15); color: var(--red); }
.admin-nav-item .nav-icon { font-size: 18px; width: 24px; text-align: center; }
.admin-nav-badge {
  margin-left: auto; background: var(--red); color: #fff;
  border-radius: var(--radius-full); padding: 2px 8px; font-size: 11px;
}
.admin-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  height: 70px; background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 0 32px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar-title { font-size: 22px; font-weight: 800; }
.admin-content { flex: 1; padding: 32px; }
.admin-page { display: none; }
.admin-page.active { display: block; }

/* Stats Cards */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; align-items: center; gap: 16px; transition: var(--transition);
}
.stat-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-2px); }
.stat-icon { font-size: 36px; }
.stat-value { font-size: 32px; font-weight: 900; line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.stat-change { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 2px; }

/* Admin Tables */
.admin-table-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.admin-table-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin-table-title { font-size: 18px; font-weight: 700; }
table { width: 100%; border-collapse: collapse; }
th { padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); background: var(--bg-card2); }
td { padding: 16px 20px; font-size: 14px; border-top: 1px solid var(--border); }
tr:hover td { background: var(--bg-glass); }
.status-pill {
  display: inline-block; padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; text-transform: capitalize;
}
.status-placed { background: rgba(59,130,246,0.15); color: var(--blue); }
.status-confirmed { background: rgba(34,197,94,0.15); color: var(--green); }
.status-preparing { background: rgba(245,158,11,0.15); color: var(--yellow-dark); }
.status-ready { background: rgba(139,92,246,0.15); color: var(--purple); }
.status-delivered { background: rgba(16,185,129,0.15); color: #10b981; }
.status-rejected { background: rgba(230,57,70,0.15); color: var(--red); }
.action-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.action-btn {
  padding: 5px 12px; border-radius: var(--radius-sm); font-size: 12px;
  font-weight: 600; border: none; cursor: pointer; transition: var(--transition-fast);
  font-family: 'Outfit', sans-serif;
}
.action-btn-green { background: rgba(34,197,94,0.15); color: var(--green); }
.action-btn-green:hover { background: var(--green); color: #fff; }
.action-btn-red { background: rgba(230,57,70,0.15); color: var(--red); }
.action-btn-red:hover { background: var(--red); color: #fff; }
.action-btn-blue { background: rgba(59,130,246,0.15); color: var(--blue); }
.action-btn-blue:hover { background: var(--blue); color: #fff; }
.action-btn-yellow { background: rgba(255,214,10,0.15); color: var(--yellow-dark); }
.action-btn-yellow:hover { background: var(--yellow); color: #000; }

/* Admin Form Cards */
.admin-form-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px;
}
.admin-form-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-switch { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.switch {
  position: relative; width: 44px; height: 24px;
  background: var(--border); border-radius: var(--radius-full); transition: var(--transition-fast);
}
.switch::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: var(--transition-fast);
}
input:checked + .switch { background: var(--green); }
input:checked + .switch::after { left: 22px; }
input[type="checkbox"] { display: none; }

/* Admin Login */
.admin-login {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-dark); padding: 20px;
}
.admin-login-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px 40px; width: 100%; max-width: 420px;
  text-align: center;
}
.admin-login-logo { font-size: 48px; margin-bottom: 16px; }
.admin-login-title { font-size: 28px; font-weight: 900; margin-bottom: 4px; }
.admin-login-sub { color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }

/* ===== NOTIFICATIONS ===== */
.notification-wrap { position: fixed; top: 80px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.notification {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px 20px;
  min-width: 280px; max-width: 360px; display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  animation: slideInRight 0.3s ease; box-shadow: var(--shadow-card);
}
.notification.success { border-left: 4px solid var(--green); }
.notification.error { border-left: 4px solid var(--red); }
.notification.info { border-left: 4px solid var(--blue); }
.notification.warning { border-left: 4px solid var(--yellow); }

/* ===== RATING SUMMARY ===== */
.rating-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px;
  display: flex; gap: 40px; align-items: center; margin-bottom: 40px;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-number { font-size: 72px; font-weight: 900; color: var(--yellow); line-height: 1; }
.rating-stars-big { display: flex; gap: 4px; justify-content: center; font-size: 24px; margin: 8px 0; }
.rating-count { font-size: 13px; color: var(--text-secondary); }
.rating-bars { flex: 1; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.rating-bar-track { flex: 1; height: 8px; background: var(--bg-card2); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--yellow); border-radius: 4px; transition: width 1s ease; }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pop { 0% { transform: scale(0.5); } 80% { transform: scale(1.1); } 100% { transform: scale(1); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,214,10,0.4); } 50% { box-shadow: 0 0 0 8px rgba(255,214,10,0); } }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .menu-layout { flex-direction: column; }
  .menu-sidebar { width: 100%; position: static; display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; }
  .cat-btn { width: auto; flex-shrink: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; padding: 60px 0; gap: 40px; text-align: center; }
  .hero-meta { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-img-circle { width: 220px; height: 220px; font-size: 110px; }
  .cart-sidebar { width: 100%; right: -100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ===== INVOICE ===== */
.invoice-btn { background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 16px; color: var(--text-secondary); font-size: 13px; cursor: pointer; font-family: 'Outfit', sans-serif; transition: var(--transition-fast); }
.invoice-btn:hover { background: var(--bg-glass); color: var(--text-primary); }

/* ===== TOAST ===== */
.toast-container { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 10px 24px; font-size: 14px; font-weight: 600; white-space: nowrap; box-shadow: var(--shadow-card); animation: toastIn 0.3s ease; pointer-events: all; }
@keyframes toastIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== SEARCH ===== */
.search-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-full); padding: 10px 20px;
  max-width: 400px; transition: var(--transition-fast);
}
.search-bar:focus-within { border-color: var(--red); }
.search-bar input { background: none; border: none; outline: none; color: var(--text-primary); font-family: 'Outfit', sans-serif; font-size: 15px; flex: 1; }

/* ===== SPECIAL TAGS ===== */
.hot-tag { display: inline-block; background: linear-gradient(135deg, #ff6b35, #f7c59f); color: #000; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-full); text-transform: uppercase; letter-spacing: 0.5px; }
.new-tag { background: linear-gradient(135deg, #22c55e, #16a34a); color: #fff; font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-full); text-transform: uppercase; }

/* ===== 3D TILT, NEON GLOWS & GLASSMORPHISM ===== */
.tilt-3d {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.menu-card.tilt-3d:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(230,57,70,0.2);
  border-color: rgba(230,57,70,0.4);
}
.stat-card.tilt-3d:hover {
  transform: translateY(-5px) rotateX(3deg) rotateY(-1deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255,214,10,0.2);
  border-color: rgba(255,214,10,0.3);
}
.offer-card.tilt-3d:hover {
  transform: translateY(-6px) rotateX(3deg) rotateY(-2deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(230,57,70,0.15);
  border-color: rgba(230,57,70,0.3);
}
.glass-panel {
  background: rgba(26, 10, 10, 0.6);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}
.glass-panel:hover {
  border-color: rgba(230,57,70,0.15);
}
.panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
}
.panel-header h3 {
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
}

/* ===== UNIFIED OPERATIONS COMMAND CENTER ===== */
.operations-grid {
  display: grid;
  grid-template-columns: 300px 1fr 350px;
  gap: 20px;
  min-height: calc(100vh - 150px);
  margin-top: 10px;
}
.ops-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ops-order-item {
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition-fast);
}
.ops-order-item:hover {
  background: rgba(230, 57, 70, 0.08);
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
}
.ops-order-item.selected {
  background: rgba(230, 57, 70, 0.15);
  border-color: var(--red);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.15);
}
.ops-order-id {
  font-family: monospace;
  font-weight: 800;
  font-size: 15px;
  color: var(--yellow);
}
.ops-order-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}
.ops-log-viewer {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  background: #050505;
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #a8a8a8;
  line-height: 1.5;
}
.ops-log-line {
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  padding-bottom: 4px;
  word-break: break-all;
}
.ops-log-line .timestamp {
  color: #555;
  margin-right: 6px;
}
.ops-log-line .tag {
  font-weight: bold;
  padding: 1px 4px;
  border-radius: 3px;
  font-size: 10px;
  margin-right: 6px;
  text-transform: uppercase;
}
.ops-log-line .tag-info { background: rgba(59,130,246,0.15); color: var(--blue); }
.ops-log-line .tag-order { background: rgba(34,197,94,0.15); color: var(--green); }
.ops-log-line .tag-db { background: rgba(139,92,246,0.15); color: var(--purple); }
.ops-log-line .tag-http { background: rgba(245,158,11,0.15); color: var(--yellow-dark); }
.ops-log-line .tag-error { background: rgba(230,57,70,0.15); color: var(--red); }

@media (max-width: 1200px) {
  .operations-grid {
    grid-template-columns: 250px 1fr 280px;
  }
}
@media (max-width: 1024px) {
  .operations-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
  }
  .ops-log-viewer {
    max-height: 300px;
  }
}

/* ===== CUSTOMER LIVE ORDER TRACKING HUB STYLING ===== */
.live-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;
}
.live-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.live-timeline-dot.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
  box-shadow: 0 0 20px var(--yellow);
  transform: scale(1.15);
}
.live-timeline-dot.done {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.hub-glass-wrapper {
  background: linear-gradient(135deg, rgba(30, 10, 10, 0.7) 0%, rgba(15, 5, 5, 0.85) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 195, 0, 0.15);
  box-shadow: var(--shadow-card), 0 0 30px rgba(255, 51, 75, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.hub-glass-wrapper::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}
.hub-glass-wrapper:hover {
  border-color: rgba(255, 195, 0, 0.3);
  box-shadow: var(--shadow-card), 0 0 35px rgba(255, 195, 0, 0.12);
}

/* ===== PAYMENT SIMULATOR UTILITIES ===== */
.active-tab-btn {
  background: var(--yellow) !important;
  color: #000 !important;
  font-weight: 800;
  border-color: var(--yellow) !important;
}
.payment-method-card {
  transition: all 0.2s ease-in-out;
}
.payment-method-card:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
}


/* ===== MOMO TANTRA THEME ===== */
body.theme-momotantra {
  background-image: linear-gradient(rgba(10, 4, 4, 0.85), rgba(10, 4, 4, 0.95)), url('/images/mt_bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

/* ===== ICHHEYDOTCOM THEME ===== */
body.theme-ichheydotcom {
  --bg-dark: #0e0008;
  --bg-card: #140010;
  --bg-card2: #1c0018;
  --bg-glass: rgba(14, 0, 8, 0.7);
  --bg-glass2: rgba(20, 0, 16, 0.8);
  --text-secondary: #d4bfd4;
  --text-muted: #8b6e8b;
  --red: #d500f9; /* Magical purple/magenta for primary elements on gift side */
  --red-dark: #aa00ff;
  --red-light: #f50057;
  --yellow: #ffd60a; /* Deep gold */
  --yellow-dark: #ffb703;
  --shadow-red: 0 0 25px rgba(213, 0, 249, 0.35);
  --shadow-yellow: 0 0 25px rgba(255, 214, 10, 0.35);
  background-image: linear-gradient(rgba(14, 0, 8, 0.85), rgba(14, 0, 8, 0.95)), url('/images/ic_bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
body.theme-ichheydotcom ::-webkit-scrollbar-thumb { background: var(--red); }
body.theme-ichheydotcom .btn-primary { background: linear-gradient(135deg, #7b2cbf, #9d4edd); }
body.theme-ichheydotcom .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-red); }
body.theme-ichheydotcom .hero-section {
  background: radial-gradient(ellipse at 70% 50%, rgba(213,0,249,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(255,214,10,0.06) 0%, transparent 50%),
              var(--bg-dark);
}
body.theme-ichheydotcom .section-title span { color: var(--yellow); }

/* ===== DUAL BRAND LOADING LOGOS ===== */
.loading-logos { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }

/* ===== BRAND TOGGLE SWITCH ===== */
.brand-toggle-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full); padding: 6px 14px; cursor: pointer; transition: var(--transition);
}
.brand-toggle-wrap:hover { background: rgba(255,255,255,0.08); border-color: var(--yellow); }
.brand-toggle-label { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; transition: color 0.3s; white-space: nowrap; }
.brand-toggle-switch {
  width: 48px; height: 26px; background: rgba(255,255,255,0.1); border-radius: var(--radius-full);
  position: relative; cursor: pointer; border: 2px solid var(--red);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-toggle-switch.active { background: rgba(255,214,10,0.1); border-color: var(--yellow); }
.brand-toggle-knob {
  position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
  background: var(--red); border-radius: 50%; box-shadow: 0 0 8px rgba(230,57,70,0.6);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.brand-toggle-switch.active .brand-toggle-knob { left: 24px; background: var(--yellow); box-shadow: 0 0 8px rgba(255,195,0,0.8); }
.dual-brand-logos { display: flex; align-items: center; position: relative; }

/* ===== FEATURES BANNER ===== */
.features-banner { padding: 28px 0; background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-md); transition: var(--transition); }
.feature-card:hover { background: rgba(255,255,255,0.04); border-color: rgba(255,195,0,0.25); transform: translateY(-2px); }
.feature-card .feature-icon { font-size: 26px; flex-shrink: 0; }
.feature-card .feature-text { font-size: 13px; font-weight: 700; color: var(--text-secondary); line-height: 1.3; }
.feature-card .feature-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===== FLOAT BADGES ===== */
.float-badge { position: absolute; background: linear-gradient(135deg, rgba(139,0,0,0.85), rgba(80,0,0,0.9)); border: 1px solid rgba(255,214,10,0.4); color: var(--yellow); font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: var(--radius-full); white-space: nowrap; backdrop-filter: blur(8px); animation: floatBadge 3s ease-in-out infinite; box-shadow: 0 4px 20px rgba(0,0,0,0.5); pointer-events: none; }
@keyframes floatBadge { 0%, 100% { transform: translateY(0px) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }

/* ===== ICHHEYDOTCOM ABOUT SECTION ===== */
.ichhey-about-section { padding: 80px 0; background: linear-gradient(180deg, transparent 0%, rgba(139,0,0,0.04) 50%, transparent 100%); }
.ichhey-brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.ichhey-brand-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.ichhey-brand-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--yellow)); opacity: 0; transition: opacity 0.3s; }
.ichhey-brand-card:hover { transform: translateY(-8px); border-color: rgba(255,195,0,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.ichhey-brand-card:hover::before { opacity: 1; }
.ichhey-brand-icon { font-size: 40px; margin-bottom: 12px; }
.ichhey-brand-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--yellow); }
.ichhey-brand-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.ichhey-social-strip { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.ichhey-social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: linear-gradient(135deg, #8b0000, #cc0000); color: #fff; text-decoration: none; border-radius: var(--radius-full); font-size: 14px; font-weight: 700; transition: var(--transition); border: 1px solid rgba(255,255,255,0.1); }
.ichhey-social-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.4); }

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ichhey-brand-grid { grid-template-columns: 1fr 1fr; }
  .brand-toggle-wrap { padding: 4px 8px; gap: 6px; }
}
@media (max-width: 480px) {
  .ichhey-brand-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE DESKTOP INLINE MENU & BURGER TABS ===== */
.nav-hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.nav-hamburger-btn:hover {
  color: var(--yellow);
  transform: scale(1.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
  padding: 6px 0;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.2s ease;
}
.nav-link-item:hover {
  color: var(--yellow);
}
.nav-link-item:hover::after {
  width: 100%;
}
.nav-link-item.active {
  color: var(--yellow);
}
.nav-link-item.active::after {
  width: 100%;
}

/* ===== MOBILE NAVIGATION DRAWER ===== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-dark);
  border-right: 1px solid var(--border);
  z-index: 1060;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
}
.mobile-drawer.open {
  transform: translateX(320px);
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.drawer-close:hover {
  color: var(--red);
}

.drawer-body {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer-links a:hover {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 195, 0, 0.3);
  transform: translateX(5px);
}

/* ===== PROFILE ORDERS VIEW ===== */
.profile-order-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.profile-order-item:hover {
  border-color: rgba(255, 195, 0, 0.2);
}
.profile-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border2);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.profile-order-id {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
}
.profile-order-date {
  font-size: 11px;
  color: var(--text-muted);
}
.profile-order-items-list {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
}
.profile-order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.profile-order-total {
  font-weight: 800;
  color: var(--yellow);
}
.profile-order-status-badge {
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Media Breakpoints for navigation components */
@media (max-width: 992px) {
  .nav-hamburger-btn {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .navbar {
    padding: 0 16px;
  }
  .navbar .brand-toggle-wrap {
    display: none; /* Hide in navbar on mobile, show inside side drawer */
  }
}
@media (max-width: 480px) {
  .nav-brand-text .tagline {
    display: none;
  }
  .nav-actions {
    gap: 8px;
  }
}

