
.cosmetics-slider {
  position: relative;
  height: 80vh;

  overflow: hidden;
}

.cosmetics-swiper {
  width: 100%;
  height: 130%;
}

.slider-content {
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.slider-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slider-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-slider {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  color: #ffff;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-slider:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px #f6d6a6;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.3);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #d4a373;
}

@media (max-width: 768px) {
  .cosmetics-slider {
    height: 60vh;
  }

  .slider-title {
    font-size: 2rem;
  }

  .slider-description {
    font-size: 1rem;
  }
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.product-badge .badge {
  margin-right: 5px;
  font-size: 12px;
  font-weight: 500;
}

.product-image {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 130%;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-image:hover img {
  transform: scale(1.05);
}

.quick-view {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 8px;
  transition: all 0.3s ease;
  opacity: 0;
}

.product-image:hover .quick-view {
  bottom: 0;
  opacity: 1;
}

.product-body {
  padding: 15px;
  flex-grow: 1;
}

.product-title a {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 48px;
  text-decoration: none;
}

.product-title a:hover {
  color: var(--primary-color);
}

.product-price {
  margin: 10px 0;
}

.current-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--danger-color);
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
}

.product-footer {
  padding: 10px 15px;
  border-top: 1px solid #eee;
  background: #f9f9f9;
}

.sold-count {
  font-size: 13px;
  color: #666;
}

.view-all-btn {
  border-radius: 30px;
  padding: 5px 15px;
}

/* تخصيصات إضافية للسليدر */
.testimonialsSlider {
  padding: 20px 0;
}

.testimonial-card {
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.swiper-pagination-bullet-active {
  background: #ff9e15 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ff9e15 !important;
}
