.hero {
  position: relative;
  background-color: var(--color-bg);
}

.hero-slider {
  width: 100%;
  max-width: 1400px;
  height: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  
  box-shadow: none;
  
}

@media (min-width: 1400px) {
  .hero {
    padding: 0;
  }

  .hero-slider {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(45, 42, 51, 0.4) 0%,
      rgba(30, 28, 36, 0.8) 100%),
    radial-gradient(circle at 50% 40%,
      rgba(45, 42, 51, 0.1) 0%,
      rgba(30, 28, 36, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  height: 100%;
  padding-top: 0;
}

.hero-inner {
  max-width: 700px;
  color: #fff;
  text-align: left;
  
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-primary-lighter);
  margin-bottom: var(--space-4);
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--color-primary-lighter);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-5);
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-primary-lighter);
}

.hero-description {
  font-size: var(--text-base);
  
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-6);
  max-width: 580px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}

.hero .btn {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-sm);
}

.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.hero-nav {
  position: absolute;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: 10;
  display: flex;
  gap: var(--space-4);
}

.hero-nav-item {
  width: 140px;
  height: 90px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  opacity: 0.5;
  background: var(--color-primary-dark);
}

.hero-nav-item:hover {
  opacity: 0.8;
}

.hero-nav-item.active {
  border-color: var(--color-primary-light);
  opacity: 1;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.hero-nav-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav-item-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
  padding: var(--space-3);
  display: flex;
  align-items: flex-end;
}

.hero-nav-item-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}

.hero-dots {
  display: none;
}

.hero-dot {
  width: 24px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.hero-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full, 999px);
  background-color: rgba(255, 255, 255, 0.45);
  transition: background-color var(--transition-base), width var(--transition-base);
}

.hero-dot.active::before {
  width: 26px;
  background-color: #fff;
}

.hero-social,
.hero-scroll {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero-nav {
    display: none;
    
  }

  .hero-social {
    display: none;
  }

  
  .hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-5);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}

@media (max-width: 768px) {
  
  .hero {
    padding: var(--space-3);
  }

  .hero-slider {
    height: 220px;
    border-radius: var(--radius-lg);
  }

  
  .hero-slide-bg img,
  .hero-slide.active .hero-slide-bg img {
    transform: none;
    transition: none;
  }

  .hero-content {
    justify-content: center;
    padding: 0 var(--space-5);
  }

  
  .featured-products {
    padding-top: var(--space-8);
  }

  .hero-inner {
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  
  .hero-label {
    display: inline-flex;
    font-size: 0.625rem;
    margin-bottom: var(--space-2);
  }

  .hero-label::before {
    width: 24px;
  }

  
  .hero-slide[data-href] {
    cursor: pointer;
  }

  .hero-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
  }

  .hero-description {
    font-size: var(--text-xs);
    line-height: var(--leading-normal);
    margin-bottom: 0;
    
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  
  .hero-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 240px;
  }

  .hero-content {
    padding: 0 var(--space-4);
  }

  .hero-title {
    font-size: var(--text-lg);
  }
}