/* New Arrivals Section */
.new-arrivals-section {
  padding: 80px 0;
  background: #fff;
}

.new-arrivals-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-arrivals-title {
  color: #000;
  font-family: "KyivType";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
}

.new-arrivals-view-all-btn {
  padding: 16px 72px;
  border: 1px solid #000;
  transition: all 0.3s ease;
  color: #000;
  text-align: center;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.new-arrivals-view-all-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/* Carousel Container */
.new-arrivals-carousel {
  position: relative;
  overflow: hidden;
}

.new-arrivals-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  align-items: stretch;
}

.new-arrivals-slide {
  flex: 0 0 calc(33.333% - 27px);
  min-width: 0;
  margin-left: 10px;
  display: flex;
}

@media(max-width: 768px) {
  .new-arrivals-slide {
    margin-left: 0px;
  }

  .new-arrivals-track {
    gap: 0px !important;
  }
}

/* Product Card */
.new-arrivals-section .product-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px #0000000d;
  margin-top: 60px;
  transition: box-shadow 0.3s ease;
  flex: 1;
  min-height: 0;
}

.product-card:hover {
  box-shadow: 0px 0px 10px #00000036;
  transition: box-shadow 0.3s ease;
}

.new-arrivals-section .product-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  object-fit: cover;
}

.new-arrivals-section .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.new-arrivals-section .product-card:hover .product-image img {
  transform: scale(1.05);
}

.new-arrivals-section .product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.new-arrivals-section .product-name {
  color: #000;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  margin-bottom: 23px;
}

.spec-item {
  display: flex;
  align-items: center;
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.spec-icon {
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.spec-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #666;
}

.spec-text {
  flex: 1;
}

.new-arrivals-section .product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 33px;
  margin-bottom: 40px;
}

.new-arrivals-section .product-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.new-arrivals-section .price-regular,
.new-arrivals-section .price-special {
  color: #000;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.new-arrivals-section .price-old {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-decoration: line-through;
}

.new-arrivals-section .product-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
  margin-top: auto;
}

.new-arrivals-section .product-details-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/* Navigation */
.new-arrivals-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.new-arrivals-prev,
.new-arrivals-next {
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.new-arrivals-dots {
  display: flex;
  gap: 20px;
}

.new-arrivals-dot {
  width: 14px;
  height: 14px;
  border: none;
  background: rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: all 0.3s ease;
}

.new-arrivals-dot.active {
  background: #000;
}

.new-arrivals-dot:hover {
  background: rgba(0, 0, 0, 0.10);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .new-arrivals-slide {
    flex: 0 0 calc(50% - 28px);
  }
  
  .new-arrivals-title {
    font-size: 40px;
  }

  .new-arrivals-view-all-btn {
    font-size: 16px;
  }

  .new-arrivals-section .product-name {
    font-size: 24px;
  }

  .new-arrivals-section .product-price {
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .new-arrivals-section .price-regular, .new-arrivals-section .price-special {
    color: #000;
    font-family: Gilroy;
    font-size: 22px;
  }
}

@media (max-width: 992px) {

  .new-arrivals-view-all-btn {
    display: none;
  }

  .new-arrivals-navigation {
    justify-content: space-between;
  }

  .new-arrivals-section {
    padding: 60px 0;
  }
  
  .new-arrivals-title {
    font-size: 36px;
  }
  
  .new-arrivals-slide {
    flex: 0 0 calc(50% - 15px);
  }
  
  .product-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .new-arrivals-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .new-arrivals-title {
    font-size: 28px;
  }
  
  .new-arrivals-slide {
    flex: 0 0 100%;
  }
  
  .new-arrivals-track {
    gap: 20px;
  }
  
  .new-arrivals-section .product-image {
    height: 220px;
  }
  
  .new-arrivals-section .product-info {
    padding: 20px;
  }
  
  .new-arrivals-view-all-btn {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .new-arrivals-section {
    padding: 40px 0;
  }
  
  .new-arrivals-title {
    font-size: 24px;
  }
}
