/* Promotional Offers Section */
.promotional-section {
  padding: 80px 0;
  padding-bottom: 0px;
  background: #fff;
}

.promotional-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promotional-title {
  color: #000;
  font-family: "KyivType";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
}

.promotional-view-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 72px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 0;
}

.promotional-view-all-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/* Carousel Container */
.promotional-carousel {
  position: relative;
  overflow: hidden;
}

/* Empty State */
.promotional-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.promotional-empty p {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  margin: 0;
}

.promotional-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
  align-items: stretch;
}

.promotional-slide {
  flex: 0 0 calc(33.333% - 27px);
  min-width: 0;
  display: flex;
  margin-left: 10px;
}

/* Promotional Product Card */
.promo-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;
}

.promo-product-card:hover {
  box-shadow: 0px 0px 10px #00000036;
  transition: box-shadow 0.3s ease;
}

.promo-product-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.promo-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-product-card:hover .promo-product-image img {
  transform: scale(1.05);
}

/* Promotional Banner */
.promo-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #D82C2C;
  color: #fff;
  padding: 8px 17px;
  text-align: left;
  z-index: 2;
}

.promo-banner-text {
  color: #FFF;
  font-family: Gilroy;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.promo-product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-product-name {
  color: #000;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
}

.promo-product-specs {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.promo-spec-item {
  display: flex;
  align-items: center;
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.promo-spec-icon {
  margin-right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-spec-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #666;
  display: block;
}

.promo-spec-text {
  flex: 1;
  color: #000;
  font-family: Gilroy;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Promotional Pricing */
.promo-product-price {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.promo-price-old {
  color: rgba(0, 0, 0, 0.40);
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: line-through;
}

.promo-price-special {
  color: #000;
  font-family: Gilroy;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.promo-product-details-btn {
  color: #000;
  text-align: center;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  border-radius: 0;
  margin-top: auto;
}

.promo-product-details-btn:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

/* Navigation */
.promotional-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.promotional-prev,
.promotional-next {
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.promotional-dots {
  display: flex;
  gap: 8px;
}

.promotional-dot {
  width: 14px;
  height: 14px;
  border: none;
  background: rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: all 0.3s ease;
}

.promotional-dot.active {
  background: #000;
}

.promotional-dot:hover {
  background: rgba(0, 0, 0, 0.10);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .promotional-slide {
    flex: 0 0 calc(50% - 28px);
}

  .promotional-title {
    font-size: 40px;
  }

  .promo-product-name {
    font-size: 24px;
  }

  .promo-price-special {
    font-size: 22px;
  }

  .promo-product-details-btn {
    font-size: 16px;
  }

  .promo-product-specs {
    margin-top: 15px;
    margin-bottom: 25px;
  }

  .promo-spec-item {
    font-size: 16px;
  }
}

@media (max-width: 992px) {

  .promotional-view-all-btn {
    display: none;
  }

  .promotional-navigation {
    justify-content: space-between;
  }

  .promotional-dots {
    gap: 20px;
  }

  .promotional-section {
    padding: 60px 0;
  }
  
  .promotional-title {
    font-size: 36px;
  }
  
  .promotional-slide {
    flex: 0 0 calc(50% - 15px);
  }
  
  .promo-product-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .promotional-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .promotional-title {
    font-size: 28px;
  }
  
  .promotional-slide {
    flex: 0 0 100%;
    margin-left: 0px;
  }
  
  .promotional-track {
    gap: 20px;
  }
  
  .promo-product-image {
    height: 220px;
  }
  
  .promo-product-info {
    padding: 20px;
  }
  
  .promotional-view-all-btn {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .promotional-section {
    padding: 40px 0;
  }
  
  .promotional-title {
    font-size: 24px;
  }
  
  .promo-product-name {
    font-size: 16px;
  }
  
  .promo-price-special {
    font-size: 18px;
  }
  
  .promo-product-details-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .promo-banner-text {
    font-size: 12px;
  }
}
