@import url('https://fonts.googleapis.com/css2?family=Oliver:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=Alex+Brush&display=swap');

:root {
  --font-primary: 'Oliver', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Oliver', 'Playfair Display', Georgia, serif;
  --dark-bg: #090C0E;
  --dark-card: #0F1315;
  --gold-primary: #C99B3D;
  --gold-light: #E5C672;
  --gold-accent: #D4AF37;
  --light-bg: #F8F6F2;
  --light-card: #FFFFFF;
  --text-dark: #1A1612;
  --text-muted: #6E675E;
  --text-light-muted: #B8B2A6;
  --border-dark: rgba(212, 175, 55, 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark-bg);
  color: #F6F1E5;
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Base Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  color: var(--gold-light);
  background: rgba(9, 12, 14, 0.6);
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
  cursor: pointer;
}

.button:hover {
  background: var(--gold-primary);
  color: #0A0E10;
  box-shadow: 0 4px 15px rgba(201, 155, 61, 0.3);
}

/* Top Utility Header */
.top-bar {
  background: #06090A;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #A8A297;
}

.top-bar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-bar-contact a:hover {
  color: var(--gold-light);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.purity-badge {
  font-size: 11px;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  color: #A8A297;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.social-links a:hover {
  color: var(--gold-accent);
}

/* Main Navigation Header */
header {
  background: #0A0E10;
  border-bottom: 1px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
  object-fit: contain;
}

.brand-text {
  display: flex;
  align-items: center;
}

.brand-text-img {
  height: 28px;
  width: auto;
  mix-blend-mode: screen;
  object-fit: contain;
}

.brand-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold-primary);
  margin-top: 4px;
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  color: #D1CCC0;
  padding: 26px 0 22px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

nav a:hover, nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-accent);
}

.icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform 0.2s;
}

.icon-btn:hover {
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold-primary);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 580px;
  background: #080C0E;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 6% 30px;
}

.hero-slides {
  position: absolute;
  inset: 0 0 0 25%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #080C0E 30%, rgba(8, 12, 14, 0.25) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: 10px;
}

.kicker {
  color: var(--gold-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light-muted);
  margin-bottom: 26px;
}

.hero-script-tag {
  position: absolute;
  top: 40px;
  right: 6%;
  z-index: 2;
  font-family: 'Alex Brush', cursive, Georgia, serif;
  font-size: 36px;
  color: rgba(229, 198, 114, 0.75);
  text-align: center;
  line-height: 1.1;
  pointer-events: none;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 60px;
}

.hero-features {
  display: flex;
  gap: 36px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text b {
  font-size: 13px;
  color: #FFFFFF;
  display: block;
}

.feature-text small {
  font-size: 11px;
  color: #9E988C;
}

.hero-slider-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #9E988C;
  font-size: 13px;
}

.hero-slider-nav button {
  background: transparent;
  border: none;
  color: var(--gold-accent);
  cursor: pointer;
  font-size: 16px;
  padding: 4px;
}

.hero-slider-nav .active {
  color: var(--gold-accent);
  font-weight: 700;
}

/* Light Sections Shared */
.light {
  background: var(--light-bg);
  color: var(--text-dark);
  padding: 60px 6%;
  text-align: center;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 36px;
}

.kicker-lined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #C49838;
  margin-bottom: 8px;
}

.kicker-lined::before,
.kicker-lined::after {
  content: '';
  height: 1px;
  width: 40px;
  background: #C49838;
  opacity: 0.5;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-header .intro {
  font-size: 14px;
  color: var(--text-muted);
}

/* Shop by Category */
.categories-slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.categories {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.categories::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 210px;
  min-width: 200px;
  background: #0B0F10;
  border-radius: 18px;
  padding: 22px 16px 18px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.category-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #15191B;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-card b {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-accent);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.category-card:hover .card-arrow {
  background: var(--gold-accent);
  color: #0B0F10;
}

/* About Section */
.about-wrapper {
  background: #0B0E10;
  padding: 60px 6%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.about-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  border: none;
}

.about-mandala-bg {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px stroke rgba(212, 175, 55, 0.08);
  background: radial-gradient(circle, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-image-col img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.about-content-col {
  padding: 10px 0;
}

.about-content-col h2 {
  font-size: 32px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 8px 0 14px;
}

.about-content-col p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light-muted);
  margin-bottom: 20px;
}

.about-btn {
  padding: 10px 24px;
  font-size: 13px;
}

.about-features-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-box b {
  font-size: 14px;
  color: #FFFFFF;
  display: block;
}

.about-feature-box small {
  font-size: 12px;
  color: #9E988C;
}

/* Featured Products Slider & Blur Gradients */
.product-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.slider-blur-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35px;
  z-index: 10;
  background: linear-gradient(to right, rgba(248, 246, 242, 0.8) 0%, rgba(248, 246, 242, 0) 100%);
  pointer-events: none;
  backdrop-filter: blur(0.5px);
}

