:root {
  --primary-gold: #D4AF37;
  --primary-gold-dark: #b5952f;
  --header-purple: #4c1d6f;
  --header-purple-dark: #371153;
  --royal-purple: #1C0B2B;
  --royal-purple-light: #2D1445;
  --off-white: #F9F7F2;
  --cream-bg: #F8ECE1;
  --text-dark: #2c2c2c;
  --text-muted: #6c757d;
  
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Lato', sans-serif;
  --brand-font: 'Montserrat', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

.gold-text {
  color: var(--primary-gold);
}

/* Luxury Gold & Purple Buttons Design System */
.btn-primary-gold,
.btn-luxury-gold,
.btn-gold-primary {
  background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%) !important;
  color: #1c0b2b !important;
  border: none !important;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 30px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary-gold:hover,
.btn-luxury-gold:hover,
.btn-gold-primary:hover {
  background: linear-gradient(135deg, #f3d068 0%, #d4af37 100%) !important;
  color: #1c0b2b !important;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-2deg);
}

.btn-purple-outline {
  border: 2px solid #1c0b2b !important;
  color: #1c0b2b !important;
  background: transparent !important;
  border-radius: 30px;
  font-weight: 700;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.btn-purple-outline:hover {
  background: #1c0b2b !important;
  color: #ffffff !important;
  transform: translateY(-2deg);
  box-shadow: 0 6px 20px rgba(28, 11, 43, 0.25);
}

/* Gold Form Focus & Input Highlights */
.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25) !important;
}

.form-check-input:checked {
  background-color: #1c0b2b !important;
  border-color: #d4af37 !important;
}

/* ==========================================================================
   1. TOP UTILITY HEADER BAR
   ========================================================================== */
.top-utility-bar {
  background: var(--header-purple);
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-brands {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-brand-badge {
  background: #ffffff;
  color: var(--header-purple);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--brand-font);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-brand-badge img {
  height: 18px;
}

.top-subbrand-badge {
  background: linear-gradient(135deg, #d36b48, #c45633);
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--brand-font);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.top-utility-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-utility-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s ease;
  font-size: 0.82rem;
}

.top-utility-links a:hover {
  opacity: 0.85;
  color: #ffffff;
}

.top-utility-links .divider {
  opacity: 0.4;
  color: #ffffff;
}

/* ==========================================================================
   2. MAIN NAVIGATION BAR
   ========================================================================== */
.main-navbar {
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.main-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.main-navbar .brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.main-navbar .brand-text-container {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.main-navbar .brand-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.65rem;
  color: #29166b;
  letter-spacing: -0.2px;
  text-transform: none;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
}

.main-navbar .brand-title .brand-nx,
.brand-nx {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: #29166b;
  margin-left: 1px;
}

.main-navbar .brand-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.52rem;
  color: var(--primary-gold-dark);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}

.top-brand-text {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #29166b;
  line-height: 1;
}

.top-brand-nx {
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: #29166b;
}

.main-navbar .nav-item {
  position: relative;
}

.main-navbar .nav-link {
  color: #333333 !important;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0.2px;
  padding: 8px 12px !important;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--header-purple) !important;
}

.main-navbar .nav-link i {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.main-navbar .nav-item:hover .nav-link i {
  transform: translateY(2px);
}

/* Hide CSS pseudo-element caret to display only one dropdown arrow */
.navbar .dropdown-toggle::after,
.main-navbar .dropdown-toggle::after,
.dropdown-toggle::after {
  display: none !important;
}

/* Nav Dropdown Menu */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 10px 0;
  margin-top: 5px;
}

.main-navbar .dropdown-item {
  font-size: 0.88rem;
  padding: 8px 20px;
  color: #444;
  transition: all 0.2s ease;
}

.main-navbar .dropdown-item:hover {
  background-color: rgba(76, 29, 111, 0.05);
  color: var(--header-purple);
}

/* Search Bar & Action Icons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search-box {
  position: relative;
  width: 220px;
}

.nav-search-input {
  width: 100%;
  padding: 7px 36px 7px 16px;
  border-radius: 25px;
  border: 1px solid #dcdcdc;
  font-size: 0.83rem;
  color: #333;
  outline: none;
  transition: all 0.25s ease;
  background-color: #fafafa;
}

.nav-search-input:focus {
  border-color: var(--header-purple);
  box-shadow: 0 0 0 3px rgba(76, 29, 111, 0.1);
  background-color: #ffffff;
}

.nav-search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
  font-size: 0.9rem;
  pointer-events: none;
}

.nav-icon-link {
  color: #333333;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.nav-icon-link:hover {
  color: var(--header-purple);
  transform: translateY(-1px);
}

.nav-icon-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--header-purple);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. HERO BANNER SECTION (PNG Style Promo Banner)
   ========================================================================== */
.hero-banner-container {
  padding: 20px 0 10px 0;
  background-color: #ffffff;
}

.hero-banner-card {
  background: linear-gradient(135deg, #F9ECE1 0%, #F5DEC9 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  min-height: 460px;
  display: flex;
  align-items: center;
}

.hero-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-banner-content {
  padding: 40px 60px;
  z-index: 2;
  position: relative;
}

.hero-banner-subtitle {
  font-family: var(--brand-font);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 6px;
  color: var(--header-purple);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hero-banner-title {
  font-family: var(--brand-font);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--header-purple);
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-banner-title span {
  display: block;
  font-weight: 400;
  font-size: 2.1rem;
  letter-spacing: 3px;
  margin-top: 5px;
}

.hero-banner-discount {
  font-family: var(--brand-font);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--header-purple);
  margin: 15px 0 25px 0;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-banner-discount .flat-label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 8px;
  border-top: 1px solid var(--header-purple);
  border-bottom: 1px solid var(--header-purple);
  padding: 3px 15px;
}

.btn-shop-now {
  background: #ffffff;
  color: var(--header-purple);
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  padding: 12px 36px;
  border-radius: 30px;
  border: 2px solid var(--header-purple);
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(76, 29, 111, 0.15);
  transition: all 0.3s ease;
}

.btn-shop-now:hover {
  background: var(--header-purple);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 29, 111, 0.3);
}

.hero-banner-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 20px;
}

.hero-banner-main-img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
  transition: transform 0.5s ease;
}

