:root {
  /* Primary Colors */
  --primary: #ff6a00;
  --primary-700: #e85d00;
  --primary-800: #d14900;
  --primary-light: #fff5ee;
  --primary-gradient: linear-gradient(135deg, #ff6a00 0%, #ff8c42 100%);
  --accent: #ff6a00;
  
  /* Text Colors */
  --text: #1f2937;
  --text-light: #374151;
  --text-muted: #6b7280;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg: #ffffff;
  --bg-dark: #0f172a;
  --bg-alt: #f8fafc;
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  
  /* Border & Shadow */
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(255, 106, 0, 0.3);
  
  /* Transitions & Animations */
  --transition-fast: all 0.15s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing */
  --header-height: 80px;
  --section-padding: 100px;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-accent: 'Dancing Script', cursive;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}
/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.loading-logo .accent {
  color: #ffd700;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 15px var(--primary);
  }
  50% {
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out;
}

.animate-slide-in {
  animation: slideInLeft 0.6s ease-out;
}

.animate-bounce-in {
  animation: bounce 1s ease-out;
}

.animate-zoom-in {
  animation: zoomIn 0.5s ease-out;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--alt);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-700);
}
/* Top Bar */
.top-bar {
  background: var(--text);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  overflow: hidden;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.top-search-bar {
  flex: 1;
  max-width: 400px;
}

.top-search-bar .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.top-search-bar .search-icon {
  position: absolute;
  left: 12px;
  color: #666;
  font-size: 14px;
  z-index: 1;
}

.top-search-bar input {
  width: 100%;
  padding: 8px 12px 8px 35px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 13px;
  transition: all 0.3s ease;
}

.top-search-bar input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-search-bar input::placeholder {
  color: #666;
  font-size: 12px;
}

.currency-selector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile Top Bar */
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 0;
  }
  
  .top-bar-content {
    gap: 10px;
  }
  
  .top-search-bar {
    flex: 1;
    max-width: none;
  }
  
  .top-search-bar input {
    padding: 6px 10px 6px 30px;
    font-size: 12px;
  }
  
  .top-search-bar .search-icon {
    left: 10px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar-content {
    flex-direction: column;
    gap: 8px;
  }
  
  .top-search-bar {
    width: 100%;
  }
}

.currency-selector select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  min-width: 80px;
}

.currency-selector select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Search Suggestions Dropdown */
.search-input-wrapper {
  position: relative;
}

.search-input-wrapper.has-suggestions {
  z-index: 1000;
}

.search-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  margin-top: 5px;
  overflow: hidden;
}

.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: var(--primary);
  color: white;
}

.suggestion-item i {
  color: var(--primary);
  font-size: 14px;
  width: 16px;
  transition: color 0.2s ease;
}

.suggestion-item:hover i {
  color: white;
}

.suggestion-item span {
  color: inherit;
  font-size: 13px;
  font-weight: 500;
}

/* Modern Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: var(--z-sticky);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 16px;
  max-width: 100%;
  overflow: hidden;
}

.logo {
  font-weight: 800;
  font-size: 28px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo i {
  color: var(--primary);
  font-size: 24px;
}

.logo span {
  color: var(--primary);
  position: relative;
}

.logo span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  opacity: 0.3;
  border-radius: 2px;
}

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .menu-btn {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 5px;
    text-align: left;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .nav a i {
    font-size: 16px;
    width: 20px;
    text-align: center;
  }
  
  .nav a:hover,
  .nav a.active {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateX(5px);
  }
}

.nav a {
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 1px;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.cart-link:hover {
  background: var(--primary);
  color: #fff;
}

.badge {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-direction: column;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.menu-btn.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-700);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn i {
  font-size: 14px;
  transition: var(--transition);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: calc(-1 * var(--header-height));
  padding-top: var(--header-height);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
  padding: 0 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}

.slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 18px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.prev-slide,
.next-slide {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.prev-slide:hover,
.next-slide:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.slide-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--alt);
}

.features .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  transition: var(--transition);
}

.feature:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  transform: rotateY(180deg);
}

.feature h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--text);
}

.feature p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
}

/* Categories Section */
.categories {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 36px;
  margin: 0 0 10px;
  color: var(--text);
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 10px 0 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 250px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: #fff;
  text-align: center;
}

