/* ========================================
   FoodFight - Food Delivery Website
   Complete CSS Stylesheet
   ======================================== */

/* CSS Variables */
:root {
  --primary: #FF6B00;
  --primary-dark: #E65F00;
  --secondary: #E63946;
  --dark: #1A1A2E;
  --dark-light: #2D2D44;
  --light: #F8F9FA;
  --white: #FFFFFF;
  --gray: #6C757D;
  --gray-light: #E9ECEF;
  --success: #28A745;
  --warning: #FFC107;
  --danger: #DC3545;
  --whatsapp: #25D366;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  
  --transition: all 0.3s ease;
}

/* Dark Mode Variables */
.dark-mode {
  --bg: var(--dark);
  --bg-light: var(--dark-light);
  --text: var(--white);
  --text-muted: #A0A0A0;
  --card-bg: #252540;
  --border: #3A3A55;
}

.light-mode {
  --bg: var(--white);
  --bg-light: var(--light);
  --text: var(--dark);
  --text-muted: var(--gray);
  --card-bg: var(--white);
  --border: var(--gray-light);
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.light-mode {
  --bg: var(--white);
  --bg-light: var(--light);
  --text: var(--dark);
  --text-muted: var(--gray);
  --card-bg: var(--white);
  --border: var(--gray-light);
}

body.dark-mode {
  --bg: var(--dark);
  --bg-light: var(--dark-light);
  --text: var(--white);
  --text-muted: #A0A0A0;
  --card-bg: #252540;
  --border: #3A3A55;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}

.dark-mode .navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  position: relative;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: #FFD700;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.logo-text .highlight {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.location-badge {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}

.location-badge i {
  color: var(--primary);
}

.theme-toggle,
.cart-btn,
.login-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text);
}

.theme-toggle:hover,
.cart-btn:hover {
  background: var(--bg-light);
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  width: auto;
  padding: 8px 20px;
  background: var(--primary);
  color: white;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}

.login-btn:hover {
  background: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--text);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  margin-top: 10px;
  z-index: 999;
}

.dark-mode .mobile-menu {
  background: rgba(45, 45, 68, 0.98);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-search {
  position: relative;
  margin-bottom: 15px;
}

.mobile-search input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: var(--bg-light);
  color: var(--text);
  font-size: 14px;
}

.mobile-search i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.mobile-nav-links {
  margin-bottom: 15px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}

.mobile-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-left: 15px;
}

.mobile-support {
  margin-bottom: 15px;
}

.mobile-support-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.mobile-support-btn:hover {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}

.mobile-support-btn i {
  color: var(--primary);
}

.mobile-login-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #FFF5EB 0%, #FFF0F0 50%, #FFF8F0 100%);
  position: relative;
  overflow: hidden;
}

.dark-mode .hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #252540 50%, #1A1A2E 100%);
}

.floating-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  font-size: 30px;
  opacity: 0.1;
  animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 8s; }
.particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 10s; }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.badge.red {
  background: rgba(230, 57, 70, 0.1);
  color: var(--secondary);
}

.hero-title {
  font-size: 56px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-full {
  width: 100%;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
}

.btn-whatsapp:hover {
  background: #128C7E;
}

.btn-images {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.btn-google {
  border: 2px solid var(--border);
  color: var(--text);
}

.btn-google:hover {
  background: var(--bg-light);
}

.trust-indicators {
  display: flex;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 193, 7, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC107;
  font-size: 18px;
}

.trust-icon.green {
  background: rgba(40, 167, 69, 0.2);
  color: var(--success);
}

.trust-icon.blue {
  background: rgba(0, 123, 255, 0.2);
  color: #007BFF;
}

.trust-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.trust-label {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(230, 57, 70, 0.2));
  border-radius: 50%;
  animation: spin 30s linear infinite;
}

.hero-img {
  position: relative;
  z-index: 1;
  max-width: 400px;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

.floating-card {
  position: absolute;
  padding: 15px 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.price-card {
  left: -20px;
  top: 30%;
  animation: bounceIn 0.5s ease;
}

.rating-card {
  right: -20px;
  bottom: 30%;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bounceIn 0.5s ease 0.2s both;
}

.floating-label {
  font-size: 12px;
  color: var(--text-muted);
}

.floating-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.rating-icon {
  width: 40px;
  height: 40px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ========================================
   Categories Section
   ======================================== */
.categories {
  padding: 80px 0;
  background: var(--bg);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: var(--text);
  margin-bottom: 10px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--text-muted);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: var(--transition);
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  text-align: center;
  color: white;
}

.category-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 5px;
  transition: var(--transition);
}

.category-card:hover .category-emoji {
  transform: scale(1.2) rotate(-10deg);
}

.category-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 3px;
}

.category-count {
  font-size: 12px;
  opacity: 0.8;
}

/* ========================================
   Menu Section
   ======================================== */
.menu {
  padding: 80px 0;
  background: var(--bg-light);
}

.price-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 14px;
  color: var(--text-muted);
}

