/* ==========================================================================
   AGGARWAL JEWELLERS — HOMEPAGE SPECIFIC STYLES
   Styles covering all 32 Luxury Homepage Sections
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section 1: Hero Slider
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background: var(--deep-wine);
  min-height: 520px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 540px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 10px 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 6, 11, 0.88) 0%, rgba(67, 6, 11, 0.65) 45%, rgba(67, 6, 11, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 660px;
  color: #fff;
  padding-left: 20px;
  margin-top: -12px;
}

.hero-subtitle-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 12px;
  font-weight: var(--fw-semibold);
  background: rgba(67, 6, 11, 0.4);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(212, 160, 23, 0.35);
}

.hero-subtitle-tag .tag-badge {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.2vw, 3.6rem);
  color: #fff;
  line-height: 1.14;
  margin-bottom: 12px;
  font-weight: var(--fw-bold);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-title span {
  color: var(--light-gold);
}

.hero-desc {
  font-size: 1.02rem;
  color: var(--champagne);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 580px;
}

/* Hero Trust Pills */
.hero-usps {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-usp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 6, 11, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 160, 23, 0.35);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  color: var(--champagne);
  font-weight: var(--fw-medium);
}

.hero-usp-item i {
  color: var(--light-gold);
  font-size: 0.85rem;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-glow {
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero-glow:hover {
  box-shadow: 0 6px 28px rgba(212, 160, 23, 0.65);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Right Side Spotlight Mini Auto-Slide Product Box
   -------------------------------------------------------------------------- */
.hero-spotlight-dock {
  position: absolute;
  top: 45%;
  right: max(55px, calc((100vw - 1280px) / 2 + 75px));
  transform: translateY(-50%);
  z-index: 12;
  width: 380px;
  max-width: calc(100vw - 48px);
}

.spotlight-box {
  background: linear-gradient(155deg, rgba(67, 6, 11, 0.94) 0%, rgba(37, 21, 18, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(212, 160, 23, 0.5);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 24px rgba(212, 160, 23, 0.2);
  padding: 18px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.spotlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244, 201, 93, 0.2);
}

.spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-gold);
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.spotlight-nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-nav-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.spotlight-nav-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
}

.spotlight-counter {
  font-size: 0.75rem;
  color: var(--champagne);
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}

/* Auto-sliding Track */
.spotlight-track-wrapper {
  position: relative;
  min-height: 145px;
  overflow: hidden;
}

.spotlight-track {
  position: relative;
  width: 100%;
}

.spotlight-item {
  display: none;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-item.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

.spotlight-thumb-wrap {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(212, 160, 23, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.spotlight-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spotlight-thumb-wrap:hover .spotlight-thumb {
  transform: scale(1.1);
}

.spotlight-tag-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(67, 6, 11, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--light-gold);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.spotlight-quick-btn {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  opacity: 0;
  transition: all 0.25s ease;
}

.spotlight-thumb-wrap:hover .spotlight-quick-btn {
  opacity: 1;
}

.spotlight-quick-btn:hover {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
}

.spotlight-details {
  flex: 1;
  min-width: 0;
}

.spotlight-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--light-gold);
  font-size: 0.68rem;
  margin-bottom: 4px;
}

.spotlight-stars span {
  color: var(--champagne);
  margin-left: 4px;
  font-size: 0.72rem;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.spotlight-title a:hover {
  color: var(--light-gold);
}

.spotlight-specs {
  font-size: 0.74rem;
  color: var(--champagne);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.spotlight-specs i {
  color: var(--light-gold);
}

.spotlight-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.spotlight-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-gold);
}

.spotlight-old-price {
  font-size: 0.8rem;
  color: #a89490;
  text-decoration: line-through;
}

.spotlight-save-badge {
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--light-gold);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.spotlight-add-btn {
  font-size: 0.75rem !important;
  padding: 6px 14px !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Dots Indicator at bottom */
.spotlight-progress-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-dot {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.spotlight-dot.active {
  width: 32px;
  background: var(--gold-gradient);
}

/* Hero Controls */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid var(--border-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: var(--transition-fast);
}

.hero-prev:hover, .hero-next:hover {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.hero-dot.active {
  background: var(--premium-gold);
  width: 32px;
  border-radius: 6px;
}

/* --------------------------------------------------------------------------
   Section 2: Shop By Category (Circular Luxury Cards)
   -------------------------------------------------------------------------- */
.category-circle-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.category-circle-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  group: true;
}

.category-circle-img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 5px;
  border: 2px solid var(--border-gold);
  position: relative;
  margin-bottom: 12px;
  transition: var(--transition-base);
  background: #fff;
}

.category-circle-card:hover .category-circle-img-wrap {
  border-color: var(--primary-burgundy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.category-circle-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-circle-card:hover .category-circle-img {
  transform: scale(1.06);
}

.category-circle-name {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: var(--dark-text);
  font-weight: var(--fw-semibold);
  transition: color 0.2s ease;
}

.category-circle-card:hover .category-circle-name {
  color: var(--primary-burgundy);
}

/* --------------------------------------------------------------------------
   Section 3: Trust Strip
   -------------------------------------------------------------------------- */
.trust-strip-section {
  background: var(--cream);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-gold);
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.trust-strip-info h4 {
  font-size: 0.95rem;
  color: var(--primary-burgundy);
  font-family: var(--font-accent);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.trust-strip-info p {
  font-size: 0.78rem;
  margin-bottom: 0;
  color: var(--secondary-text);
}

/* --------------------------------------------------------------------------
   Product Grids & Carousels (Sections 4, 6, 10, 11, etc.)
   -------------------------------------------------------------------------- */
.product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* --------------------------------------------------------------------------
   Section 5: Bridal Showcase ("The Bridal Edit")
   -------------------------------------------------------------------------- */
.bridal-showcase-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1535632066927-ab7c9ab60908?w=1600&auto=format&fit=crop&q=80') center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.bridal-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(67, 6, 11, 0.92) 0%, rgba(67, 6, 11, 0.75) 50%, rgba(67, 6, 11, 0.25) 100%);
}

.bridal-showcase-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  padding: 40px 0;
}

.bridal-showcase-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: #fff;
  margin-bottom: 16px;
}

.bridal-showcase-content p {
  font-size: 1.15rem;
  color: var(--champagne);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Section 9: Shop By Occasion
   -------------------------------------------------------------------------- */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.occasion-card {
  position: relative;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.occasion-card:hover img {
  transform: scale(1.08);
}

.occasion-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(37, 21, 18, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.occasion-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--light-gold);
  margin-bottom: 4px;
}

.occasion-link {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------------------------------
   Section 12: Jewellery Under Budget
   -------------------------------------------------------------------------- */
.budget-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.budget-card {
  background: #fff;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 30px 18px;
  text-align: center;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.budget-card:hover {
  border-color: var(--primary-burgundy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  background: var(--cream);
}

.budget-card i {
  font-size: 2rem;
  color: var(--premium-gold);
  margin-bottom: 12px;
}

.budget-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-burgundy);
  margin-bottom: 6px;
}

.budget-subtitle {
  font-size: 0.8rem;
  color: var(--secondary-text);
  margin-bottom: 14px;
}

.budget-btn {
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  color: var(--primary-burgundy);
}

/* --------------------------------------------------------------------------
   Section 13: Shop By Gender
   -------------------------------------------------------------------------- */
.gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.gender-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
}

.gender-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gender-card:hover img {
  transform: scale(1.06);
}

.gender-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(67, 6, 11, 0.1) 40%, rgba(67, 6, 11, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}

.gender-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--champagne);
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Section 14: Exclusive Banner Grid (3 Banners)
   -------------------------------------------------------------------------- */
.banner-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.banner-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

.banner-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.banner-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 21, 18, 0.2) 20%, rgba(37, 21, 18, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}

.banner-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--light-gold);
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   Sections 15 - 18: Spotlight Showcases (Mangalsutra, Earrings, Rings, Necklaces)
   -------------------------------------------------------------------------- */
.spotlight-split {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: stretch;
}

.spotlight-banner {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-gold);
}

.spotlight-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(67, 6, 11, 0.4) 0%, rgba(67, 6, 11, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}

.spotlight-banner-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--champagne);
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   Section 19: Craftsmanship
   -------------------------------------------------------------------------- */
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.craft-img-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-gold);
}

