/* =====================================================
   SAVARI SAREES - Hero Section CSS
   ===================================================== */

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  filter: brightness(0.95) contrast(1.1) saturate(1.05);
  transform: scale(1.08) translateY(45px);
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 8, 4, 0.25) 0%,
    rgba(15, 8, 4, 0.45) 50%,
    rgba(15, 8, 4, 0.6) 100%
  );
}

/* Grain Texture */
.hero-grain {
  display: none;
}

/* Gold Particles Canvas */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* =====================================================
   HERO CONTENT
   ===================================================== */

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--container-padding);
  z-index: 1;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #FFE082; /* Bright premium gold */
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9), 0 0 8px rgba(255, 224, 130, 0.3); /* Premium contrast outline and radiant gold glow */
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-xl);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-title .highlight {
  position: relative;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--white);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--white);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.2s;
}

.hero-scroll-text {
  font-family: var(--font-accent);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(10px);
    opacity: 0.3;
  }
}

/* =====================================================
   ANNOUNCEMENT BAR (TICKER)
   ===================================================== */

.announcement-bar {
  background: var(--maroon-deep);
  color: var(--white);
  padding: var(--space-sm) 0;
  overflow: hidden;
}

.announcement-ticker {
  display: flex;
  animation: tickerScroll 30s linear infinite;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 0 var(--space-2xl);
  white-space: nowrap;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary-gold);
}

/* =====================================================
   CATEGORIES SECTION
   ===================================================== */

.categories-section {
  padding: var(--space-4xl) 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.category-card {
  position: relative;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.category-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.1);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(44, 26, 14, 0.8) 0%,
    rgba(44, 26, 14, 0.2) 50%,
    transparent 100%
  );
  transition: background 0.3s ease;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(
    to top,
    rgba(44, 26, 14, 0.9) 0%,
    rgba(201, 151, 58, 0.3) 50%,
    transparent 100%
  );
}

.category-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.category-card:hover .category-card-content {
  transform: translateY(0);
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--white) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-card-text {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.category-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.category-card:hover .category-card-link {
  opacity: 1;
  transform: translateY(0);
}

.category-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.category-card-link:hover svg {
  transform: translateX(4px);
}

/* =====================================================
   FLASH SALE BANNER
   ===================================================== */

.flash-sale-banner {
  background: var(--maroon-deep);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.flash-sale-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9973A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.flash-sale-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.flash-sale-text {
  color: var(--white);
}

.flash-sale-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.flash-sale-title span {
  color: var(--primary-gold);
}

.flash-sale-subtitle {
  font-size: 1rem;
  opacity: 0.9;
}

.flash-sale-timer {
  display: flex;
  gap: var(--space-md);
}

.timer-block {
  text-align: center;
  background: rgba(201, 151, 58, 0.2);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  min-width: 80px;
}

.timer-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.timer-label {
  font-family: var(--font-accent);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  margin-top: var(--space-xs);
}

.timer-separator {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary-gold);
}

/* =====================================================
   STORY SECTION
   ===================================================== */

.story-section {
  padding: var(--space-4xl) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-image-badge {
  position: absolute;
  bottom: var(--space-xl);
  right: var(--space-xl);
  background: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.story-image-badge-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.story-image-badge-text {
  font-family: var(--font-accent);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-walnut);
}

.story-content {
  padding: var(--space-xl) 0;
}

.story-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: var(--space-md);
}

.story-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  line-height: 1.2;
}

.story-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-walnut);
  opacity: 0.85;
  margin-bottom: var(--space-xl);
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-gold);
}

.story-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.story-link:hover svg {
  transform: translateX(5px);
}

/* =====================================================
   INSTAGRAM FEED
   ===================================================== */

.instagram-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-cream);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 26, 14, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  color: var(--text-walnut);
}

.instagram-header svg {
  width: 24px;
  height: 24px;
}

.instagram-link {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instagram-link:hover {
  color: var(--primary-gold);
}

/* =====================================================
   NEWSLETTER SECTION
   ===================================================== */

.newsletter-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--rose-light) 100%);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-full);
  color: var(--primary-gold);
}