.filter-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.active-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 15px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius);
  color: var(--primary);
  font-size: 14px;
}

.clear-filter {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.food-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.food-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.food-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
 /* ========================================
 checkOut scroll bar hide
 ======================================== */
.modal-body {
    scrollbar-width: none;
    -ms-overflow-style: none;

}
/* ======================== */

 .btn-full {
  margin-top: 10px;
}



.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.food-card:hover .food-image img {
  transform: scale(1.1);
}

.food-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.badge-tag {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: white;
}

.badge-tag.popular { background: var(--primary); }
.badge-tag.new { background: var(--success); }
.badge-tag.deal { background: var(--secondary); }

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}

.wishlist-btn:hover,
.wishlist-btn.active {
  color: var(--secondary);
}

.quick-add {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.food-card:hover .quick-add {
  opacity: 1;
}

.quick-add-btn {
  padding: 10px 20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 500;
  transform: translateY(10px);
  transition: var(--transition);
}

.food-card:hover .quick-add-btn {
  transform: translateY(0);
}

.food-content {
  padding: 15px;
}

.food-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.food-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.food-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.food-rating i {
  color: #FFC107;
  font-size: 12px;
}

.food-rating span {
  font-size: 13px;
  color: var(--text-muted);
}

.food-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.food-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.add-btn:hover {
  background: var(--primary);
  color: white;
}

/* ========================================
   Deals Section
   ======================================== */
.deals {
  padding: 80px 0;
  background: var(--bg);
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  color: white;
  box-shadow: var(--shadow-lg);
}

.countdown-timer i {
  font-size: 24px;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.timer-unit {
  text-align: center;
}

.timer-value {
  font-size: 28px;
  font-weight: 700;
}

.timer-label {
  font-size: 11px;
  opacity: 0.8;
}

.timer-separator {
  font-size: 24px;
  font-weight: 700;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.deal-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.deal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.deal-card:hover img {
  transform: scale(1.1);
}

.deal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.deal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  animation: pulse 2s infinite;
}

.deal-badge span:first-child {
  font-size: 20px;
  font-weight: 700;
}

.deal-badge span:last-child {
  font-size: 11px;
}

.deal-title {
  font-size: 24px;
  color: white;
  margin-bottom: 8px;
}

.deal-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 15px;
}

.deal-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.deal-current {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.deal-original {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.deal-save {
  padding: 5px 12px;
  background: var(--success);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: white;
}

/* ========================================
   How It Works
   ======================================== */
.how-it-works {
  padding: 80px 0;
  background: var(--bg-light);
}

.steps-container {
  position: relative;
  margin-bottom: 60px;
}

.step-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.step-card {
  text-align: center;
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin: 0 auto 20px;
}

.step-icon.orange { background: linear-gradient(135deg, #FF8C42, var(--primary)); }
.step-icon.red { background: linear-gradient(135deg, #FF6B6B, var(--secondary)); }
.step-icon.green { background: linear-gradient(135deg, #51CF66, var(--success)); }
.step-icon.blue { background: linear-gradient(135deg, #4DABF7, #1971C2); }

.step-title {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 25px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews {
  padding: 80px 0;
  background: var(--bg);
}

.reviews-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 40px;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 350px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--radius);
  position: relative;
}

.review-quote {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  color: rgba(255, 107, 0, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-info h4 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 3px;
}

.review-stars {
  color: #FFC107;
  font-size: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(230, 57, 70, 0.1));
  border-radius: var(--radius-lg);
}

.rating-main {
  text-align: center;
}

.rating-big {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-stars {
  color: #FFC107;
  margin: 10px 0;
}

.rating-text {
  font-size: 14px;
  color: var(--text-muted);
}

.rating-stats {
  display: flex;
  gap: 40px;
}

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

.stat-value-big {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark);
  color: white;
}

.footer-features {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
}

.feature-item h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 13px;
  opacity: 0.7;
}

.footer-main {
  padding: 60px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.footer-logo .logo-text {
  font-size: 22px;
  color: white;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.footer-contact i {
  color: var(--primary);
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links button {
  font-size: 14px;
  opacity: 0.7;
  transition: var(--transition);
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-links button:hover {
  opacity: 1;
  color: var(--primary);
}

.footer-newsletter h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-newsletter p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.facebook:hover { background: #1877F2; }
.social-link.instagram:hover { background: #E4405F; }
.social-link.twitter:hover { background: #1DA1F2; }
.social-link.youtube:hover { background: #FF0000; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.6;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  opacity: 0.6;
}

.payment-icons {
  display: flex;
  gap: 8px;
}

.payment-icons span,
.payment-icons i {
  padding: 3px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  font-size: 11px;
}

.legal-links {
  display: flex;
  gap: 20px;
}

.legal-links a {
  font-size: 13px;
  opacity: 0.6;
  transition: var(--transition);
}

.legal-links a:hover {
  opacity: 1;
  color: var(--primary);
}

/* ========================================
   Cart Drawer
   ======================================== */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.cart-drawer.active {
  visibility: visible;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.cart-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

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

.cart-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.cart-title i {
  width: 45px;
  height: 45px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.cart-title h3 {
  font-size: 18px;
  color: var(--text);
}

.cart-title span {
  font-size: 13px;
  color: var(--text-muted);
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.cart-close:hover {
  background: var(--bg-light);
}

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

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty i {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--text-muted);
}

.cart-empty h3 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.cart-empty p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

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

.cart-item-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}

.cart-item-category {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.cart-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-remove {
  color: var(--text-muted);
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--secondary);
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: var(--transition);
}

.quantity-btn:hover {
  background: var(--primary);
  color: white;
}

.quantity-value {
  font-size: 14px;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

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

.cart-summary {
  margin-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.summary-row.total {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.summary-row.total span:last-child {
  color: var(--primary);
}

.summary-row .free {
  color: var(--success);
}

/* ========================================
   Modals
   ======================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}

.modal.active {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-content.large-modal {
  max-width: 900px;
}

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

.modal-header.gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.modal-header.gradient h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.modal-header.gradient p {
  font-size: 14px;
  opacity: 0.9;
}

.modal-header.gradient .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--bg-light);
}

.modal-body {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
}

.input-with-icon {
  position: relative;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-with-icon input,
.input-with-icon textarea {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--text);
  font-size: 14px;
  transition: var(--transition);
}

.input-with-icon textarea {
  padding-top: 12px;
  min-height: 80px;
  resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Payment Methods */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-option {
  cursor: pointer;
}

.payment-option input {
  display: none;
}

.payment-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.payment-option input:checked + .payment-card {
  border-color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
}

.payment-card i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.payment-card i.fa-money-bill-wave {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
}

.payment-card i.fa-credit-card {
  background: rgba(0, 123, 255, 0.1);
  color: #007BFF;
}

.payment-title {
  display: block;
  font-weight: 600;
  color: var(--text);
}

.payment-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.order-summary-box {
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--radius);
  margin: 20px 0;
}

.order-summary-box h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Auth Switch */
.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-switch a {
  color: var(--primary);
  font-weight: 600;
}

/* Star Rating */
.star-rating {
  display: flex;
  gap: 5px;
  font-size: 24px;
  color: #FFC107;
}

.star-rating i {
  cursor: pointer;
  transition: var(--transition);
}

.star-rating i:hover,
.star-rating i.active {
  font-weight: 900;
}

/* Alert Box */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 193, 7, 0.1);
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.alert-box i {
  color: var(--warning);
  margin-top: 2px;
}

.alert-box p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========================================
   FAQs Modal
   ======================================== */
.faqs-container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-cat-btn {
  padding: 12px 15px;
  border-radius: var(--radius);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  background: var(--bg-light);
  color: var(--text);
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--primary);
  color: white;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 15px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

/* ========================================
   Delivery Info Modal
   ======================================== */
.delivery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.del-stat {
  text-align: center;
  padding: 25px;
  border-radius: var(--radius);
}

.del-stat:nth-child(1) {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 140, 66, 0.1));
}

.del-stat:nth-child(2) {
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(81, 207, 102, 0.1));
}

.del-stat:nth-child(3) {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(77, 171, 247, 0.1));
}

.del-stat i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
}

.del-stat:nth-child(1) i {
  background: var(--primary);
  color: white;
}

.del-stat:nth-child(2) i {
  background: var(--success);
  color: white;
}

.del-stat:nth-child(3) i {
  background: #007BFF;
  color: white;
}

.del-stat h4 {
  font-size: 28px;
  margin-bottom: 5px;
}

.del-stat:nth-child(1) h4 {
  color: var(--primary);
}

.del-stat:nth-child(2) h4 {
  color: var(--success);
}

.del-stat:nth-child(3) h4 {
  color: #007BFF;
}

.del-stat p {
  font-size: 13px;
  color: var(--text-muted);
}

.delivery-process {
  margin-bottom: 30px;
}

.delivery-process h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  text-align: center;
}

.process-step .step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: white;
  font-size: 24px;
}

.step-time {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step h5 {
  font-size: 14px;
  margin-bottom: 5px;
}

.process-step p {
  font-size: 12px;
  color: var(--text-muted);
}

.delivery-areas {
  margin-bottom: 30px;
}

.delivery-areas h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--text);
}

.area-tag i {
  color: var(--success);
}

.delivery-hours {
  margin-bottom: 30px;
}

.delivery-hours h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: var(--bg-light);
  border-radius: var(--radius);
  font-size: 14px;
}

.hour-row.special {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}

.delivery-guarantee {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: var(--radius);
}

.delivery-guarantee i {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.delivery-guarantee h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.delivery-guarantee ul {
  list-style: none;
}

.delivery-guarantee li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.delivery-guarantee li i {
  width: auto;
  height: auto;
  background: none;
  color: var(--success);
  font-size: 14px;
}

/* ========================================
   Track Order Modal
   ======================================== */
.track-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.track-order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.track-order-info h4 {
  font-size: 16px;
}

.track-status {
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
}

.track-status.delivered {
  background: rgba(40, 167, 69, 0.1);
  color: var(--success);
}

.track-status.in-progress {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}

.track-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.track-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--border);
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.track-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 8px;
  transition: var(--transition);
}

.track-step.completed .track-step-icon,
.track-step.active .track-step-icon {
  background: var(--primary);
  color: white;
}

.track-step span {
  font-size: 11px;
  color: var(--text-muted);
}

.track-step.completed span,
.track-step.active span {
  color: var(--primary);
  font-weight: 500;
}

/* ========================================
   Returns Modal
   ======================================== */
.returns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.returns-policy h4,
.returns-form h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.policy-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.policy-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.policy-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}

.policy-item h5 {
  font-size: 14px;
  margin-bottom: 5px;
}

.policy-item p {
  font-size: 13px;
  color: var(--text-muted);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.reason-option {
  cursor: pointer;
}

.reason-option input {
  display: none;
}

.reason-option span {
  display: block;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  text-align: center;
  transition: var(--transition);
}

.reason-option input:checked + span {
  border-color: var(--primary);
  background: rgba(255, 107, 0, 0.05);
  color: var(--primary);
}

/* ========================================
   Cookie Consent
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 4000;
  transform: translateY(150%);
  transition: transform 0.5s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}

.cookie-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.cookie-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.cookie-text p {
  font-size: 13px;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ========================================
   Toast Notification
   ======================================== */
.toast {
  position: fixed;
  top: 100px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--success);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: translateX(150%);
  transition: transform 0.3s ease;
  z-index: 5000;
}

.toast.active {
  transform: translateX(0);
}

.toast i {
  font-size: 20px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.8); }
  50% { transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step-line {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .login-btn span {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-image {
    order: -1;
  }
  
  .hero-circle {
    width: 300px;
    height: 300px;
  }
  
  .hero-img {
    max-width: 250px;
  }
  
  .floating-card {
    display: none;
  }
  
  .trust-indicators {
    justify-content: center;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .price-filter {
    display: none;
  }
  
  .deals-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .overall-rating {
    flex-direction: column;
    gap: 20px;
  }
  
  .rating-stats {
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .faqs-container {
    grid-template-columns: 1fr;
  }
  
  .faq-categories {
    flex-direction: row;
    overflow-x: auto;
  }
  
  .faq-cat-btn {
    white-space: nowrap;
  }
  
  .delivery-stats {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .returns-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .categories-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .review-card {
    flex: 0 0 280px;
  }
  
  .modal-content {
    max-height: 95vh;
  }
  
  .modal-content.large-modal {
    max-width: 100%;
  }
  
  .process-steps,
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .reason-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Categories Grid (Max-width: 768px) */
@media (max-width: 768px) {
  .categories-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Ek line mein 3 chote box */
    gap: 10px !important;
    padding: 10px;
  }

  .category-card {
    padding: 15px 5px !important;
    text-align: center;
  }

  .category-card i {
    font-size: 1.5rem !important; /* Icon thora chota karne ke liye */
    margin-bottom: 8px !important;
  }

  .category-card span {
    font-size: 12px !important; /* Text size chota karne ke liye */
    display: block;
  }
}



/* ===============
media quaries
=============== */

/* --- Mobile Responsiveness & Smoothness --- */

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .nav-links, .nav-actions .location-badge, .nav-actions .login-btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .menu-grid, .deals-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-newsletter form {
    justify-content: center;
  }

  /* Smooth Scrolling for Mobile */
  html {
    scroll-behavior: smooth;
  }

  /* Modal responsiveness */
  .modal-content {
    width: 95%;
    margin: 10px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

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

  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Smooth Transition for Mobile Menu */
.mobile-menu {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
  opacity: 0;
}

.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}





/* Mobile Touch Optimizations */
@media (max-width: 600px) {
    .btn {
        padding: 15px 20px; /* Bare buttons for easy clicking */
        font-size: 16px;
        border-radius: 12px;
    }

    .modal-content {
        bottom: 0;
        position: fixed;
        width: 100%;
        border-radius: 20px 20px 0 0; /* Bottom sheet style for mobile */
        margin: 0;
        animation: slideUp 0.3s ease-out;
    }

    .input-with-icon input, 
    .input-with-icon textarea {
        font-size: 16px; /* Prevents iOS auto-zoom on focus */
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* WhatsApp Button Styling */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    margin-top: 10px;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
}


/* ==============
smooth 
============== */

/* Mobile Menu Toggle State */
.mobile-menu {
    position: fixed;
    top: 70px; /* Navbar height ke mutabiq */
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-color, #ffffff);
    transition: 0.4s ease-in-out;
    z-index: 999;
    display: block !important; /* Ensure it exists */
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Hero Section Adjustments */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 80%;
        margin-bottom: 30px;
    }

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

    /* Grid Adjustments */
    .categories-grid, .menu-grid, .deals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 15px;
    }

    .nav-links, .location-badge, .login-btn span {
        display: none;
    }
}

/* Card Hover Smoothness */
.category-card, .food-card {
    transition: transform 0.3s ease;
    -webkit-tap-highlight-color: transparent; /* Mobile tap effect clean karne ke liye */
}