.craft-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.craft-badge-stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--burgundy-gradient);
  color: var(--champagne);
  border: 2px solid var(--premium-gold);
  border-radius: var(--radius-xs);
  padding: 14px 20px;
  box-shadow: var(--shadow-burgundy);
  text-align: center;
}

.craft-badge-stamp strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--light-gold);
}

/* --------------------------------------------------------------------------
   Section 20: Why Aggarwal Jewellers (6 Cards)
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 30px 24px;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.why-card:hover {
  border-color: var(--premium-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border-gold);
  color: var(--primary-burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px auto;
  transition: var(--transition-base);
}

.why-card:hover .why-icon {
  background: var(--gold-gradient);
  color: var(--deep-wine);
  border-color: transparent;
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--primary-burgundy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--secondary-text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Section 21: Shop By Style (8 Styles)
   -------------------------------------------------------------------------- */
.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.style-card {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gold);
}

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

.style-card:hover img {
  transform: scale(1.08);
}

.style-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 21, 18, 0.2) 20%, rgba(37, 21, 18, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}

.style-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--champagne);
}

/* --------------------------------------------------------------------------
   Section 22: Gift Jewellery (4 Gifting Occasions)
   -------------------------------------------------------------------------- */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gift-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-align: center;
}

.gift-card:hover {
  border-color: var(--premium-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.gift-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.gift-card-body {
  padding: 20px 16px;
}

.gift-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-burgundy);
  margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Section 24: Customer Testimonials (4 Luxury Cards)
   -------------------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(212, 160, 23, 0.2);
  position: absolute;
  top: 10px;
  right: 18px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--premium-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--secondary-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--cream);
  padding-top: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.testimonial-author-name {
  font-weight: var(--fw-semibold);
  font-size: 0.88rem;
  color: var(--dark-text);
}

