
:root {
  /* ── Core Palette ── */
  --bg:           #F5F5F5;        /* Pearl White — primary background    */
  --brand:        #2A1B38;        /* Deep Aubergine — primary brand       */
  --brand-deep:   #1A0F24;        /* Darker aubergine for depth           */
  --brand-mid:    #3D2854;        /* Mid aubergine for cards/surfaces     */
  --brand-soft:   #5C4070;        /* Lighter aubergine for hover states   */
  --accent:       #B87333;        /* Copper / Rose Gold — accent          */
  --accent-light: #D4956A;        /* Light copper for hover               */
  --accent-dark:  #8A5420;        /* Dark copper for deep accents         */
  --text:         #0F0F0F;        /* Onyx — primary text                  */
  --text-muted:   #6B5F78;        /* Muted aubergine-grey for body text   */
  --text-light:   #F5F5F5;        /* Light text on dark surfaces          */
  --surface:      #EDE8F5;        /* Soft lavender-white for cards        */
  --surface-2:    #E4DDF0;        /* Slightly deeper surface              */
  --border:       rgba(42,27,56,0.12);
  --border-accent:rgba(184,115,51,0.25);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  /* ── Motion ── */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: rgba(245,245,245,0.92);
  backdrop-filter: blur(10px);
  padding: 1.4rem 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

#mainNav.scrolled {
  background: rgba(42, 27, 56, 0.97);
  backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(184,115,51,0.2);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brand) !important;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition);
}

#mainNav.scrolled .navbar-brand {
  color: var(--accent-light) !important;
}

.brand-gem {
  color: var(--accent);
  font-size: 0.9em;
  margin-right: 4px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand) !important;
  padding: 0.4rem 0.6rem !important;
  transition: var(--transition);
  text-decoration: none;
}

#mainNav.scrolled .nav-link {
  color: rgba(245,245,245,0.8) !important;
}

.nav-link:hover { color: var(--accent) !important; }
#mainNav.scrolled .nav-link:hover { color: var(--accent-light) !important; }

.nav-icon { font-size: 1.1rem !important; position: relative; }

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

.navbar-toggler { border-color: rgba(42,27,56,0.3); }
#mainNav.scrolled .navbar-toggler { border-color: rgba(184,115,51,0.4); }

/* =============================================
   HERO
   ============================================= */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, #3a2050 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 30%, rgba(184,115,51,0.15) 0%, transparent 50%),
    radial-gradient(circle at 15% 70%, rgba(92,64,112,0.3) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(26,15,36,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  animation: fadeSlideUp 1s ease both;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,245,245,0.6);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.btn-primary-gem {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-gem:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,115,51,0.4);
}

.btn-ghost-gem {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(245,245,245,0.35);
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-ghost-gem:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.hero-stats { margin-top: 2rem; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.45);
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  background: rgba(245,245,245,0.12);
  align-self: stretch;
}

/* Hero Gem Orb Display */
.hero-gem-display {
  position: relative;
  width: 380px;
  height: 380px;
  margin-top: 5rem;
}

.gem-orb {
  position: absolute;
  border-radius: 50%;
  animation: gemFloat 6s ease-in-out infinite;
}

.gem-orb-1 {
  width: 260px; height: 260px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, rgba(184,115,51,0.2), rgba(184,115,51,0.03) 70%);
  border: 1px solid rgba(184,115,51,0.18);
  animation-delay: 0s;
}

.gem-orb-2 {
  width: 180px; height: 180px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 40% 40%, rgba(92,64,112,0.45), rgba(92,64,112,0.05) 70%);
  border: 1px solid rgba(92,64,112,0.3);
  animation-delay: -2s;
}

.gem-orb-3 {
  width: 100px; height: 100px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, rgba(212,149,106,0.7), rgba(184,115,51,0.2) 70%);
  border: 1px solid rgba(184,115,51,0.5);
  animation-delay: -4s;
}

.gem-center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--accent-light);
  animation: gemPulse 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(184,115,51,0.7);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245,245,245,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--brand);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

/* =============================================
   DEALS SECTION
   ============================================= */
.deals-section { background: var(--surface); }

.deal-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}

.deal-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(42,27,56,0.12);
}

.deal-card-large {
  height: 100%;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-deep) 100%);
}

.deal-card-small {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 2rem;
  background: var(--surface-2);
}

.deal-card-emerald {
  background: linear-gradient(145deg, #f0ece8 0%, #ede6dd 100%);
}

.deal-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  text-transform: uppercase;
}

.deal-gem-icon { font-size: 3rem; line-height: 1; margin-bottom: 1rem; }
.deal-card-small .deal-gem-icon { font-size: 2.4rem; margin-bottom: 0; }

.deal-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.deal-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brand);
  margin-bottom: 0.3rem;
}