.hero-banner-card:hover .hero-banner-main-img {
  transform: scale(1.03);
}

.tc-apply-label {
  position: absolute;
  right: 15px;
  bottom: 25px;
  writing-mode: vertical-rl;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(76, 29, 111, 0.7);
  letter-spacing: 1px;
  transform: rotate(180deg);
  pointer-events: none;
}

/* ==========================================================================
   4. CATEGORY NAVIGATION GRID (Below Hero Banner)
   ========================================================================== */
.category-nav-section {
  padding: 30px 0 35px 0;
  background-color: #ffffff;
}

.category-grid-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px 10px;
  padding-bottom: 10px;
}

.category-grid-container::-webkit-scrollbar {
  display: none;
}

.category-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  flex: 0 1 auto;
  width: 105px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 5px;
}

.category-nav-item:hover {
  transform: translateY(-4px);
  color: var(--header-purple);
}

.category-icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  padding: 12px;
  transition: all 0.3s ease;
}

.category-nav-item:hover .category-icon-circle {
  border-color: var(--header-purple);
  box-shadow: 0 8px 25px rgba(76, 29, 111, 0.15);
}

.category-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-item-label {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: #333333;
  line-height: 1.3;
  display: block;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.category-nav-item:hover .category-item-label {
  color: var(--header-purple);
}

/* ==========================================================================
   5. FLOATING CHAT WIDGET
   ========================================================================== */
.floating-chat-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--header-purple);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(76, 29, 111, 0.4);
  z-index: 1050;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.2);
}

.floating-chat-btn:hover {
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(76, 29, 111, 0.6);
}

/* ==========================================================================
   6. REST OF PAGE SECTIONS (Legacy, Showroom, Reviews, Contact, Footer)
   ========================================================================== */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--header-purple);
  font-weight: 700;
}

/* Legacy Section */
.legacy-section {
  background-color: var(--off-white);
  color: var(--text-dark);
}

.legacy-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444444;
}