.testimonial-author-city {
  font-size: 0.76rem;
  color: #9c8a86;
}

/* --------------------------------------------------------------------------
   Section 25: Jewellery Gallery (Masonry / Editorial Grid)
   -------------------------------------------------------------------------- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-tile {
  position: relative;
  border-radius: var(--radius-xs);
  overflow: hidden;
  height: 240px;
  border: 1px solid var(--border-color);
}

.gallery-tile.tall {
  grid-row: span 2;
  height: 496px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(67, 6, 11, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.gallery-tile:hover .gallery-tile-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Section 26: Jewellery Care (5 Cards)
   -------------------------------------------------------------------------- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.care-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition-base);
}

.care-card:hover {
  border-color: var(--premium-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.care-icon {
  font-size: 1.8rem;
  color: var(--premium-gold);
  margin-bottom: 12px;
}

.care-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--primary-burgundy);
  margin-bottom: 8px;
}

.care-text {
  font-size: 0.8rem;
  color: var(--secondary-text);
  line-height: 1.5;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Section 27: About Aggarwal Jewellers
   -------------------------------------------------------------------------- */
.about-heritage-card {
  background: var(--cream);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 60px 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.about-heritage-card h2 {
  font-size: 2.6rem;
  color: var(--primary-burgundy);
  margin-bottom: 20px;
}

.about-heritage-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-text);
}

/* --------------------------------------------------------------------------
   Section 29: Newsletter
   -------------------------------------------------------------------------- */
.newsletter-banner {
  background: var(--burgundy-gradient);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 60px 40px;
  border: 1px solid rgba(244, 201, 93, 0.35);
  box-shadow: var(--shadow-burgundy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text h2 {
  color: var(--champagne);
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.newsletter-text p {
  color: #eedcd7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  width: 100%;
}

.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-xs) 0 0 var(--radius-xs);
  background: #fff;
  color: var(--dark-text);
  font-size: 0.9rem;
}

.newsletter-btn {
  padding: 14px 24px;
  background: var(--gold-gradient);
  color: var(--deep-wine);
  font-weight: var(--fw-semibold);
  font-size: 0.9rem;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Section 30: Instagram Gallery (6 Image Tiles)
   -------------------------------------------------------------------------- */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.social-tile {
  position: relative;
  height: 190px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

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

.social-tile:hover img {
  transform: scale(1.08);
}

.social-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(67, 6, 11, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--light-gold);
  font-size: 1.5rem;
}

.social-tile:hover .social-tile-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Section 31: Final CTA
   -------------------------------------------------------------------------- */
.final-cta-section {
  background: radial-gradient(circle at center, #43060B 0%, #250306 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  border-top: 2px solid var(--premium-gold);
  position: relative;
}

.final-cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--champagne);
  margin-bottom: 16px;
}

.final-cta-section p {
  font-size: 1.12rem;
  color: #d1bdb8;
  max-width: 650px;
  margin: 0 auto 32px auto;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments for home sections */
@media (max-width: 1200px) {
  .category-circle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .product-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .budget-grid, .care-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .spotlight-split {
    grid-template-columns: 1fr;
  }
  .spotlight-banner {
    height: 260px;
  }
}

@media (max-width: 1200px) {
  .hero-spotlight-dock {
    width: 340px;
    right: 20px;
  }
}

@media (max-width: 991px) {
  .hero-slider-section {
    padding-bottom: 24px;
  }
  .hero-spotlight-dock {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 28px auto 0;
    width: 100%;
    max-width: 440px;
    z-index: 15;
  }
  .hero-slider {
    height: auto;
    min-height: 540px;
  }
  .hero-slide {
    padding: 50px 0 30px;
  }
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .craft-grid {
    grid-template-columns: 1fr;
  }
  .why-grid, .testimonial-grid, .occasion-grid, .style-grid, .gift-grid, .gender-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 480px;
  }
  .category-circle-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .category-circle-img-wrap {
    width: 95px;
    height: 95px;
  }
  .category-circle-name {
    font-size: 0.92rem;
  }
  .product-grid-4, .product-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .budget-grid, .care-grid, .banner-grid-3 {
    grid-template-columns: 1fr;
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