.slider-blur-right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 35px;
  z-index: 10;
  background: linear-gradient(to left, rgba(248, 246, 242, 0.8) 0%, rgba(248, 246, 242, 0) 100%);
  pointer-events: none;
  backdrop-filter: blur(0.5px);
}

.product-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding: 10px 0;
}

.product-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  background: #FFFFFF;
  border-radius: 14px;
  border: 1px solid #E6E1D8;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F3EFE9;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.weight-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(9, 12, 14, 0.85);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(0.5px);
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: all 0.2s;
}

.wishlist-btn:hover {
  background: #FFFFFF;
  color: #E25555;
}

.product-info {
  padding: 18px 16px 20px;
  text-align: center;
}

.product-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-info .price {
  font-size: 14px;
  font-weight: 600;
  color: #4A443C;
  margin-bottom: 14px;
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #D4AF37 0%, #C99B3D 50%, #B5862B 100%);
  color: #080C0E;
  padding: 11px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(201, 155, 61, 0.25);
  transition: all 0.25s ease;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #E5C672 0%, #D4AF37 50%, #C99B3D 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
  color: #000000;
}

/* Instagram Section */
.instagram {
  background: #080C0E;
  padding: 60px 6%;
  display: flex;
  gap: 36px;
  align-items: center;
  color: #FFFFFF;
}

.instagram-left {
  width: 26%;
}

.instagram-left h2 {
  font-size: 32px;
  margin: 6px 0 10px;
}

.instagram-left p {
  font-size: 14px;
  color: var(--text-light-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

.reels-slider-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.reels {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0;
}

.reels::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 170px;
  position: relative;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin: 0;
}

.reel-card img,
.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #FFFFFF;
  font-size: 11px;
  padding: 3px 7px;
  border-radius: 4px;
}

/* Reviews Section */
.reviews {
  background: var(--light-bg);
  padding: 60px 6%;
  color: var(--text-dark);
}

.reviews-header-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.reviews-left-col {
  width: 28%;
}

.reviews-left-col h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin: 6px 0 10px;
}

.reviews-right-col {
  flex: 1;
  width: 100%;
}

.reviews-nav-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 24px auto 0;
  width: 100%;
  text-align: center;
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #D4AF37;
  color: #B5862B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(181, 134, 43, 0.15);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.reviews-nav-btn:hover {
  background: linear-gradient(135deg, #E5C672 0%, #D4AF37 50%, #B5862B 100%);
  color: #FFFFFF;
  border-color: #B5862B;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 18px rgba(181, 134, 43, 0.35);
}

.reviews-nav-btn:active {
  transform: translateY(0) scale(0.96);
}

.reviews-control-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C7B65;
}

.reviews-slider-wrapper {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.reviews-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(50% - 8px);
  width: calc(50% - 8px);
  min-width: 0;
  box-sizing: border-box;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 20px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #EAE6E1;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-content p {
  font-size: 13px;
  line-height: 1.5;
  color: #4A453E;
  margin-bottom: 10px;
  font-style: italic;
}

.review-content b {
  font-size: 14px;
  color: var(--text-dark);
  display: block;
  font-weight: 600;
}

.stars {
  color: var(--gold-accent);
  font-size: 13px;
  margin-top: 3px;
  letter-spacing: 1px;
}

/* CTA Banner Section */
.cta-wrapper {
  background: #0B0E10;
  padding: 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
}