.newsletter-icon svg {
  width: 30px;
  height: 30px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.newsletter-text {
  font-size: 1rem;
  color: var(--text-walnut);
  opacity: 0.8;
  margin-bottom: var(--space-xl);
}

.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: 2px solid var(--border-sand);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.newsletter-button {
  padding: 1rem 2rem;
  background: var(--primary-gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-button:hover {
  background: #B8872E;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: var(--text-walnut);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-2xl); /* Increased spacing */
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--space-lg); /* Increased spacing below logo */
  display: inline-block;
}

.footer-logo-img {
  height: 90px; /* Increased size from 70px to 90px */
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: 0;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1); /* High-contrast crisp white version of logo on dark background */
  opacity: 0.95;
}
.footer-logo:hover .footer-logo-img {
  transform: scale(1.05);
}

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover {
  background: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-column {
  margin-top: 2.5rem; /* Push down to align beautifully and avoid touching the top edge */
}

.footer-column h4 {
  font-family: var(--font-accent);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-xl);
  color: rgba(201, 151, 58, 0.6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.8125rem;
  opacity: 0.6;
}

.footer-payment {
  display: flex;
  gap: var(--space-md);
}

.footer-payment svg {
  width: 40px;
  height: 25px;
  opacity: 0.6;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid .category-card:last-child {
    grid-column: span 2;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .story-image {
    order: 1;
  }

  .story-content {
    order: 2;
    text-align: center;
    padding: 0 var(--space-xl);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 600px;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid .category-card:last-child {
    grid-column: span 1;
  }

  .category-card {
    height: 350px;
  }

  .flash-sale-content {
    flex-direction: column;
    text-align: center;
  }

  .flash-sale-timer {
    justify-content: center;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .whatsapp-float {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .timer-block {
    padding: var(--space-sm) var(--space-md);
    min-width: 60px;
  }

  .timer-number {
    font-size: 1.75rem;
  }
}

/* =====================================================
   SAREE SHOWCASE CAROUSEL
   ===================================================== */
.saree-carousel-section {
  position: relative;
  overflow: hidden;
}

.saree-carousel-container {
  position: relative;
  width: 100%;
  padding: 0 var(--space-xl);
}

.saree-carousel-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Saree carousel card styling */
.saree-carousel-card {
  flex: 0 0 calc((100% - (3 * var(--space-lg))) / 4);
  min-width: 250px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid var(--border-neutral);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.saree-carousel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 26, 14, 0.08);
}

.saree-carousel-card-img {
  width: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.saree-carousel-card:hover .saree-carousel-card-img {
  transform: scale(1.05);
}

.saree-carousel-card-content {
  padding: var(--space-md);
  text-align: center;
}

.saree-carousel-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-gold);
  margin-bottom: var(--space-xs);
  display: block;
}

.saree-carousel-card-title {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-walnut);
  margin-bottom: var(--space-sm);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.saree-carousel-card-price {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-walnut);
  margin-bottom: var(--space-md);
}

.saree-carousel-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-cream);
  color: var(--text-walnut);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.saree-carousel-card-btn:hover {
  background: var(--text-walnut);
  color: var(--white);
  border-color: var(--text-walnut);
}

/* Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-neutral);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-walnut);
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  background: var(--text-walnut);
  color: var(--white);
  border-color: var(--text-walnut);
}

.carousel-control.prev {
  left: -10px;
}

.carousel-control.next {
  right: -10px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-xl);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-neutral);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 20px;
  border-radius: 4px;
  background: var(--primary-gold);
}

@media (max-width: 1024px) {
  .saree-carousel-card {
    flex: 0 0 calc((100% - (2 * var(--space-lg))) / 3);
  }
}

@media (max-width: 768px) {
  .saree-carousel-card {
    flex: 0 0 calc((100% - var(--space-lg)) / 2);
  }
  .carousel-control {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .saree-carousel-card {
    flex: 0 0 100%;
  }
}