@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
  font-family: 'Cairo', sans-serif;
}

.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.countdown-box {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.gradient-text {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
  .floating {
    animation: none; /* Disable animations on mobile for better performance */
  }

  .countdown-box {
    margin: 0 1rem;
  }

  .decorative-elements {
    display: none; /* Hide decorative elements on mobile */
  }

  .hero-title {
    font-size: 1.75rem !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem !important;
  }

  .countdown-grid {
    gap: 0.5rem !important;
  }

  .countdown-item {
    min-width: 50px !important;
    padding: 0.5rem !important;
  }

  .countdown-number {
    font-size: 1.25rem !important;
  }

  .countdown-label {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem !important;
  }

  .section-title {
    font-size: 1.5rem !important;
  }

  .offer-title {
    font-size: 1.75rem !important;
  }

  .offer-subtitle {
    font-size: 1rem !important;
  }
}
.testimonial-swiper {
  padding: 40px 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ec4899;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: #ec4899;
  opacity: 0.3;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
}

.swiper-slide img {
  transition: transform 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.02);
}

  .products-swiper {
    padding: 40px 0;
  }

  .products-swiper .swiper-slide {
    height: auto;
  }

  .products-next,
  .products-prev {
    color: #ec4899;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .products-next:hover,
  .products-prev:hover {
    background: white;
    transform: scale(1.1);
  }

  .products-pagination .swiper-pagination-bullet {
    background: #ec4899;
    opacity: 0.3;
    width: 12px;
    height: 12px;
  }

  .products-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
  }