.cta-card {
  background: transparent;
  border-radius: 0;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr 0.8fr;
  align-items: center;
  border: none;
  overflow: hidden;
}

.cta-img-col img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

.cta-content-col {
  padding: 40px 50px;
}

.cta-content-col h2 {
  font-size: 24px;
  color: #FFFFFF;
  margin: 6px 0;
}

.cta-content-col p {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-bottom: 16px;
}

.cta-btn {
  padding: 9px 22px;
  font-size: 12px;
}

.cta-emblem-col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.cta-logo-img {
  height: 60px;
  width: auto;
  mix-blend-mode: screen;
  object-fit: contain;
  margin-bottom: 8px;
}

.cta-emblem-col b {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--gold-accent);
  margin-top: 8px;
}

.cta-emblem-col small {
  display: block;
  font-size: 11px;
  color: var(--text-light-muted);
  font-weight: 400;
  margin-top: 2px;
}

/* Footer */
footer {
  background: #050809;
  color: #D1CCC0;
  padding: 60px 6% 24px;
  font-size: 13px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-brand-col .brand {
  margin-bottom: 12px;
}

.brand-stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-logo-emblem {
  height: 52px;
  width: auto;
  mix-blend-mode: screen;
  object-fit: contain;
}

.footer-logo-text {
  height: 26px;
  width: auto;
  mix-blend-mode: screen;
  object-fit: contain;
}

.footer-tagline {
  margin-top: 12px;
  font-size: 13px;
  color: #9E988C;
}

.footer-col b {
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 18px;
}

.footer-col a {
  color: var(--text-light-muted);
  display: block;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold-accent);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-light-muted);
}

.subscribe-input-wrap {
  display: flex;
  border: 1px solid #33383B;
  border-radius: 6px;
  overflow: hidden;
  background: #121618;
}

.subscribe-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  color: #FFFFFF;
  font-size: 13px;
  outline: none;
}