.legacy-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(28, 11, 43, 0.2);
  border: 2px solid rgba(212, 175, 55, 0.35);
  background: #1c0b2b;
}

.legacy-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 14px;
  transition: transform 0.5s ease, filter 0.5s ease;
  display: block;
}

.legacy-img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .legacy-img {
    height: 340px;
  }
}

/* Showroom Section */
.showroom-section {
  background-color: #fafafa;
}

.collection-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

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

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

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(55, 17, 83, 0.9));
  padding: 30px 20px;
  text-align: center;
}

.collection-title {
  font-size: 1.6rem;
  margin: 0;
  color: #ffffff;
  font-family: var(--heading-font);
}

/* Trust Section */
.trust-section {
  background-color: var(--header-purple-dark);
  color: #ffffff;
  text-align: center;
}

.trust-section .section-title {
  color: var(--primary-gold);
}

.testimonial-card {
  padding: 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
}

footer {
  background-color: #230838;
  color: #b0a5bd;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 991px) {
  .top-utility-links {
    font-size: 0.75rem;
    gap: 10px;
  }
  .nav-search-box {
    width: 160px;
  }
  .hero-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .hero-banner-content {
    padding: 20px 10px;
  }
  .hero-banner-title {
    font-size: 2.2rem;
  }
  .hero-banner-discount {
    font-size: 2.8rem;
    justify-content: center;
  }
}

/* ==========================================================================
   INVESTMENT PLANS SECTION
   ========================================================================== */