.category-overlay h3 {
  font-size: 24px;
  margin: 0 0 15px;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Product Cards */
.popular-meals {
  padding: 80px 0;
  background: var(--alt);
}

.cards-4 {
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.product-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

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

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

.product-actions {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.card-body {
  padding: 20px;
}

.product-rating {
  color: #ffc107;
  margin-bottom: 8px;
  font-size: 14px;
}

.product-rating span {
  color: var(--text-muted);
  margin-left: 5px;
  font-size: 13px;
}

.product-card h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text);
}

.product-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 15px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart:hover {
  background: var(--primary-700);
  transform: translateY(-2px);
}

/* Notifications */
.notification {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.notification i {
  font-size: 18px;
}

/* Loading Animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  margin-right: 8px;
}

/* Cart Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

.badge {
  animation: bounce 0.5s ease;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .section-head h2 {
    font-size: 32px;
  }
  
  .feature {
    padding: 25px 15px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    padding: 0 10px;
  }
  
  .menu-btn {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav a {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
  }
  
  .hero {
    height: auto;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .section-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: 450px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .features .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .cards-4 {
    grid-template-columns: 1fr;
  }
}
.section{padding:60px 0}
.section.alt{background:var(--alt);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.section-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.link{color:var(--primary)}
.grid{display:grid;gap:16px}
.cards-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.card{background:#fff;border:1px solid var(--border);border-radius:16px;overflow:hidden;display:flex;flex-direction:column}
.card-body{padding:14px}
.card h3{margin:0 0 6px}
.price{color:var(--primary);font-weight:700}
.card.quote p{margin:0 0 10px;font-style:italic}
.offer-slider{display:flex;gap:16px;overflow:auto;scroll-snap-type:x mandatory;padding-bottom:6px}
.offer-slide{min-width:80%;scroll-snap-align:start;border:1px solid var(--border);border-radius:16px;overflow:hidden;background:#fff}
/* ===========================================
   #FOOTER STYLES
   =========================================== */

.footer {
  background: #0f172a;
  color: #e2e8f0;
  position: relative;
  padding: 70px 0 0;
  margin-top: 60px;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff8c00);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 30px 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Column */
.footer-col {
  padding: 0 15px;
}

/* Logo Section */
.footer-logo h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.footer-desc {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #cbd5e1;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* Footer Title */
.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 12px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a i {
  font-size: 12px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Newsletter Form */
.newsletter-form {
  margin: 20px 0;
}

.form-group {
  position: relative;
  display: flex;
  margin-bottom: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  border-radius: 6px 0 0 6px;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.btn-newsletter {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0 18px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-newsletter:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

/* Opening Hours */
.opening-hours h5 {
  color: #fff;
  font-size: 16px;
  margin: 25px 0 15px;
  font-weight: 600;
}

.opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  font-size: 14px;
  color: #94a3b8;
}

.opening-hours li:last-child {
  border-bottom: none;
}

.opening-hours span:first-child {
  color: #cbd5e1;
}

/* Footer Bottom */
.footer-bottom {
  background: #0b1120;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom strong {
  color: #fff;
  font-weight: 600;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.payment-methods span {
  color: #94a3b8;
  font-size: 14px;
}

.payment-methods i {
  font-size: 24px;
  color: #64748b;
  transition: all 0.3s ease;
}

.payment-methods i:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(239, 68, 68, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #dc2626;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-col {
    padding: 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .payment-methods {
    margin-top: 15px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-title {
    margin-bottom: 20px;
  }
  
  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
  }
}
.form input,.form textarea,.form select{width:100%;padding:10px;border:1px solid var(--border);border-radius:10px;margin-top:6px}
.form label{display:block;margin-bottom:12px}
.grid.two{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.grid .full{grid-column:1/-1}
.narrow{max-width:800px}
.center{text-align:center}
.wide-img{margin:16px 0;border-radius:16px;border:1px solid var(--border)}
.filters{display:flex;gap:10px;align-items:center}
.filters input,.filters select{padding:10px;border:1px solid var(--border);border-radius:10px}
.cart-table{width:100%;border-collapse:collapse;margin-top:10px}
.cart-table th,.cart-table td{border:1px solid var(--border);padding:10px;text-align:left}
.cart-actions{display:flex;justify-content:space-between;align-items:center;margin-top:16px}
.checkout-summary{border:1px solid var(--border);border-radius:12px;padding:12px;margin-bottom:16px}
/* Responsive */
@media (max-width:900px){
  .cards-3{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .hero h1{font-size:32px}
}
@media (max-width:640px){
  .cards-3{grid-template-columns:1fr}
  .nav{display:none;position:absolute;right:16px;top:60px;background:#fff;border:1px solid var(--border);border-radius:12px;padding:10px;flex-direction:column;min-width:200px}
  .menu-btn{display:block}
}


/* Page hero */
.page-hero{position:relative;overflow:hidden;border-bottom:1px solid var(--border)}
.page-hero img{width:100%;height:auto;display:block}
.page-hero-title{position:absolute;inset:0;display:flex;align-items:center;justify-content:flex-start}
.page-hero-title h1{color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.25);margin-left:8px}
@media (max-width:640px){ .page-hero-title h1{font-size:28px} }