.subscribe-input-wrap button {
  border: none;
  background: var(--gold-primary);
  color: #000;
  padding: 0 18px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

.subscribe-input-wrap button:hover {
  background: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #7E786D;
  font-size: 12px;
}

/* Mobile & Tablet Responsiveness */
/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .about-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-image-col img {
    height: 300px;
  }
  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-emblem-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Top Bar */
  .top-bar-right {
    display: none;
  }
  .top-bar-container {
    justify-content: center;
    font-size: 11px;
  }

  /* Sticky Header & Mobile Menu Drawer */
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-container {
    height: 68px;
    padding: 0 4%;
  }
  .brand-logo-img {
    height: 42px;
  }
  .brand-text-img {
    height: 24px;
  }
  .icons {
    gap: 12px;
  }
  nav {
    display: none;
  }
  .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold-accent);
    color: var(--gold-light);
    width: 38px;
    height: 38px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .menu:hover {
    background: var(--gold-primary);
    color: #000000;
  }
  nav.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #0A0E10;
    padding: 16px 6% 24px;
    gap: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85);
    z-index: 999;
  }
  nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    text-align: left;
    color: #E6E1D8;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 36px 5% 24px;
  }
  .hero-slides {
    inset: 0;
  }
  .hero-overlay {
    background: linear-gradient(to bottom, rgba(8, 12, 14, 0.85) 0%, rgba(8, 12, 14, 0.65) 60%, rgba(8, 12, 14, 0.95) 100%);
  }
  .hero-content {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hero-bottom {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-features {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  .hero-script-tag {
    display: none;
  }
  .hero-slider-nav {
    width: 100%;
    justify-content: flex-end;
  }

  /* Light Sections General Padding */
  .light {
    padding: 42px 5%;
  }
  .section-header {
    margin-bottom: 24px;
  }
  .section-header h2 {
    font-size: 26px;
  }

  /* Category Slider */
  .categories {
    gap: 14px;
    padding: 6px 0;
  }
  .category-card {
    flex: 0 0 170px;
    min-width: 160px;
    padding: 16px 12px;
    border-radius: 14px;
  }
  .category-img-wrap {
    height: 140px;
    margin-bottom: 12px;
  }
  .category-card b {
    font-size: 15px;
  }

  /* About Us Section */
  .about-wrapper {
    padding: 42px 5%;
  }
  .about-image-col img {
    height: 240px;
    border-radius: 12px;
  }
  .about-content-col h2 {
    font-size: 24px;
  }
  .about-content-col p {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .about-feature-box {
    padding: 12px 14px;
    gap: 12px;
  }

  /* Featured Products Slider */
  .product-grid {
    gap: 14px;
    padding: 6px 0;
  }
  .product-card {
    flex: 0 0 230px;
    min-width: 220px;
    border-radius: 12px;
  }
  .product-img-wrap {
    height: 180px;
  }
  .product-info {
    padding: 14px 12px 16px;
  }
  .product-info h3 {
    font-size: 15px;
  }
  .price {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .add-to-cart-btn {
    padding: 9px 0;
    font-size: 12px;
  }
  .product-slider-controls {
    margin-top: 18px;
    gap: 14px;
  }
  .slider-arrow-btn {
    width: 38px;
    height: 38px;
  }

  /* Instagram Reels Section */
  .instagram {
    padding: 42px 5%;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .instagram-left {
    width: 100%;
  }
  .instagram-left h2 {
    font-size: 26px;
  }
  .reels-slider-wrapper {
    width: 100%;
  }
  .reels {
    width: 100%;
    gap: 12px;
  }
  .reel-card {
    flex: 0 0 150px;
    height: 200px;
    border-radius: 10px;
  }

  /* Customer Reviews Section */
  .reviews {
    padding: 42px 5%;
  }
  .reviews-header-container {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }
  .reviews-left-col {
    width: 100%;
    text-align: center;
  }
  .reviews-left-col h2 {
    font-size: 26px;
  }
  .reviews-right-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .reviews-slider-wrapper {
    width: 100%;
  }
  .reviews-grid {
    gap: 10px;
    padding: 6px 0;
    width: 100%;
  }
  .review-card {
    flex: 0 0 calc(50% - 5px);
    width: calc(50% - 5px);
    min-width: 0;
    padding: 14px 10px;
    gap: 8px;
    border-radius: 12px;
  }
  .review-avatar-img {
    width: 36px;
    height: 36px;
  }
  .review-content b {
    font-size: 13px;
  }
  .stars {
    font-size: 11px;
  }
  .review-content p {
    font-size: 11px;
    line-height: 1.45;
  }
  .reviews-nav-controls {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px auto 0;
    gap: 12px;
    text-align: center;
  }
  .reviews-nav-btn {
    width: 38px;
    height: 38px;
  }

  /* CTA Banner */
  .cta-content-col {
    padding: 30px 20px;
  }
  .cta-content-col h2 {
    font-size: 22px;
  }
  .cta-emblem-col {
    padding: 24px 20px;
  }

  /* Footer */
  footer {
    padding: 42px 5% 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    row-gap: 28px;
    text-align: center;
  }
  .footer-brand-col {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .brand-stacked {
    align-items: center;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-info {
    justify-content: center;
  }
  .subscribe-input-wrap {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 64px;
    padding: 0 3%;
  }
  .brand-logo-img {
    height: 38px;
  }
  .brand-text-img {
    height: 22px;
  }
  .icons {
    gap: 8px;
  }
  .icon-btn {
    padding: 2px;
  }

  .hero h1 {
    font-size: 25px;
  }
  .hero-description {
    font-size: 12px;
  }
  .section-header h2 {
    font-size: 22px;
  }

  .category-card {
    flex: 0 0 145px;
    min-width: 140px;
    padding: 14px 10px;
  }
  .category-img-wrap {
    height: 120px;
  }
  .category-card b {
    font-size: 13px;
  }

  .product-card {
    flex: 0 0 200px;
    min-width: 190px;
  }
  .product-img-wrap {
    height: 160px;
  }
  .product-info h3 {
    font-size: 13px;
  }

  .reel-card {
    flex: 0 0 135px;
    height: 180px;
  }

  .review-card {
    flex: 0 0 calc(50% - 4px);
    width: calc(50% - 4px);
    padding: 12px 8px;
    gap: 6px;
  }
  .review-avatar-img {
    width: 30px;
    height: 30px;
  }
  .review-content b {
    font-size: 11px;
  }
  .review-content p {
    font-size: 10px;
    line-height: 1.4;
  }

  .slider-control-label,
  .reviews-control-label {
    font-size: 10px;
    letter-spacing: 0.8px;
  }

  .account-modal-card {
    padding: 22px 16px 16px;
    border-radius: 14px;
  }
  .preloader-card {
    padding: 20px 15px;
  }
  .preloader-ring-wrapper {
    width: 110px;
    height: 110px;
  }
  .preloader-logo-wrap {
    width: 64px;
    height: 64px;
  }
  .preloader-text-img {
    height: 36px;
  }
}

/* ==========================================
   Icon Animations & Jewellery SVG Motifs
   ========================================== */

/* Keyframes */
@keyframes iconSpinZoom {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.28) rotate(-15deg); }
  100% { transform: scale(1.1) rotate(0deg); }
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.28); }
  45% { transform: scale(1.05); }
  70% { transform: scale(1.2); }
}

@keyframes accountBounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-4px) scale(1.15); }
  80% { transform: translateY(1px); }
  100% { transform: translateY(0) scale(1.08); }
}