.deal-card p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.2rem; }
.deal-card-large p { color: rgba(245,245,245,0.6); }
.deal-card-small p { margin-bottom: 0.6rem; }

.btn-deal {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.7rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-deal:hover { background: var(--accent-light); color: #fff; transform: translateY(-2px); }

.btn-deal-sm {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.btn-deal-sm:hover { border-color: var(--accent); background: rgba(184,115,51,0.08); color: var(--accent-dark); }

/* Countdown Timer */
.deal-timer-bar {
  background: var(--brand);
  border-radius: 4px;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.timer-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timer-blocks { display: flex; align-items: center; gap: 0.5rem; }

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}

.timer-block span {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-light);
  line-height: 1;
}

.timer-block small {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
  margin-top: 0.2rem;
}

.timer-sep {
  font-size: 1.8rem;
  color: rgba(184,115,51,0.35);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1rem;
}

/* =============================================
   CATEGORIES
   ============================================= */
.categories-section { background: var(--bg); }

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--brand);
  background: #fff;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(42,27,56,0.05);
}

.category-card:hover {
  border-color: var(--border-accent);
  background: var(--brand);
  color: var(--text-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(42,27,56,0.18);
}

.cat-gem {
  font-size: 2rem;
  color: var(--gem-color);
  text-shadow: 0 0 20px var(--gem-color);
  transition: var(--transition);
}

.category-card:hover .cat-gem {
  transform: scale(1.15);
  text-shadow: 0 0 30px var(--gem-color);
  filter: brightness(1.3);
}

.category-card span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 2px 16px rgba(42,27,56,0.06);
}

.testimonial-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42,27,56,0.1);
}

.testimonial-card-featured {
  background: var(--brand);
  border-color: rgba(184,115,51,0.35);
  box-shadow: 0 8px 40px rgba(42,27,56,0.2);
}

.testimonial-card-featured .testi-text  { color: rgba(245,245,245,0.82); }
.testimonial-card-featured .testi-author strong { color: var(--text-light); }
.testimonial-card-featured .testi-author small  { color: rgba(245,245,245,0.5); }
.testimonial-card-featured .testi-stars { color: var(--accent-light); }
.testimonial-card-featured .testi-quote { color: var(--accent-light); opacity: 0.55; }

.testi-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.45;
}

.testi-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testi-author { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1rem; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-mid);
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-card-featured .testi-avatar { background: var(--accent-dark); }

.testi-author strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--brand); }
.testi-author small  { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }
.testi-stars         { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.1em; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--brand);
  border-top: 1px solid rgba(184,115,51,0.15);
  border-bottom: 1px solid rgba(184,115,51,0.15);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245,245,245,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}

.trust-item:hover { color: var(--accent-light); }
.trust-item i { font-size: 1.4rem; color: var(--accent); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--brand-deep);
  border-top: 1px solid rgba(184,115,51,0.15);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-desc { font-size: 0.82rem; line-height: 1.7; color: rgba(245,245,245,0.42); }

.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: rgba(245,245,245,0.38); font-size: 1.1rem; transition: var(--transition); text-decoration: none; }
.footer-socials a:hover { color: var(--accent-light); }

.footer-heading { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; font-weight: 500; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: rgba(245,245,245,0.42); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--text-light); }

.newsletter-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,115,51,0.2);
  color: var(--text-light);
  border-radius: 0;
  font-size: 0.82rem;
  padding: 0.7rem 1rem;
}

.newsletter-input:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent);
  color: var(--text-light);
  box-shadow: none;
}

.newsletter-input::placeholder { color: rgba(245,245,245,0.28); }

.btn-newsletter {
  background: var(--accent);
  color: #fff;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  white-space: nowrap;
  border: none;
  transition: var(--transition);
}

.btn-newsletter:hover { background: var(--accent-light); color: #fff; }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.75rem;
  color: rgba(245,245,245,0.28);
}

.footer-bottom a { color: rgba(245,245,245,0.28); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent-light); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gemFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
  33%       { transform: translate(-50%, -52%) rotate(120deg); }
  66%       { transform: translate(-50%, -48%) rotate(240deg); }
}

@keyframes gemPulse {
  0%, 100% { opacity: 1;   transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1;   height: 40px; }
  50%       { opacity: 0.3; height: 24px; }
}

@keyframes particleDrift {
  0%   { transform: translateY(0) translateX(0) scale(1);     opacity: 0.5; }
  50%  { transform: translateY(-60px) translateX(20px) scale(1.2); opacity: 0.2; }
  100% { transform: translateY(-120px) translateX(-10px) scale(0.8); opacity: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hero-content { padding-top: 7rem; }
  .hero-title { font-size: 2.4rem; }
  .deal-card-small { flex-direction: column; gap: 0.8rem; text-align: center; }
  .deal-card-large { min-height: 260px; }
  .deal-timer-bar { gap: 1rem; }
  .timer-block span { font-size: 1.8rem; }
}
