/* Hero2 Section */
.hero2 {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #fef5f0 0%, #fff8f3 100%);
  overflow: visible;
}

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

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

/* Left Content */
.hero2-left {
  position: relative;
  z-index: 2;
}

.hero2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe8dc;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 24px;
}

.hero2-badge-dot {
  font-size: 18px;
}

.hero2-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero2-highlight {
  color: #ff6b35;
  position: relative;
  display: inline-block;
}

.hero2-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero2-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-accent {
  background: #ff6b35;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #333;
  border: 2px solid #e0e0e0;
}

.btn-ghost:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* Top Products */
.hero2-top {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero2-top-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.hero2-top-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.hero2-top-thumb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero2-top-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero2-top-fallback {
  font-size: 16px;
}

.hero2-top-empty {
  padding: 16px 20px;
  background: #fff3e0;
  border-radius: 12px;
  color: #ff6b35;
  font-size: 13px;
  line-height: 1.5;
}

/* Right Card - FIXED */
.hero2-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero2-card {
  position: relative;
  background: #2d2d2d;
  border-radius: 32px;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero2-image {
  position: relative;
  width: 120%;
  max-width: 420px;
  aspect-ratio: 1;
  margin-top: -100px;
  margin-bottom: 20px;
  z-index: 2;
}

.hero2-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg); 
  }
  50% { 
    transform: translateY(-15px) rotate(-2deg); 
  }
}

.hero2-image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3a3a3a;
  border-radius: 20px;
  color: #888;
  font-size: 16px;
}

/* Navigation Buttons */
.hero2-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  line-height: 1;
  padding: 0;
}

.nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.nav-btn-accent {
  background: #ff6b35;
  color: #fff;
}

.nav-btn-accent:hover {
  background: #ff5722;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .hero2-wrap {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero2-title {
    font-size: 42px;
  }

  .hero2-right {
    order: -1;
  }

  .hero2-image {
    margin-top: -80px;
  }
}

@media (max-width: 640px) {
  .hero2 {
    padding: 60px 0 100px;
  }

  .hero2-title {
    font-size: 36px;
  }

  .hero2-desc {
    font-size: 15px;
  }

  .hero2-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero2-card {
    padding: 30px 24px;
  }

  .hero2-image {
    width: 110%;
    margin-top: -60px;
  }

  .nav-btn {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .hero2-top-item {
    font-size: 13px;
  }
}