@keyframes cartWobble {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg) scale(1.15); }
  40% { transform: rotate(10deg) scale(1.15); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(4deg); }
}

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

@keyframes sparkleRotate {
  0% { transform: rotate(0deg) scale(1); opacity: 0.85; }
  50% { transform: rotate(180deg) scale(1.3); opacity: 1; filter: drop-shadow(0 0 4px #E5C672); }
  100% { transform: rotate(360deg) scale(1); opacity: 0.85; }
}

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes starGlow {
  0%, 100% { opacity: 0.9; text-shadow: 0 0 2px rgba(212, 175, 55, 0.4); }
  50% { opacity: 1; text-shadow: 0 0 8px rgba(229, 198, 114, 0.9); }
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(201, 155, 61, 0.4); }
  50% { transform: scale(1.22); box-shadow: 0 0 8px rgba(229, 198, 114, 0.8); }
}

/* Header Action Icons Animations */
.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.icon-btn:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.icon-btn .anim-icon {
  transition: all 0.3s ease;
}

.search-icon-btn:hover .search-svg {
  animation: iconSpinZoom 0.5s ease forwards;
  stroke: var(--gold-light);
}

.wishlist-icon-btn:hover .wishlist-svg {
  animation: heartBeat 0.8s infinite ease-in-out;
  stroke: #E25555;
  fill: rgba(226, 85, 85, 0.25);
}

.account-icon-btn:hover .account-svg {
  animation: accountBounce 0.5s ease forwards;
  stroke: var(--gold-light);
}

.cart-icon-btn:hover .cart-svg {
  animation: cartWobble 0.6s ease forwards;
  stroke: var(--gold-light);
}

.cart-badge {
  animation: badgePulse 2.5s infinite;
}

/* Top Bar Social & Contact Icons Animations */
.top-bar-contact a svg {
  transition: transform 0.3s ease;
  animation: floatIcon 3s infinite ease-in-out;
}

.top-bar-contact a:hover svg {
  transform: scale(1.25) rotate(-10deg);
  stroke: var(--gold-light);
}

.social-links a svg {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), stroke 0.3s;
}

.social-links a:hover svg {
  transform: scale(1.3) rotate(12deg);
  stroke: var(--gold-accent);
}

/* Feature Icons (Hero & About Section) */
.feature-icon, .about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-icon svg, .about-feature-icon svg {
  animation: floatIcon 3.5s infinite ease-in-out;
  transition: transform 0.3s;
}

.feature-item:hover .feature-icon,
.about-feature-box:hover .about-feature-icon {
  background: var(--gold-primary);
  border-color: var(--gold-light);
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 16px rgba(201, 155, 61, 0.45);
}

.feature-item:hover .feature-icon svg,
.about-feature-box:hover .about-feature-icon svg {
  stroke: #0A0E10;
}

/* Product Card Wishlist Heart & Add To Cart Icons */
.wishlist-btn {
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  transform: scale(1.2);
  background: #FFFFFF;
}

.wishlist-btn:hover svg {
  animation: heartBeat 0.8s infinite ease-in-out;
  color: #E25555;
  stroke: #E25555;
}

