/* ============================================
   INDEX/HOME PAGE SPECIFIC STYLES
   ============================================ */

.index-slider-section {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  background: var(--bs-danger);
}

.newestgems {
  font-family: Anta, sans-serif;
  background: linear-gradient(var(--ref-secondary-bg), var(--bs-primary) 87%);
}

/* Newsletter Section */

.index-newsletter {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem auto;
  color: white;
}

.index-newsletter h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.index-newsletter p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem;
  border-radius: 50px;
}

.newsletter-input {
  flex: 1;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 50px;
  outline: none;
}

.newsletter-btn {
  padding: 0.75rem 2rem;
  background: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: var(--bs-primary-dark);
  transform: scale(1.05);
}

/* Swiper/Carousel */

.swiper-container {
  width: 90%;
  height: 90%;
  border-radius: 20px;
  max-width: 600px;
  max-height: 600px;
}

.swiper-pagination {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  opacity: 0.2;
}

/* Main Banner */

#mainbanner {
  display: block;
  transition: opacity 5s ease-in-out;
}

@media (max-width: 768px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .newsletter-input, .newsletter-btn {
    border-radius: 10px;
  }
}