.investment-plans-section {
  background: radial-gradient(circle at 80% 20%, rgba(110, 40, 150, 0.4) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(70, 20, 100, 0.4) 0%, transparent 60%),
              linear-gradient(135deg, #2b0b42 0%, #150522 100%);
  color: #ffffff;
  padding: 60px 0 50px 0;
  position: relative;
  overflow: hidden;
}

.investment-plans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.investment-section-title {
  font-family: var(--brand-font);
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.scheme-logo-card {
  background: #F6E6D5;
  width: 290px;
  height: 290px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.scheme-title {
  font-family: var(--brand-font);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--header-purple);
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.scheme-subtitle {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--header-purple);
  letter-spacing: 2.5px;
  margin: 4px 0 12px 0;
  line-height: 1;
}

.scheme-tagline {
  font-family: var(--brand-font);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #8c4c9e;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.scheme-flourish {
  color: var(--primary-gold-dark);
  font-size: 1.2rem;
  margin: 6px 0;
}

.investment-description {
  font-size: 1.08rem;
  color: #e5d8f2;
  line-height: 1.7;
  font-weight: 400;
  max-width: 580px;
}

.know-more-link {
  color: #ffffff;
  text-decoration: underline;
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-block;
  margin-top: 5px;
  transition: opacity 0.2s ease;
}

.know-more-link:hover {
  color: #f0e6ff;
  opacity: 0.85;
}

.app-download-container {
  margin-top: 30px;
}

.download-title {
  font-family: var(--body-font);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 14px;
}

.app-store-pill-box {
  display: inline-flex;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 35px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
}

.app-store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.app-store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.app-btn-text {
  text-align: left;
  line-height: 1.1;
}

.app-btn-text .small-text {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: #d2c5e0;
  letter-spacing: 0.5px;
}

.app-btn-text .big-text {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

/* 3D Swapping Card Deck Slider for Investment Plans */
.swap-deck-container {
  position: relative;
  max-width: 960px;
  margin: 30px auto 10px auto;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.swap-deck-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swap-card {
  position: absolute;
  width: 100%;
  max-width: 820px;
  background: linear-gradient(135deg, rgba(28, 11, 43, 0.92) 0%, rgba(54, 20, 80, 0.92) 100%);
  backdrop-filter: blur(16px);
  border: 2px solid #d4af37;
  border-radius: 24px;
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.swap-card.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}

.swap-card.active:hover {
  transform: translateX(0) scale(1.04);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.22);
  border-color: #f3d068;
  z-index: 15;
}

.swap-card:hover .btn-gold-primary {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35) !important;
  background: linear-gradient(135deg, #f3d068 0%, #d4af37 100%) !important;
  transform: translateY(-2deg);
}

.swap-card.prev {
  transform: translateX(-26%) scale(0.85) rotateY(6deg);
  opacity: 0.4;
  z-index: 5;
  filter: blur(1px);
  pointer-events: auto;
}

.swap-card.next {
  transform: translateX(26%) scale(0.85) rotateY(-6deg);
  opacity: 0.4;
  z-index: 5;
  filter: blur(1px);
  pointer-events: auto;
}

.swap-card:hover.prev,
.swap-card:hover.next {
  opacity: 0.75;
  filter: blur(0px);
}

.swap-card-inner {
  display: flex;
  align-items: center;
  gap: 35px;
}

.swap-card-left {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
}

.swap-card-right {
  flex: 1;
}

.swap-card-heading {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Swapping Deck Control Arrows & Dots */
.swap-deck-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.swap-deck-arrow:hover {
  background: #d4af37;
  color: #1c0b2b;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.swap-prev-btn { left: -25px; }
.swap-next-btn { right: -25px; }

.swap-deck-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  position: relative;
  z-index: 15;
}

.swap-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.35s ease;
}

.swap-dot.active {
  width: 36px;
  border-radius: 12px;
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

@media (max-width: 768px) {
  .swap-deck-container {
    min-height: 480px;
  }
  .swap-card-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .swap-card-left {
    flex: 0 0 auto;
  }
  .swap-card.prev { transform: translateY(-20px) scale(0.88); opacity: 0.3; }
  .swap-card.next { transform: translateY(20px) scale(0.88); opacity: 0.3; }
  .swap-prev-btn { left: -5px; width: 40px; height: 40px; }
  .swap-next-btn { right: -5px; width: 40px; height: 40px; }
}


/* Promise Plan Card Graphic styling */
.promise-plan-card {
  background: #F6E6D5;
  width: 290px;
  height: 290px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  padding: 20px;
  overflow: hidden;
}

.promise-ribbon-banner {
  background: #C87428;
  color: #ffffff;
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 5px 14px;
  position: absolute;
  top: 30px;
  border-radius: 4px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 3;
}

.promise-100-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.promise-number-100 {
  font-family: var(--brand-font);
  font-weight: 900;
  font-size: 6.8rem;
  color: var(--header-purple);
  line-height: 1;
  letter-spacing: -6px;
  display: flex;
  align-items: center;
}

.gold-coin-emblem {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE484 0%, #D4AF37 60%, #9B7815 100%);
  border: 3px solid #FFF3B0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 -12px;
}

.coin-top-text {
  font-size: 0.55rem;
  font-weight: 800;
  font-family: var(--brand-font);
  color: #3b2302;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.coin-portrait-icon {
  font-size: 2.2rem;
  color: #3b2302;
  line-height: 1;
}

.coin-bottom-text {
  font-size: 0.45rem;
  font-weight: 700;
  color: #3b2302;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   6 REASONS YOU SHOULD BUY FROM US SECTION
   ========================================================================== */
.reasons-buy-section {
  background: linear-gradient(135deg, #F9ECE1 0%, #F5DEC9 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.reasons-title {
  font-family: var(--brand-font);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--header-purple);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.reasons-title-line {
  width: 70px;
  height: 3px;
  background: var(--header-purple);
  margin: 0 auto 25px auto;
  border-radius: 2px;
}

.reasons-grid-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 15px;
  flex-wrap: nowrap;
}

.reason-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
  padding: 10px 5px;
}

.reason-item:hover {
  transform: translateY(-5px);
}

.reason-icon-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--header-purple);
  color: var(--header-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 15px rgba(76, 29, 111, 0.12);
  transition: all 0.3s ease;
}

.reason-item:hover .reason-icon-circle {
  background: var(--header-purple);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(76, 29, 111, 0.3);
  transform: scale(1.05);
}

.reason-label {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 0.92rem;
  color: #2b123e;
  line-height: 1.3;
  transition: color 0.2s ease;
  max-width: 130px;
}

.reason-item:hover .reason-label {
  color: var(--header-purple);
}

@media (max-width: 991px) {
  .reasons-grid-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reason-item {
    flex: 0 0 30%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .reason-item {
    flex: 0 0 45%;
  }
}

/* ==========================================================================
   MEGA DROPDOWN MENU SYSTEM (PNG / Bhadrakali Layout)
   ========================================================================== */
.main-navbar .nav-item.dropdown.mega-dropdown-item {
  position: static !important;
}

.main-navbar .mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 92vw;
  max-width: 1140px;
  background: #ffffff;
  border: 1px solid #e8e0d4;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  padding: 0;
  overflow: hidden;
  display: none;
  z-index: 1050;
}

.main-navbar .nav-item.dropdown.mega-dropdown-item:hover .mega-dropdown-menu,
.main-navbar .mega-dropdown-menu.show {
  display: block;
  animation: megaFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes megaFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.mega-menu-inner {
  display: flex;
  min-height: 380px;
}

/* Left Sidebar Tabs */
.mega-menu-sidebar {
  width: 220px;
  background-color: #F8F4EE;
  border-right: 1px solid #ECE4D8;
  padding: 12px 0;
  flex-shrink: 0;
}

.mega-tab-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: #333333;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  transition: all 0.2s ease;
  cursor: pointer;
}

.mega-tab-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.mega-tab-link:hover,
.mega-tab-link.active {
  background-color: #E8DFD5;
  color: var(--header-purple);
  font-weight: 700;
}

/* Right Content Area */
.mega-menu-content {
  flex-grow: 1;
  padding: 25px 35px;
  background-color: #ffffff;
  overflow-y: auto;
  max-height: 420px;
}

.mega-tab-pane {
  display: none;
}

.mega-tab-pane.active {
  display: block;
  animation: fadeIn 0.2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.mega-section-group {
  margin-bottom: 25px;
}

.mega-section-heading {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 0.82rem;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 6px;
}

.mega-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 20px;
}

.mega-product-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333333;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mega-product-item:hover {
  background-color: #FAF6F0;
  color: var(--header-purple);
  transform: translateX(3px);
}

.mega-product-thumb {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px;
  border: 1px solid #eaeaea;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.mega-product-name {
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 0.86rem;
  line-height: 1.25;
}

/* ==========================================================================
   LUXURY FOOTER SYSTEM
   ========================================================================== */
.footer-newsletter-banner {
  background: linear-gradient(135deg, #4c1d6f 0%, #2b0b42 100%);
  color: #ffffff;
  padding: 45px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.newsletter-title {
  font-family: var(--brand-font);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.newsletter-text {
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: #dcd0e8;
  margin: 0;
}

.newsletter-form-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 35px;
  padding: 5px 6px 5px 20px;
  max-width: 480px;
  margin-left: auto;
}

.newsletter-input {
  background: transparent;
  border: none;
  color: #ffffff;
  outline: none;
  font-size: 0.9rem;
  width: 100%;
}

.newsletter-input::placeholder {
  color: #bfaecf;
}

.btn-newsletter-subscribe {
  background: var(--primary-gold);
  color: var(--royal-purple);
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-newsletter-subscribe:hover {
  background: #ffffff;
  color: var(--header-purple);
  transform: translateY(-1px);
}

/* Main Footer Container */
.site-footer {
  background-color: #170524;
  color: #c7b8d6;
  padding-top: 60px;
  font-size: 0.9rem;
}

.footer-brand-title {
  font-family: var(--brand-font);
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.footer-brand-subtitle {
  font-family: var(--brand-font);
  font-weight: 600;
  font-size: 0.6rem;
  color: var(--primary-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #b0a0c2;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon-btn:hover {
  background: var(--header-purple);
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--brand-font);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-links-list a {
  color: #bdaecf;
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: var(--primary-gold);
  transform: translateX(4px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #bdaecf;
  font-size: 0.88rem;
}

.footer-contact-info i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  background-color: #10031a;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: #9283a3;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: #9283a3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 991px) {
  .newsletter-form-box {
    margin-top: 15px;
    margin-left: 0;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

/* ==========================================================================
   GLOBAL LIVE SEARCH DROPDOWN & MODAL STYLES
   ========================================================================== */
.live-search-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 1050;
  display: none;
  overflow: hidden;
  width: 340px;
  max-width: 90vw;
}

.live-search-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold-dark, #99743c);
  padding: 10px 16px 6px;
  border-bottom: 1px solid #f0f0f0;
  background: #fffcf7;
}

.live-search-list {
  max-height: 320px;
  overflow-y: auto;
}

.live-search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease;
}

.live-search-item:hover {
  background: #fcf8f2;
}

.live-search-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: #fafafa;
  border: 1px solid #eee;
}

.live-search-info {
  flex: 1;
}

.live-search-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222222;
  line-height: 1.2;
}

.live-search-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
}

.live-search-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge-gold {
  background: #fff5e6;
  color: #b37d14;
}

.badge-silver {
  background: #f0f4f8;
  color: #5a6b7c;
}

.badge-diamond {
  background: #f3eafb;
  color: #6b2d91;
}

.live-search-carat {
  font-size: 0.72rem;
  color: #777;
}

.live-search-arrow {
  font-size: 0.8rem;
  color: #ccc;
  transition: transform 0.2s ease;
}

.live-search-item:hover .live-search-arrow {
  transform: translateX(3px);
  color: var(--header-purple, #4c1d6f);
}

.live-search-footer {
  padding: 10px 16px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--header-purple, #4c1d6f);
  background: #fbf9fe;
  cursor: pointer;
  border-top: 1px solid #eee;
  transition: background 0.2s ease;
}

.live-search-footer:hover {
  background: #f3ebfc;
}

.live-search-no-results {
  padding: 20px 16px;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}

/* Global Search Modal */
.global-search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.global-search-modal.active {
  display: flex;
}

.global-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 5, 25, 0.75);
  backdrop-filter: blur(8px);
}

.global-search-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  max-height: 85vh;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(15px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.global-search-top {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  background: #fffcf7;
  gap: 16px;
}

.search-modal-input-wrap {
  position: relative;
  flex: 1;
}

.search-modal-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #999;
}

#globalModalSearchInput {
  width: 100%;
  padding: 12px 40px 12px 48px;
  border-radius: 30px;
  border: 2px solid #e2d7c5;
  font-size: 1.05rem;
  outline: none;
  transition: all 0.25s ease;
}

#globalModalSearchInput:focus {
  border-color: var(--header-purple, #4c1d6f);
  box-shadow: 0 0 0 4px rgba(76, 29, 111, 0.12);
}

.search-modal-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #aaa;
  cursor: pointer;
}

.global-search-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  line-height: 1;
}

