/* Enhanced Modern Home Page Styles */

/* ============================================
   ENHANCED HERO SLIDER
   ============================================ */
.enhanced-hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  margin-bottom: 4rem;
}

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

.hero-slide-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

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

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero-slide-item.active .hero-slide-bg img {
  transform: scale(1.1);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 95, 31, 0.3) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-main-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-primary-btn:hover::before {
  left: 100%;
}

.hero-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 95, 31, 0.6);
  background: linear-gradient(135deg, #FF7F50, #FFAA33);
}

.hero-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-3px);
}

.hero-nav-enhanced {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #FF5F1F;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-nav-enhanced:hover {
  background: #FF5F1F;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 95, 31, 0.4);
}

.hero-prev-enhanced {
  left: 25px;
}

.hero-next-enhanced {
  right: 25px;
}

.hero-indicators {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.hero-indicator.active {
  background: white;
  width: 35px;
  border-radius: 6px;
  border-color: #FF5F1F;
}

/* ============================================
   ENHANCED FEATURES SECTION
   ============================================ */
.enhanced-features-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.features-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-enhanced {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 1px solid rgba(255, 95, 31, 0.1);
}

.feature-card-enhanced:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 95, 31, 0.2);
  border-color: rgba(255, 95, 31, 0.3);
}

.feature-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 95, 31, 0.05), rgba(255, 170, 51, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-enhanced:hover .feature-hover-effect {
  opacity: 1;
}

.feature-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.feature-icon-bg {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 95, 31, 0.3);
}

.feature-card-enhanced:hover .feature-icon-bg {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(255, 95, 31, 0.4);
}

.feature-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.feature-text {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   ENHANCED SECTION HEADERS
   ============================================ */
.section-header-enhanced {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-wrapper {
  display: inline-block;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title-main {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title-main::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  border-radius: 3px;
}

.section-subtitle-main {
  font-size: 1.2rem;
  color: #666;
  margin-top: 2rem;
  font-weight: 400;
}

/* ============================================
   ENHANCED CATEGORIES SECTION
   ============================================ */
.enhanced-categories-section {
  padding: 6rem 0;
  background: white;
}

.categories-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category-card-enhanced {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}

.category-card-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(255, 95, 31, 0.25);
  border-color: rgba(255, 95, 31, 0.3);
}

.category-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.category-overlay-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: opacity 0.3s ease;
}

.category-badge-enhanced {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.4);
  transition: all 0.3s ease;
}

.category-card-enhanced:hover .category-badge-enhanced {
  transform: scale(1.15) rotate(10deg);
}

.category-info {
  padding: 2rem;
  text-align: center;
  background: white;
}

.category-name-enhanced {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
  transition: color 0.3s ease;
}

.category-card-enhanced:hover .category-name-enhanced {
  color: #FF5F1F;
}

.category-link-enhanced {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.3);
}

.category-link-enhanced:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.4);
  background: linear-gradient(135deg, #FF7F50, #FFAA33);
  color: white;
}

.category-link-enhanced i {
  transition: transform 0.3s ease;
}

.category-link-enhanced:hover i {
  transform: translateX(3px);
}

/* ============================================
   ENHANCED PRODUCTS SECTION
   ============================================ */
.enhanced-products-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.products-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card-enhanced {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 95, 31, 0.1);
}

.product-card-enhanced:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(255, 95, 31, 0.25);
  border-color: rgba(255, 95, 31, 0.3);
}

.product-badge-enhanced {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.4);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-image-container-enhanced {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
}

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

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

.product-actions-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-enhanced:hover .product-actions-overlay {
  opacity: 1;
}

