/* New Arrivals Section Styles */
.new-arrivals {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 100px;
  overflow: visible;
}

.new-arrivals-header {
  text-align: center;
  margin-bottom: 50px;
}

.badge {
  display: inline-block;
  background: rgba(255, 163, 0, 0.15);
  color: #FFA300;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.new-arrivals-title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}

.new-arrivals-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999999;
}

.new-arrivals-swiper {
  position: relative;
  overflow: visible;
  margin-bottom: 30px;
  padding: 30px 20px;
}

.new-arrivals-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 20px 10px 0;
}

.new-arrivals-track::-webkit-scrollbar {
  display: none;
}

.new-product {
  flex: 0 0 calc(25% - 15px);
  min-width: 300px;
  scroll-snap-align: center;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.new-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border-color: #43BDAB;
}

.new-product-image {
  position: relative;
  width: 100%;
  height: 280px;
  background: #FFFFFF;
  overflow: hidden;
}

.new-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.new-product-info {
  padding: 20px;
}

.new-product-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #FFA300;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.new-product-title {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.new-product-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 15px;
  min-height: 40px;
}

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

.new-product-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.new-product-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #FFA300;
  transition: transform 0.3s ease;
}

.new-product:hover .new-product-cta {
  transform: translateX(5px);
}

/* Dots Indicator */
.new-arrivals-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.new-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 163, 0, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.new-dot:hover {
  background: rgba(255, 163, 0, 0.6);
  transform: scale(1.2);
}

.new-dot.active {
  background: #FFA300;
  width: 12px;
  height: 12px;
}

/* Navigation Arrows (Desktop only) */
.new-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.new-nav-arrow:hover {
  background: #FFA300;
  border-color: #FFA300;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 163, 0, 0.3);
}

.new-nav-arrow:hover svg {
  stroke: #FFFFFF;
}

.new-nav-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.new-nav-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #000000;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}

.new-nav-prev {
  left: -70px;
}

.new-nav-next {
  right: -70px;
}

/* Tablet */
@media (max-width: 1024px) {
  .new-arrivals {
    margin: 60px auto;
    padding: 0 30px;
  }

  .new-arrivals-title {
    font-size: 30px;
  }

  .new-product {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 250px;
  }

  .new-product-image {
    height: 240px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .new-arrivals {
    margin: 50px auto;
    padding: 0 20px;
  }

  .new-arrivals-header {
    margin-bottom: 35px;
  }

  .badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .new-arrivals-title {
    font-size: 24px;
  }

  .new-arrivals-subtitle {
    font-size: 14px;
  }

  .new-arrivals-track {
    gap: 15px;
    padding: 0;
  }

  .new-product {
    flex: 0 0 calc(100% - 40px);
    min-width: calc(100% - 40px);
    scroll-snap-align: center;
  }

  .new-product-image {
    height: 220px;
  }

  .new-product-info {
    padding: 18px;
  }

  .new-product-title {
    font-size: 16px;
  }

  .new-product-description {
    font-size: 12px;
    min-height: 36px;
  }

  .new-product-price {
    font-size: 15px;
  }

  .new-product-cta {
    font-size: 12px;
  }

  .new-nav-arrow {
    display: none;
  }

  .new-arrivals-dots {
    display: flex;
  }
}