.add-to-cart-btn svg {
  transition: transform 0.3s ease;
}

.add-to-cart-btn:hover svg {
  transform: translateX(4px) scale(1.15) rotate(-6deg);
}

/* Play Overlay Pulse Animation */
.play-overlay {
  animation: playPulse 2s infinite;
  transition: all 0.3s ease;
}

.reel-card:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-light);
}

/* Star Rating Shimmer */
.stars {
  animation: starGlow 2.5s infinite ease-in-out;
}

/* Contact Info Icons in Footer */
.contact-info svg {
  transition: transform 0.3s ease;
  animation: floatIcon 3s infinite ease-in-out;
}

.contact-info:hover svg {
  transform: scale(1.25) rotate(10deg);
  stroke: var(--gold-light);
}

/* Jewellery Sparkle SVGs & Filigree Ornament Dividers */
.jewellery-sparkle-icon {
  display: inline-block;
  vertical-align: middle;
  animation: sparkleRotate 4s infinite linear;
  margin: 0 6px;
}

.jewellery-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0 14px;
}

.jewellery-divider svg {
  max-width: 100%;
  height: auto;
}

/* ==========================================
   Expandable Search Bar Dropdown
   ========================================== */
.search-bar-dropdown {
  background: #06090A;
  border-bottom: 1px solid var(--border-dark);
  padding: 0 4%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.search-bar-dropdown.open {
  max-height: 140px;
  padding: 16px 4% 18px;
  opacity: 1;
}

.search-bar-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #111518;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 30px;
  padding: 6px 18px;
  gap: 12px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.3);
}

.search-bar-container:fill-available,
.search-bar-container:focus-within {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(201, 155, 61, 0.25);
}

.search-bar-icon {
  flex-shrink: 0;
}

#site-search-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  padding: 8px 0;
}

#site-search-input::placeholder {
  color: #8C867A;
}

.search-bar-close {
  background: transparent;
  border: none;
  color: #A8A297;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: all 0.2s;
}

.search-bar-close:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}

.search-quick-tags {
  max-width: 900px;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-light-muted);
}

.search-tag-btn {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}

.search-tag-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

/* ==========================================
   Account Login / Register Modal Popup
   ========================================== */
.account-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 6, 7, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.account-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.account-modal-card {
  background: #0D1113;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  padding: 32px 28px 24px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(201, 155, 61, 0.15);
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.account-modal-overlay.active .account-modal-card {
  transform: translateY(0) scale(1);
}

.account-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #A8A297;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.account-modal-close:hover {
  background: #E25555;
  color: #FFFFFF;
  border-color: #E25555;
}

.account-modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.account-modal-logo {
  height: 46px;
  width: auto;
  mix-blend-mode: screen;
  margin-bottom: 8px;
}

.account-modal-header h3 {
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.account-modal-header p {
  font-size: 12px;
  color: var(--text-light-muted);
}

.account-modal-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.modal-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: #9E988C;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.25s;
}

.modal-tab.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-accent);
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 12px;
  color: #D1CCC0;
  font-weight: 500;
}

.form-group input {
  background: #151A1D;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  color: #FFFFFF;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(201, 155, 61, 0.2);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #9E988C;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.forgot-pass {
  color: var(--gold-primary);
  text-decoration: none;
}

.forgot-pass:hover {
  text-decoration: underline;
}

.account-submit-btn {
  width: 100%;
  margin-top: 6px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, #D4AF37 0%, #C99B3D 100%);
  color: #080C0E;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.account-submit-btn:hover {
  background: linear-gradient(135deg, #E5C672 0%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.account-modal-footer {
  margin-top: 18px;
  text-align: center;
  font-size: 11px;
  color: #7E786D;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

/* ==========================================================================
   Featured Products Bottom Navigation Controls (Arrow Buttons)
   ========================================================================== */
.product-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.product-slider-controls .slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #D4AF37;
  color: #B5862B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(181, 134, 43, 0.15);
  transition: all 0.25s ease;
}

.product-slider-controls .slider-arrow-btn:hover {
  background: linear-gradient(135deg, #E5C672 0%, #D4AF37 50%, #B5862B 100%);
  color: #FFFFFF;
  border-color: #B5862B;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 18px rgba(181, 134, 43, 0.35);
}

.product-slider-controls .slider-arrow-btn:active {
  transform: translateY(0) scale(0.96);
}

.product-slider-controls .slider-control-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C7B65;
}

/* ==========================================================================
   Fullscreen Luxury Loading Preloader Overlay
   ========================================================================== */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #070A0C;
  background: radial-gradient(circle at center, #111619 0%, #06090A 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 30px;
  max-width: 420px;
  width: 90%;
}

.preloader-mandala-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: pulseGlow 3s infinite ease-in-out;
  pointer-events: none;
}