.action-btn-quick-view,
.action-btn-wishlist {
  width: 50px;
  height: 50px;
  background: white;
  border: none;
  border-radius: 50%;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-btn-quick-view:hover,
.action-btn-wishlist:hover {
  background: #FF5F1F;
  color: white;
  transform: scale(1.15);
}

.product-details-enhanced {
  padding: 2rem;
}

.product-name-link {
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}

.product-name-enhanced {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.product-name-link:hover .product-name-enhanced {
  color: #FF5F1F;
}

.product-meta-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-sku-enhanced {
  font-size: 0.85rem;
  color: #999;
}

.product-rating-enhanced {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars-enhanced {
  color: #ffc107;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rating-value {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

.product-price-section {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-currency {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

.price-value-enhanced {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FF5F1F;
}

.btn-add-to-cart-enhanced {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.3);
}

.btn-add-to-cart-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 95, 31, 0.4);
  background: linear-gradient(135deg, #FF7F50, #FFAA33);
  color: white;
}

/* ============================================
   ENHANCED VIDEO SECTION
   ============================================ */
.enhanced-video-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.video-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 8px 25px rgba(255, 95, 31, 0.3);
  animation: pulse 2s infinite;
}

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

.video-title-enhanced {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.video-description-enhanced {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.video-frame-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.video-frame-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-frame-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.video-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   ENHANCED ABOUT SECTION
   ============================================ */
.enhanced-about-section {
  padding: 6rem 0;
  background: white;
}

.about-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.about-header-section {
  text-align: center;
  margin-bottom: 3rem;
}

.about-label {
  display: inline-block;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.about-title-enhanced {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  border-radius: 3px;
  margin: 0 auto;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.about-text-content {
  text-align: center;
}

.about-description-enhanced {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.9;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

.stats-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card-enhanced {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(255, 95, 31, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-card-enhanced:hover::before {
  transform: scaleX(1);
}

.stat-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 95, 31, 0.2);
  border-color: rgba(255, 95, 31, 0.3);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.3);
  transition: all 0.3s ease;
}

.stat-card-enhanced:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FF5F1F, #FFAA33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ENHANCED RECOMMENDATIONS SECTION
   ============================================ */
.recommendations-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #eef2ff 0%, #f8f9ff 100%);
}

.recommendations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: white;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.recommendations-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.recommendations-text {
  flex: 1;
  min-width: 240px;
}

.recommendations-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.recommendations-subtitle {
  font-size: 1.05rem;
  color: #666;
  margin: 0;
}

.recommendations-actions {
  display: flex;
  align-items: center;
}

.recommendations-refresh {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.recommendations-refresh:hover {
  transform: rotate(180deg);
}

.recommendations-scroll-wrapper {
  margin-top: 2.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.recommendations-scroll {
  display: flex;
  gap: 1.5rem;
  min-width: 100%;
  padding-bottom: 0.5rem;
}

.recommendations-scroll::-webkit-scrollbar {
  height: 8px;
}

.recommendations-scroll::-webkit-scrollbar-track {
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
}

.recommendations-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
}

.recommendation-card {
  min-width: 280px;
  max-width: 300px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  overflow: hidden;
  border: 1px solid rgba(102, 126, 234, 0.1);
  scroll-snap-align: start;
  transition: all 0.3s ease;
  position: relative;
}

.recommendation-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.2);
}

.recommendation-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f5f7ff;
}

.recommendation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recommendation-card:hover .recommendation-image img {
  transform: scale(1.08);
}

.recommendation-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.recommendation-body {
  padding: 1.75rem 1.5rem 1.5rem;
}

.recommendation-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
  line-height: 1.4;
}

.recommendation-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
}

.recommendation-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 1.5rem;
}

.recommendation-actions {
  display: flex;
  gap: 0.75rem;
}

.recommendation-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  color: #667eea;
  border: 2px solid rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.recommendation-link:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: rgba(102, 126, 234, 0.6);
  color: #4c5bd4;
}

.recommendation-cart {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.recommendation-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
}

.recommendation-placeholder {
  min-width: 280px;
  max-width: 300px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #4c5bd4;
  border: 1px dashed rgba(102, 126, 234, 0.3);
}

.recommendation-placeholder p {
  margin-top: 1rem;
  margin-bottom: 0;
  font-weight: 600;
}

.recommendations-user {
  margin-left: auto;
  text-align: right;
  font-size: 0.9rem;
  color: #6c757d;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recommendations-user-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  color: #94a3b8;
}

.recommendations-user strong {
  color: #111827;
}

.recommendations-user-meta {
  font-size: 0.85rem;
  color: #495057;
}

@media (max-width: 991.98px) {
  .recommendations-section {
    padding: 4rem 0;
  }

  .recommendations-title {
    font-size: 1.75rem;
  }

  .recommendations-subtitle {
    font-size: 1rem;
  }

  .recommendations-scroll {
    gap: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .recommendations-header {
    padding: 1.25rem 1.5rem;
  }

  .recommendations-title {
    font-size: 1.5rem;
  }

  .recommendations-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .recommendation-card {
    min-width: 240px;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991.98px) {
  .enhanced-hero-slider {
    height: 500px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.2rem;
  }

  .section-title-main {
    font-size: 2.25rem;
  }

  .categories-grid-enhanced,
  .products-grid-enhanced {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .features-grid-enhanced {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .enhanced-hero-slider {
    height: 400px;
    border-radius: 12px;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-nav-enhanced {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .hero-prev-enhanced {
    left: 10px;
  }

  .hero-next-enhanced {
    right: 10px;
  }

  .section-title-main {
    font-size: 1.75rem;
  }

  .section-subtitle-main {
    font-size: 1rem;
  }

  .categories-grid-enhanced,
  .products-grid-enhanced {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .features-grid-enhanced {
    grid-template-columns: 1fr;
  }

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

  .video-title-enhanced {
    font-size: 2rem;
  }

  .about-title-enhanced {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .enhanced-hero-slider {
    height: 350px;
  }

  .hero-main-title {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-primary-btn,
  .hero-secondary-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

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

/* Legacy Support - Keep old classes working */
.modern-hero-slider,
.hero-slides,
.hero-slide,
.hero-content,
.hero-title,
.hero-subtitle,
.hero-btn,
.hero-nav-btn,
.hero-dots,
.hero-dot,
.features-section,
.features-grid,
.feature-item,
.feature-icon,
.section-header,
.section-title,
.section-subtitle,
.categories-section,
.categories-grid,
.modern-category-card,
.products-section,
.products-grid,
.modern-product-card,
.video-section,
.about-section {
  /* Legacy styles maintained for backward compatibility */
}
