/* ==========================================================================
   REHMANI BARBEQUE OKARA - OFFICIAL DESIGN SYSTEM
   Brand Colors: Red #E30613, Golden Yellow #FFC107, Rich Black #000000
   ========================================================================== */

:root {
  --primary-red: #E30613;
  --primary-red-hover: #b8050f;
  --accent-yellow: #FFC107;
  --accent-yellow-dark: #e0a800;
  --accent-yellow-light: #ffcd38;
  --bg-black: #080808;
  --bg-dark: #121212;
  --bg-card: #181818;
  --bg-card-hover: #222222;
  --border-dark: #2a2a2a;
  --border-gold: rgba(255, 193, 7, 0.25);
  --text-white: #ffffff;
  --text-muted: #a0a0a0;
  --text-dim: #707070;
  --badge-green: #2ecc71;
  --shadow-gold: 0 4px 20px rgba(255, 193, 7, 0.15);
  --shadow-red: 0 4px 20px rgba(227, 6, 19, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
  padding-bottom: 90px; /* Space for floating mobile cart */
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #E30613 0%, #b8050f 50%, #E30613 100%);
  color: #fff;
  font-size: 0.82rem;
  padding: 6px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 193, 7, 0.3);
}

.marquee-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}

.delivery-time {
  background: rgba(0, 0, 0, 0.3);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-weight: 500;
  color: var(--accent-yellow);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Brand */
.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent-yellow);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.4);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text-white);
  line-height: 1.1;
}

.brand-branch {
  font-size: 0.75rem;
  color: var(--accent-yellow);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Order Type Switch */
.order-type-switch {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 4px;
}

.switch-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.switch-btn.active {
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.4);
}

/* Search Bar */
.header-search {
  flex: 1;
  max-width: 380px;
  position: relative;
  display: flex;
  align-items: center;
}