.preloader-ring-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spinGoldRing 4s linear infinite;
}

.preloader-ring-svg .ring-bg {
  fill: none;
  stroke: rgba(212, 175, 55, 0.15);
  stroke-width: 3;
}

.preloader-ring-svg .ring-spin {
  fill: none;
  stroke: url(#goldPreloaderGrad);
  stroke-width: 4;
  stroke-dasharray: 402;
  stroke-dashoffset: 120;
  stroke-linecap: round;
  animation: dashCycle 2.5s ease-in-out infinite alternate;
}

.preloader-logo-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-accent);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  z-index: 2;
  background: #090C0E;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-text-wrap {
  margin-bottom: 12px;
  z-index: 2;
}

.preloader-text-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.preloader-tagline-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  z-index: 2;
}

.preloader-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.preloader-sparkle {
  animation: sparkleRotate 3s ease-in-out infinite;
}

.preloader-progress-track {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.preloader-progress-bar {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #B5862B, #E5C672, #FFFFFF, #E5C672, #B5862B);
  background-size: 200% 100%;
  border-radius: 10px;
  animation: shimmerBar 1.8s linear infinite;
}

@keyframes spinGoldRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dashCycle {
  0% { stroke-dashoffset: 300; }
  100% { stroke-dashoffset: 40; }
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

@keyframes sparkleRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

@keyframes shimmerBar {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   COMTRANSE TECHNOLOGY Credit Styling (Footer, Preloader, Login Modal)
   ========================================================================== */
.comtranse-brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.com-pink {
  color: #E91E63; /* Dark Pink */
  font-weight: 800;
}

.transe-blue {
  color: #0288D1; /* Dark Sky Blue */
  font-weight: 800;
}

.preloader-credit {
  margin-top: 24px;
  font-size: 12px;
  color: #9E988C;
  z-index: 2;
  letter-spacing: 0.3px;
}

.modal-credit-tag {
  margin-top: 6px;
  font-size: 11px;
  color: #8C867A;
}

/* ==========================================================================
   Luxury Pop Reveal Animation for Heading Title Text Elements
   ========================================================================== */
.pop-reveal,
.text-reveal {
  display: inline-block;
  vertical-align: top;
  line-height: 1.25;
  padding-bottom: 2px;
}

.pop-reveal-inner,
.text-reveal-inner {
  display: inline-block;
  transform: scale(0.35) translateY(40px);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

/* Trigger pop reveal animation when container or element has .aos-animate */
.aos-animate .pop-reveal-inner,
.pop-reveal.aos-animate .pop-reveal-inner,
[data-aos].aos-animate .pop-reveal-inner,
.aos-animate .text-reveal-inner,
.text-reveal.aos-animate .text-reveal-inner,
[data-aos].aos-animate .text-reveal-inner {
  transform: scale(1) translateY(0%);
  opacity: 1;
}

.pop-reveal-delay-1,
.text-reveal-delay-1 {
  transition-delay: 0.18s;
}

.pop-reveal-delay-2,
.text-reveal-delay-2 {
  transition-delay: 0.35s;
}

/* Pop Reveal for Kicker Badges & Taglines */
.kicker,
.kicker-lined {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  will-change: transform, opacity;
}

[data-aos]:not(.aos-animate) .kicker,
[data-aos]:not(.aos-animate) .kicker-lined {
  transform: scale(0.7) translateY(15px);
  opacity: 0;
}

[data-aos].aos-animate .kicker,
[data-aos].aos-animate .kicker-lined {
  transform: scale(1) translateY(0);
  opacity: 1;
}