.global-search-filters {
  display: flex;
  gap: 10px;
  padding: 14px 24px;
  border-bottom: 1px solid #eee;
  background: #ffffff;
  overflow-x: auto;
}

.filter-tab {
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  color: #555;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--header-purple, #4c1d6f);
  color: #ffffff;
  border-color: var(--header-purple, #4c1d6f);
  box-shadow: 0 4px 12px rgba(76, 29, 111, 0.2);
}

.global-search-stats {
  padding: 12px 24px 4px;
  font-size: 0.85rem;
  color: #666;
}

.global-search-grid {
  padding: 16px 24px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  overflow-y: auto;
  max-height: 55vh;
}

.search-product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.search-card-thumb {
  position: relative;
  height: 150px;
  background: #fbfbfb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.search-card-thumb img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.search-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.search-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.search-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-gold-dark, #b37d14);
  letter-spacing: 0.08em;
}

.search-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 6px 0;
  line-height: 1.3;
}

.search-card-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}

.search-card-carat {
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
}

.btn-search-view {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--header-purple, #4c1d6f);
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-search-view:hover {
  color: var(--primary-gold-dark, #b37d14);
}

.search-highlight {
  background: #ffeaa7;
  color: #2d3436;
  padding: 0 2px;
  border-radius: 2px;
}

.search-grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: #777;
}

/* Accessibility & Typography Enhancements (WCAG 2.1) */
:focus-visible {
  outline: 2px solid var(--primary-gold, #d4af37) !important;
  outline-offset: 3px !important;
}

h1, h2, h3 {
  text-wrap: balance;
}
