:root {
  --primary: #e63946;
  --secondary: #1d3557;
  --accent: #457b9d;
  --light: #f1faee;
  --dark: #1d3557;
  --gray: #8d99ae;
  --white: #ffffff;
  --success: #2a9d8f;
  --warning: #e9c46a;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.logo-text h1 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-info {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 15px;
  background: var(--light);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-item:hover i {
  color: var(--white);
}

.contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.contact-number,
.contact-time,
.contact-area {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Navigation */
nav {
  background: linear-gradient(135deg, var(--secondary), #2c3e50);
  position: relative;
}

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

.category-nav {
  display: flex;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
  gap: 5px;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  white-space: nowrap;
  color: var(--white);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.category-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.category-item.active {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.category-item i {
  font-size: 0.9rem;
}

.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 15px;
  margin-left: 20px;
  min-width: 300px;
  box-shadow: var(--shadow);
}

.search-bar input {
  border: none;
  outline: none;
  padding: 5px 10px;
  flex: 1;
  font-size: 0.9rem;
  background: transparent;
}

.search-bar i {
  color: var(--gray);
}

.search-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #c1121f;
  transform: scale(1.05);
}

/* Delivery Banner */
.delivery-banner {
  background: linear-gradient(135deg, #e63946, #ff6b6b);
  color: white;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  z-index: 999;
}

.delivery-banner i {
  margin-right: 10px;
  animation: bounce 2s infinite;
}

.delivery-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-left: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(29, 53, 87, 0.9),
      rgba(69, 123, 157, 0.9)
    ),
    url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  padding: 100px 0;
  position: relative;
}

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

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: var(--primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.hero-feature i {
  color: var(--primary);
  font-size: 1.1rem;
}

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

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-size: 1rem;
}

.cta-button.primary {
  background: var(--primary);
  color: white;
}

.cta-button.primary:hover {
  background: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.cta-button.secondary:hover {
  background: white;
  color: var(--secondary);
  transform: translateY(-3px);
}

.cta-button.whatsapp {
  background: #25d366;
  color: white;
}

.cta-button.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

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

.image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-placeholder i {
  font-size: 6rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.image-overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.image-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Call Now Section */
.call-now-section {
  background: linear-gradient(135deg, var(--secondary), #2c3e50);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.call-now-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.call-now-icon {
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: pulse 2s infinite;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
  }
}

.call-now-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.call-now-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.call-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 1.1rem;
}

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

.call-btn.primary:hover {
  background: #c1121f;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.call-btn.secondary {
  background: transparent;
  border-color: var(--primary);
  color: white;
}

.call-btn.secondary:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.call-btn.whatsapp {
  background: #25d366;
  color: white;
}

.call-btn.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Quick Categories */
.quick-categories {
  padding: 80px 0;
  background: var(--white);
}

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

.category-quick-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-quick-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.category-quick-card:hover::before {
  left: 100%;
}

.category-quick-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.category-quick-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.category-quick-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.category-count {
  background: var(--light);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Brands Section */
.brands-section {
  padding: 60px 0;
  background: var(--light);
}

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

.brand-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.brand-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.brand-card h4 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.brand-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--secondary);
  display: inline-block;
  padding-bottom: 15px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  margin-top: 15px;
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--dark);
}

.filter-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f8f9fa;
  position: relative;
  height: fit-content;
}

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

.product-image {
  height: 190px;
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  position: relative;
}

.stock-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--success);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.stock-badge.out-of-stock {
  background: var(--gray);
}

.product-details {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.3;
}