.header-search input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 9px 36px 9px 38px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.header-search input:focus {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.clear-search {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-track-header {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-white);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-track-header:hover {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
}

.btn-app-download {
  background: linear-gradient(135deg, #1f1f1f, #141414);
  border: 1px solid #333;
  color: #a4c639; /* Android Green */
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-app-download:hover {
  border-color: #a4c639;
  box-shadow: 0 0 10px rgba(164, 198, 57, 0.2);
}

.btn-cart-header {
  background: var(--primary-red);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-size: 1.1rem;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

.btn-cart-header:hover {
  transform: scale(1.05);
  background: var(--primary-red-hover);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-yellow);
  color: #000;
  font-size: 0.72rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-dark);
}

.mobile-search-row {
  display: none;
  padding-bottom: 10px;
}

/* Hero Section */
.hero-section {
  padding: 16px 0;
}

.hero-banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
  height: 380px;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.7) 45%, rgba(8,8,8,0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
  max-width: 600px;
}

.hero-tag {
  display: inline-block;
  background: var(--primary-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  width: fit-content;
}

.hero-title {
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-desc {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, #c40410 100%);
  color: #fff;
  border: 1px solid rgba(255, 193, 7, 0.3);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(227, 6, 19, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Sticky Categories Navigation */
.categories-nav-sticky {
  position: sticky;
  top: 70px;
  z-index: 900;
  background: rgba(14, 14, 14, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-dark);
  padding: 10px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.categories-pills-wrap {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.categories-pills-wrap::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.cat-pill:hover {
  color: #fff;
  border-color: var(--accent-yellow);
}

.cat-pill.active {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

/* Menu Section */
.menu-section {
  padding: 24px 16px 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
  padding-bottom: 12px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.items-count {
  font-size: 0.82rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: var(--accent-yellow);
  font-weight: 600;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.product-img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  background: #111;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(227, 6, 19, 0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-cat-tag {
  font-size: 0.72rem;
  color: var(--accent-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.product-price small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Add to Cart Stepper */
.btn-add-cart {
  background: var(--primary-red);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--primary-red-hover);
  box-shadow: 0 2px 10px rgba(227, 6, 19, 0.4);
}

.qty-stepper {
  display: flex;
  align-items: center;
  background: var(--bg-black);
  border: 1px solid var(--accent-yellow);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  color: var(--accent-yellow);
  font-size: 0.9rem;
  width: 30px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover {
  background: rgba(255, 193, 7, 0.2);
}

.qty-count {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  min-width: 24px;
  text-align: center;
}

/* Skeleton Loader */
.product-skeleton {
  background: linear-gradient(90deg, #181818 25%, #242424 50%, #181818 75%);
  background-size: 200% 100%;
  animation: skeletonPulse 1.5s infinite;
  height: 280px;
  border-radius: var(--radius-md);
}

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

/* Floating Mobile Cart Bar */
.floating-cart-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #b8050f 100%);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 12px 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8), var(--shadow-red);
  z-index: 950;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  animation: slideUp 0.3s ease;
  border: 1px solid var(--accent-yellow);
}

.floating-cart-info {
  display: flex;
  flex-direction: column;
}

.floating-cart-count {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.floating-cart-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-yellow);
}

.floating-cart-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-dark);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.8);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.btn-close-drawer {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-close-drawer:hover {
  color: #fff;
  border-color: var(--primary-red);
}

.cart-mode-selector {
  background: var(--bg-card);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.85rem;
}

.mode-pill {
  background: rgba(255, 193, 7, 0.15);
  color: var(--accent-yellow);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 600;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
}

.empty-cart-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
}

.empty-icon {
  font-size: 3rem;
  color: var(--border-dark);
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 12px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

.cart-item-var {
  font-size: 0.78rem;
  color: var(--accent-yellow);
  font-weight: 500;
}

.cart-item-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.cart-drawer-footer {
  padding: 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border-dark);
}

.bill-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bill-grand-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  padding-top: 8px;
  border-top: 1px solid var(--border-dark);
  margin-bottom: 16px;
}

.bill-grand-total span:last-child {
  color: var(--accent-yellow);
}

.btn-checkout-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #b8050f 100%);
  color: #fff;
  border: 1px solid var(--accent-yellow);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}

.btn-checkout-submit:hover {
  transform: translateY(-2px);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  animation: popIn 0.25s ease;
}

.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.btn-modal-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-modal-close:hover {
  color: #fff;
}

/* Checkout Form */
.checkout-form {
  padding: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-yellow);
}

.quick-areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.chip {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.25);
  color: var(--accent-yellow);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.chip:hover {
  background: var(--accent-yellow);
  color: #000;
}

.payment-method-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-method-box i {
  font-size: 1.5rem;
  color: var(--accent-yellow);
}

.payment-method-box strong {
  font-size: 0.9rem;
  color: #fff;
}

.payment-method-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.checkout-total-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid rgba(227, 6, 19, 0.3);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.checkout-total-banner strong {
  font-size: 1.2rem;
  color: var(--accent-yellow);
}

.btn-confirm-order {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #b8050f 100%);
  color: #fff;
  border: 1px solid var(--accent-yellow);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-red);
}

/* Tracking Modal */
.track-lookup-row {
  display: flex;
  padding: 16px 20px;
  gap: 8px;
  border-bottom: 1px solid var(--border-dark);
}

.track-lookup-row input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.btn-track-search {
  background: var(--accent-yellow);
  color: #000;
  border: none;
  font-family: inherit;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.order-badge-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px 0;
}

.invoice-tag {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--accent-yellow);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.order-type-tag {
  background: rgba(227, 6, 19, 0.2);
  color: #ff6b6b;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Tracking Timeline */
.tracking-timeline {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0.4;
  transition: var(--transition);
}

.timeline-step.active {
  opacity: 1;
}

.step-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.timeline-step.active .step-icon {
  background: var(--primary-red);
  border-color: var(--accent-yellow);
  color: #fff;
  box-shadow: 0 0 12px rgba(227, 6, 19, 0.6);
}

.step-details strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.step-details small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Rider Card */
.rider-card {
  margin: 0 20px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rider-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.2);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.rider-info small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.rider-info strong {
  font-size: 0.95rem;
  color: #fff;
}

.btn-call-rider {
  background: #27ae60;
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.track-items-summary {
  padding: 0 20px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.track-whatsapp-cta {
  padding: 0 20px 20px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
}

/* Variation Modal */
.var-modal-body {
  padding: 20px;
}

.var-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.var-option-card:hover,
.var-option-card.selected {
  border-color: var(--accent-yellow);
  background: rgba(255, 193, 7, 0.08);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 800;
  text-decoration: none;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Footer */
.main-footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border-dark);
  padding: 40px 0 20px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--accent-yellow);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-yellow);
}

.apk-download-box {
  margin-top: 12px;
}

.btn-download-apk {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid #333;
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.85rem;
}

.btn-download-apk i {
  font-size: 1.5rem;
  color: #a4c639;
}

.btn-download-apk small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Animations */
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }

  .header-search {
    display: none;
  }

  .mobile-search-row {
    display: block;
  }

  .mobile-search-row .header-search {
    display: flex;
    max-width: 100%;
  }

  .hero-banner-card {
    height: 300px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-overlay {
    padding: 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .floating-cart-bar {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .categories-nav-sticky {
    top: 60px;
  }

  .header-content {
    height: 60px;
  }
}