.product-description {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: var(--light);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  color: var(--dark);
  border: 1px solid #e9ecef;
  font-weight: 500;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.quantity-selector {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 5px;
  width: fit-content;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  font-weight: 600;
  margin: 0 10px;
  font-size: 1.1rem;
  background: transparent;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

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

.btn-payment:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.call-now-small {
  background: #25a244;
  color: white;
  padding: 12px;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

.call-now-small:hover {
  background: #1e8e3e;
  transform: translateY(-2px);
}

.btn:disabled,
.quantity-btn:disabled,
.call-now-small:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.products-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.view-all-btn {
  background: var(--secondary);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(29, 53, 87, 0.3);
}

.products-stats {
  display: flex;
  gap: 30px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-weight: 500;
}

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

/* Service Area */
.service-area {
  background: var(--light);
  padding: 80px 0;
  text-align: center;
}

.service-area h2 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.area-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 50px;
}

.area-tag {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  border: 2px solid var(--primary);
  color: var(--secondary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.area-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

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

.service-feature {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

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

.service-feature i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-feature h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-feature p {
  color: var(--gray);
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background: var(--white);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f8f9fa;
  position: relative;
  overflow: hidden;
}

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

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

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light), #e8f4f8);
}

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

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-content {
  position: relative;
  margin-bottom: 25px;
}

.testimonial-content i {
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-content p {
  font-size: 1.1rem;
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #e9ecef;
  padding-top: 20px;
}

.testimonial-author strong {
  display: block;
  color: var(--secondary);
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--secondary), #2c3e50);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--primary);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

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

.footer-logo i {
  color: var(--primary);
  margin-top: 5px;
}

.footer-logo h3 {
  margin-bottom: 5px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: white;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-links i {
  width: 16px;
  color: var(--primary);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.service-areas span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.delivery-info {
  background: rgba(230, 57, 70, 0.1);
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.delivery-info i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.delivery-info strong {
  display: block;
  margin-bottom: 5px;
}

.delivery-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-notes p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 20px;
}

.modal.show {
  opacity: 1;
}

.modal-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  padding: 0;
  position: relative;
  animation: modalFade 0.3s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-height: 95vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.payment-modal-content {
  max-width: 550px;
  max-height: 95vh;
}

.payment-modal-body {
  padding: 30px;
}

.payment-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light);
}

.payment-header .modal-title {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.payment-header .modal-title i {
  color: var(--primary);
}

.payment-subtitle {
  color: var(--gray);
  font-size: 0.95rem;
  margin: 0;
}

.payment-details-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 25px;
  border-left: 4px solid var(--primary);
}

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

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

.payment-item.payment-total {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid var(--primary);
  font-size: 1.2rem;
}

.payment-label {
  color: var(--gray);
  font-weight: 500;
  font-size: 0.95rem;
}

.payment-value {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
}

.payment-item.payment-total .payment-value {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.qr-code-section {
  text-align: center;
  margin-bottom: 25px;
}

.qr-code-wrapper {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  border: 2px solid var(--light);
  margin-bottom: 20px;
  display: inline-block;
}

.qr-code-display {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-code-display canvas {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
}

.qr-code-label {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

.qr-code-label i {
  color: var(--primary);
  font-size: 1.1rem;
}

.qr-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 15px;
  color: var(--gray);
}

.qr-loading .spinner {
  width: 50px;
  height: 50px;
  border-width: 4px;
}

.qr-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  color: var(--gray);
  text-align: center;
}

.qr-error i {
  color: var(--warning);
  margin-bottom: 15px;
}

.qr-error-text {
  font-size: 0.9rem;
  margin-top: 10px;
  color: var(--gray);
}

.payment-methods {
  margin-top: 20px;
}

.payment-methods-title {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 12px;
  font-weight: 500;
}

.payment-methods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.payment-method-badge {
  background: var(--light);
  color: var(--secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.payment-instructions-card {
  background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 25px;
  border-left: 4px solid var(--accent);
}

.payment-instructions-card h4 {
  color: var(--secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.payment-instructions-card h4 i {
  color: var(--accent);
}

.payment-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--dark);
}

.payment-steps li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.payment-steps li:last-child {
  margin-bottom: 0;
}

.payment-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-secondary {
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--gray);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--gray);
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--light);
  border: none;
  z-index: 10;
}

.close-modal:hover {
  color: var(--primary);
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.modal-title {
  margin-bottom: 25px;
  color: var(--secondary);
  text-align: center;
  font-size: 1.8rem;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

#qrcode {
  width: 280px;
  height: 280px;
  background-color: white;
  padding: 15px;
  border-radius: var(--radius);
  border: 2px solid var(--light);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-info {
  text-align: center;
}

.payment-info p {
  margin-bottom: 8px;
  color: var(--dark);
}

.payment-instructions {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 20px;
  text-align: left;
}

.payment-instructions p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.payment-instructions strong {
  color: var(--primary);
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.whatsapp-float,
.call-float,
.scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-float {
  background: #25d366;
  animation: pulse-green 2s infinite;
}

.call-float {
  background: #25a244;
  animation: pulse-call 2s infinite;
}

.scroll-to-top {
  background: var(--primary);
  border: none;
  cursor: pointer;
  display: none;
}

.whatsapp-float:hover,
.call-float:hover,
.scroll-to-top:hover {
  transform: scale(1.1);
}

.whatsapp-float:hover {
  background: #128c7e;
}

.call-float:hover {
  background: #1e8e3e;
}

.scroll-to-top:hover {
  background: #c1121f;
}

.float-text {
  position: absolute;
  right: 70px;
  background: var(--secondary);
  color: white;
  padding: 8px 15px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .float-text,
.call-float:hover .float-text {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 162, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 162, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 162, 68, 0);
  }
}

/* No Products State */
.no-products {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}

.no-products i {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 4rem;
  opacity: 0.5;
}

.no-products h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.no-products p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Search Results Count */
.search-results-count {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
  animation: slideDown 0.3s ease;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}

.p-20 {
  padding: 20px;
}
.p-30 {
  padding: 30px;
}
.p-40 {
  padding: 40px;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
}

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

/* Categories Page Specific Styles */
.page-hero {
  background: linear-gradient(135deg, var(--secondary), #2c3e50);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.breadcrumb i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Categories */
.main-categories {
  padding: 80px 0;
  background: var(--white);
}

.categories-grid-main {
  display: flex;
  width: 100%;
  gap: 10px;
}

.category-main-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
}

.category-main-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.category-main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-main-icon i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.9;
}

.category-main-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.category-main-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.category-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.product-count,
.models-count {
  background: var(--light);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.product-count {
  color: var(--primary);
  border: 2px solid var(--primary);
}

.models-count {
  color: var(--accent);
  border: 2px solid var(--accent);
}

.category-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Sub Categories */
.sub-categories {
  padding: 80px 0;
  background: var(--light);
}

.sub-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sub-category-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.sub-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
}

.sub-category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.sub-category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.sub-category-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.sub-category-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.item-count {
  background: var(--light);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Bike Models Section */
.bike-models-section {
  padding: 80px 0;
  background: var(--white);
}

.models-categories {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.brand-category {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--secondary), #2c3e50);
  color: white;
}

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

.brand-logo i {
  font-size: 2rem;
}

.brand-logo h3 {
  font-size: 1.8rem;
  margin: 0;
}

.model-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.model-card {
  display: flex;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.model-card:nth-child(2n) {
  border-right: none;
}

.model-card:last-child,
.model-card:nth-last-child(2):nth-child(2n) {
  border-bottom: none;
}

.model-card:hover {
  background: var(--light);
  transform: translateX(5px);
}

.model-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.model-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--secondary);
}

.model-info p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.parts-available {
  background: var(--light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), #ff6b6b);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button.large {
  padding: 18px 35px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

/* Service Info */
.service-info {
  padding: 60px 0;
  background: var(--light);
}

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

.service-feature-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.service-feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-feature-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-feature-card p {
  color: var(--gray);
  line-height: 1.5;
}

/* No Results Message */
.no-results-message {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}

.no-results-message i {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 4rem;
  opacity: 0.5;
}

.no-results-message h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.no-results-message p {
  color: var(--gray);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.no-results-message a {
  color: var(--primary);
  font-weight: 600;
}

/* Bike Parts Page Specific Styles */

/* Quick Stats */
.quick-stats {
  padding: 40px 0;
  background: var(--light);
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary);
}

.stat-info h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-info p {
  color: var(--gray);
  font-weight: 500;
}

/* Filter Section */
.filter-section {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid #e9ecef;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-header h2 {
  color: var(--secondary);
  font-size: 1.5rem;
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.filter-reset {
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--gray);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.results-count {
  background: var(--light);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--primary);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--dark);
}

.filter-tab:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.filter-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.filter-tab i {
  font-size: 1rem;
}

/* Advanced Filters */
.advanced-filters {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 25px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid #e9ecef;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.9rem;
}

.filter-group select {
  padding: 10px 15px;
  border: 2px solid #e9ecef;
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

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

/* Featured Banner */
.featured-banner {
  background: linear-gradient(135deg, #ff6b6b, #e63946);
  color: white;
  padding: 30px 0;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-text h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.banner-text p {
  opacity: 0.9;
  margin: 0;
}

/* Products Header */
.products-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-header h2 {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.products-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Loading State */
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
}

.loading-state i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.loading-state p {
  font-size: 1.1rem;
}

/* No Results */
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}

.no-results i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-results h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.no-results p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 50px;
}

.load-more-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.load-more-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 53, 87, 0.3);
}

/* Brands Showcase */
.brands-showcase {
  padding: 60px 0;
  background: var(--light);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
}

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

.brand-item i {
  font-size: 2.5rem;
}

.brand-item span {
  font-weight: 600;
  color: var(--secondary);
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.service-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.service-card p {
  color: var(--gray);
  line-height: 1.5;
}

/* CTA Banner */
.cta-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--secondary), #2c3e50);
  color: white;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-text p {
  opacity: 0.9;
  font-size: 1.1rem;
  margin: 0;
}

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

.cta-button.large {
  padding: 16px 30px;
  font-size: 1.1rem;
}

/* Responsive Design for Bike Parts */
@media (max-width: 768px) {
  .filter-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .advanced-filters {
    flex-direction: column;
    gap: 15px;
  }

  .filter-group select {
    min-width: 100%;
  }

  .banner-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

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

/* Scooter Parts Page Specific Styles */

/* Models Info Section */
.models-info {
  padding: 80px 0;
  background: var(--light);
}

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

.model-info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.model-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
}

.model-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.model-icon {
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
}

.model-info-card h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.model-info-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.model-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.model-features span {
  background: var(--light);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--primary);
}

/* Common Parts Section */
.common-parts {
  padding: 80px 0;
  background: var(--white);
}

.parts-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.parts-category {
  background: var(--light);
  padding: 30px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}

.parts-category h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.parts-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parts-category li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.parts-category li:last-child {
  border-bottom: none;
}

.parts-category li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Scooter Specific Filter Tabs */
.filter-tab[data-category] i {
  color: inherit;
}

/* Enhanced Product Cards for Scooters */
.products-grid .product-card .product-image {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.products-grid .product-card:hover .product-image {
  background: linear-gradient(135deg, #764ba2, #667eea);
}

/* Scooter Brand Colors */
.brand-item[style*="color: #e40521"] {
  border-top: 3px solid #e40521;
}

.brand-item[style*="color: #e4002b"] {
  border-top: 3px solid #e4002b;
}

.brand-item[style*="color: #0066b3"] {
  border-top: 3px solid #0066b3;
}

.brand-item[style*="color: #ff0000"] {
  border-top: 3px solid #ff0000;
}

.brand-item[style*="color: #0055a4"] {
  border-top: 3px solid #0055a4;
}

/* Service Cards Enhancement */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

/* CTA Banner Enhancement */
.cta-banner {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Responsive Design for Scooter Parts */
@media (max-width: 768px) {
  .models-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .model-features {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .model-info-card {
    padding: 30px 20px;
  }

  .parts-category {
    padding: 25px 20px;
  }

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

/* Animation for Scooter Icons */
@keyframes scooterFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.model-icon i {
  animation: scooterFloat 3s ease-in-out infinite;
}

/* Special Offers Badge */
.special-offer {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b6b, #e63946);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  animation: pulse 2s infinite;
}

/* Quick Order Button */
.quick-order {
  background: #25a244;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  width: 100%;
  justify-content: center;
}

.quick-order:hover {
  background: #1e8e3e;
  transform: translateY(-2px);
}

/* Stock Availability */
.stock-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.stock-info.in-stock {
  color: var(--success);
}

.stock-info.low-stock {
  color: var(--warning);
}

.stock-info.out-of-stock {
  color: var(--gray);
}

/* Product Detail Page Styles */
.product-detail-section {
  padding: 40px 0 80px;
  background: var(--white);
  min-height: 70vh;
}

.product-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.product-image-section {
  position: relative;
}

.product-main-image {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-badge-large {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.stock-badge-large.in-stock {
  background: var(--success);
  color: white;
}

.stock-badge-large.out-of-stock {
  background: var(--gray);
  color: white;
}

.product-info-section h1 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.product-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.product-brand,
.product-model,
.product-category {
  background: var(--light);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}

.product-price-large {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.price-label {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 500;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

.product-description-full {
  margin-bottom: 30px;
}

.product-description-full h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.product-description-full p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1rem;
}

.quantity-section {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light);
  border-radius: var(--radius);
}

.quantity-section label {
  display: block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.quantity-selector-large {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity-btn {
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  color: var(--primary);
}

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

.quantity-input-large {
  width: 80px;
  height: 45px;
  text-align: center;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.2rem;
  background: var(--white);
}

.total-price-display {
  font-size: 1.3rem;
  color: var(--secondary);
  padding-top: 15px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.total-price-display strong {
  color: var(--primary);
}

/* QR Payment Section */
.qr-payment-section {
  background: linear-gradient(135deg, var(--light) 0%, #f8f9fa 100%);
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid var(--light);
}

.qr-section-title {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qr-section-title i {
  color: var(--primary);
}

.qr-code-display-container {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.qr-code-display-inline {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.qr-code-display-inline canvas {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
}

.qr-code-info {
  flex: 1;
  min-width: 200px;
}

.qr-total-amount {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.qr-total-amount strong {
  color: var(--primary);
  font-size: 1.8rem;
}

.qr-payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.payment-badge {
  background: white;
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--primary);
}

.qr-loading-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
  color: var(--gray);
}

.spinner-small {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(230, 57, 70, 0.1);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.qr-error-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  color: var(--gray);
  text-align: center;
  font-size: 0.9rem;
}

.qr-error-inline i {
  color: var(--warning);
  margin-bottom: 10px;
  font-size: 2rem;
}

/* Compact Action Buttons */
.product-actions-compact {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-compact {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-compact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-compact:hover::before {
  width: 300px;
  height: 300px;
}

.btn-compact i {
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.btn-compact span {
  position: relative;
  z-index: 1;
}

.btn-whatsapp-compact {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call-compact {
  background: linear-gradient(135deg, #25a244 0%, #1e8e3e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 162, 68, 0.3);
}

.btn-call-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 162, 68, 0.4);
}

.btn-compact:active {
  transform: translateY(0);
}

.product-features-section {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid var(--light);
}

.product-features-section h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.related-products-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--light);
}

.related-products-section h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 30px;
  text-align: center;
}

.error-state {
  text-align: center;
  padding: 80px 20px;
}

.error-state i {
  color: var(--warning);
  margin-bottom: 20px;
}

.error-state h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.error-state p {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Responsive Design for Product Detail */
@media (max-width: 968px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-main-image {
    height: 400px;
  }

  .product-info-section h1 {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .payment-modal-content {
    max-width: 95%;
    max-height: 98vh;
  }

  .payment-modal-body {
    padding: 20px;
  }

  .qr-code-display {
    width: 240px;
    height: 240px;
  }

  .qr-code-wrapper {
    padding: 20px;
  }

  .payment-header .modal-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-detail-section {
    padding: 20px 0 40px;
  }

  .product-main-image {
    height: 300px;
  }

  .product-info-section h1 {
    font-size: 1.8rem;
  }

  .product-meta {
    gap: 10px;
  }

  .product-price-large {
    flex-direction: column;
    gap: 10px;
  }

  .price-amount {
    font-size: 1.8rem;
  }

  .quantity-selector-large {
    justify-content: center;
  }

  .product-actions-compact {
    flex-direction: column;
    gap: 10px;
  }

  .btn-compact {
    width: 100%;
    padding: 14px 20px;
  }

  .qr-code-display-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .qr-code-display-inline {
    width: 180px;
    height: 180px;
  }

  .qr-code-info {
    width: 100%;
  }

  .payment-modal-content {
    max-width: 95%;
    max-height: 98vh;
  }

  .payment-modal-body {
    padding: 20px;
  }

  .qr-code-display {
    width: 240px !important;
    height: 240px !important;
  }

  .qr-code-wrapper {
    padding: 15px;
  }

  .payment-header .modal-title {
    font-size: 1.5rem;
  }

  .payment-item.payment-total .payment-value {
    font-size: 1.3rem;
  }
}
