/* ============================================================
   KANAKA JEWELS — style.css
   Pastel Gold Jewellery Website
   ============================================================ */

/* ──────────────────────────────────────────
   1. CSS VARIABLES (colour palette)
────────────────────────────────────────── */
:root {
  /* Pastels & Background */
  --cream:        #FDF8F0;
  --blush:        #F7E8DD;
  --rose:         #F0D5C8;
  --petal:        #EAC9BB;
  --white:        #FFFBF4;

  /* Gold Shades */
  --gold:         #C9963A;
  --gold-mid:     #B8832A;
  --gold-dark:    #9A6B1E;
  --gold-pale:    #F5E9C8;
  --gold-shimmer: #EEDFA0;

  /* Accent Pastels */
  --sage:         #C5D4BF;
  --lavender:     #D8CEE8;
  --dusty-rose:   #D9ABAB;
  --sky:          #C8DCE8;

  /* Typography */
  --text-dark:    #2A1808;
  --text-mid:     #5E3A20;
  --text-soft:    #8C6040;
  --text-muted:   #B0896A;

  /* Shadows */
  --shadow-gold:  rgba(201, 150, 58, 0.18);
  --shadow-soft:  rgba(42, 24, 8, 0.08);
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ──────────────────────────────────────────
   3. CUSTOM CURSOR
────────────────────────────────────────── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
}

/* ──────────────────────────────────────────
   4. SCROLL PROGRESS BAR
────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-shimmer), var(--gold), var(--gold-dark));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ──────────────────────────────────────────
   5. NAVIGATION
────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(253, 248, 240, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 150, 58, 0.15);
  transition: all 0.4s ease;
}

nav.scrolled {
  padding: 0.7rem 2.5rem;
  box-shadow: 0 4px 30px rgba(42, 24, 8, 0.07);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-words {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  font-weight: 600;
}

.logo-tag {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

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

/* WhatsApp Nav Button */
.nav-wa {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 100px;
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-wa {
  color: #25D366 !important;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
}

/* ──────────────────────────────────────────
   6. GOLD RATE TICKER
────────────────────────────────────────── */
.ticker {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-mid));
  color: #fff;
  padding: 0.55rem 0;
  overflow: hidden;
  margin-top: 74px;
}

.ticker-wrap {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  padding: 0 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.tick-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────
   7. HERO SECTION
────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 4rem;
  background: radial-gradient(ellipse at 60% 40%, #F0D5C8 0%, #F7E8DD 35%, #FDF8F0 70%, #EAC9BB 100%);
}

/* Canvas background */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  pointer-events: none;
}

/* Sparkle dots */
.sparkle {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  animation: sparklePulse var(--dur, 3s) ease-in-out infinite;
}

@keyframes sparklePulse {
  0%, 100% { transform: scale(1) translateY(0); opacity: var(--op, 0.4); }
  50%       { transform: scale(1.6) translateY(-8px); opacity: 0.8; }
}

/* Floating jewellery circles */
.jewel-float {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(42, 24, 8, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.7);
  animation: floatUpDown ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-14px) rotate(3deg); }
}

.jf1 { width: 120px; height: 120px; top: 8%;  left: 8%;  animation-duration: 4s;   animation-delay: 0s; }
.jf2 { width: 90px;  height: 90px;  top: 55%; left: 3%;  animation-duration: 5s;   animation-delay: 1s; }
.jf3 { width: 100px; height: 100px; bottom: 10%; left: 18%; animation-duration: 3.5s; animation-delay: 0.5s; }

.jewel-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Orbiting ring */
.orbit-wrap {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-48%);
  width: min(45vw, 480px);
  height: min(45vw, 480px);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 150, 58, 0.2);
  animation: orbitSpin 20s linear infinite;
}

.orbit-ring:nth-child(2) {
  inset: 15%;
  border-color: rgba(201, 150, 58, 0.3);
  animation-duration: 15s;
  animation-direction: reverse;
}

.orbit-ring:nth-child(3) {
  inset: 30%;
  border-color: rgba(201, 150, 58, 0.4);
  animation-duration: 10s;
}

@keyframes orbitSpin { to { transform: rotate(360deg); } }

.orbit-gem {
  position: absolute;
  width: 18px;
  height: 18px;
  animation: gemRotate 20s linear infinite;
}

.orbit-gem::before {
  content: '◆';
  font-size: 1rem;
  color: var(--gold);
  position: absolute;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 6px var(--gold));
}

.orbit-gem2 { animation-duration: 15s; animation-direction: reverse; }
.orbit-gem2::before { content: '◈'; color: var(--dusty-rose); font-size: 1.1rem; }
.orbit-gem3 { animation-duration: 10s; }
.orbit-gem3::before { content: '◇'; color: var(--gold-shimmer); font-size: 0.85rem; }

@keyframes gemRotate {
  from { transform: rotate(0deg)   translateX(min(22.5vw, 240px)) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(min(22.5vw, 240px)) rotate(-360deg); }
}

/* Centre orbit image */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 24, 8, 0.2);
  border: 5px solid rgba(255, 255, 255, 0.7);
}

.orbit-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero text */
.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 680px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 150, 58, 0.35);
  background: rgba(245, 233, 200, 0.5);
  backdrop-filter: blur(8px);
  color: var(--gold-dark);
  padding: 0.4rem 1.3rem;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeSlideUp 0.9s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  color: var(--text-dark);
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.9s ease 0.15s both;
}

.gold-word {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-shimmer));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.hero-loc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.9s ease 0.45s both;
}

.hero-loc i {
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.6s both;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 8px 30px var(--shadow-gold);
  transition: all 0.35s ease;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201, 150, 58, 0.35);
}

.btn-soft {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s ease;
  display: inline-block;
  background: rgba(245, 233, 200, 0.3);
}

.btn-soft:hover {
  background: var(--gold-pale);
  transform: translateY(-3px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeSlideUp 1s ease 1.2s both;
}

.scroll-cue .mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--text-muted);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-cue .mouse span {
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDrop 1.6s ease infinite;
}

@keyframes scrollDrop {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ──────────────────────────────────────────
   8. MARQUEE STRIP
────────────────────────────────────────── */
.marquee-strip {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201, 150, 58, 0.2);
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
  padding: 0.9rem 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  padding: 0 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.marquee-item i {
  font-size: 0.7rem;
  color: var(--gold);
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────
   9. SECTION COMMONS
────────────────────────────────────────── */
section {
  padding: 6rem 2rem;
  position: relative;
}

.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 150, 58, 0.3);
  max-width: 50px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.section-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ──────────────────────────────────────────
   10. STATS / LEGACY COUNTERS
────────────────────────────────────────── */
.stats {
  background: linear-gradient(135deg, #2A1808 0%, #4A2A10 50%, #3A2010 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

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

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.stat-card { text-align: center; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--gold-shimmer);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-num .suffix {
  font-size: 0.6em;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

/* ──────────────────────────────────────────
   11. COLLECTIONS GRID
────────────────────────────────────────── */
.collections {
  background: var(--white);
}

.collections-head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.collections-head .section-label {
  justify-content: center;
}

.collections-head .section-label::before,
.collections-head .section-label::after {
  max-width: 80px;
}

.collections-head .section-desc {
  margin: 0 auto;
  text-align: center;
}

/* Filter buttons */
.collection-filters {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid rgba(201, 150, 58, 0.3);
  background: transparent;
  color: var(--text-soft);
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--blush);
  box-shadow: 0 4px 20px rgba(42, 24, 8, 0.07);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(42, 24, 8, 0.14);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

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

.product-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--gold);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 24, 8, 0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.2rem;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  background: rgba(255, 255, 255, 0.95);
  color: var(--gold-dark);
  padding: 0.5rem 1.4rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transform: translateY(8px);
  transition: transform 0.3s;
}

.product-card:hover .product-overlay a {
  transform: translateY(0);
}

.product-info {
  padding: 1.1rem 1.2rem 1.3rem;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.product-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-karat {
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
}

/* ──────────────────────────────────────────
   12. CRAFT STORY SECTION
────────────────────────────────────────── */
.craft {
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 50%, var(--blush) 100%);
  padding: 7rem 2rem;
}

.craft-inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.craft-visual {
  position: relative;
  height: 500px;
}

.craft-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 80%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 24, 8, 0.18);
}

.craft-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(42, 24, 8, 0.18);
  border: 4px solid var(--white);
}

.craft-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-badge {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 8px 30px var(--shadow-gold);
  animation: badgePulse 3s ease infinite;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.craft-badge strong {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 8px 30px var(--shadow-gold); }
  50%       { box-shadow: 0 8px 50px rgba(201, 150, 58, 0.5); }
}

.craft-content .section-desc {
  margin-bottom: 1rem;
}

.craft-steps {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.craft-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.craft-step:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(6px);
}

.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-shimmer));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.step-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.step-text p {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ──────────────────────────────────────────
   13. GOLD PURITY GUIDE
────────────────────────────────────────── */
.purity-guide {
  background: var(--cream);
}

.purity-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.purity-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.purity-head .section-label {
  justify-content: center;
}

.purity-head .section-desc {
  margin: 0 auto;
  text-align: center;
}

.purity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.purity-card {
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}

.purity-card:hover {
  transform: translateY(-6px);
}

.pc-24 { background: linear-gradient(145deg, #F5E9C8, #EEDFA0); box-shadow: 0 8px 30px rgba(201, 150, 58, 0.2); }
.pc-22 { background: linear-gradient(145deg, #F7E8DD, #EAC9BB); box-shadow: 0 8px 30px rgba(201, 150, 58, 0.15); }
.pc-18 { background: linear-gradient(145deg, #EDD4D4, #D9ABAB); box-shadow: 0 8px 30px rgba(180, 120, 120, 0.15); }
.pc-14 { background: linear-gradient(145deg, #D8CEE8, #C5B8D4); box-shadow: 0 8px 30px rgba(150, 130, 180, 0.15); }

.purity-karat {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.pc-24 .purity-karat { color: #9A6B1E; }
.pc-22 .purity-karat { color: #8C5A2A; }
.pc-18 .purity-karat { color: #8C4040; }
.pc-14 .purity-karat { color: #5A4A7A; }

.purity-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.purity-pct {
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-mid);
}

.purity-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.purity-fill {
  height: 100%;
  border-radius: 3px;
  background: rgba(42, 24, 8, 0.25);
  animation: fillBar 1.5s ease both;
  animation-play-state: paused;
}

@keyframes fillBar {
  from { width: 0%; }
}

.purity-desc {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ──────────────────────────────────────────
   14. TESTIMONIALS
────────────────────────────────────────── */
.testimonials {
  background: linear-gradient(135deg, var(--lavender) 0%, #EAD8F5 40%, var(--blush) 100%);
}

.test-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.test-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.test-head .section-label {
  justify-content: center;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.test-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(150, 120, 180, 0.1);
  transition: transform 0.35s;
}

.test-card:hover {
  transform: translateY(-5px);
}

.test-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-weight: 600;
  flex-shrink: 0;
}

.test-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.test-city {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Rating Summary */
.rating-summary {
  margin-top: 3rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.rating-item { text-align: center; }

.rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--text-dark);
  line-height: 1;
  font-weight: 700;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.rating-sub {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.rating-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.3rem;
}

.rating-divider {
  width: 1px;
  height: 60px;
  background: rgba(42, 24, 8, 0.12);
}

/* ──────────────────────────────────────────
   15. PRIVATE VIEWING CTA
────────────────────────────────────────── */
.private-viewing {
  background: linear-gradient(135deg, #2A1808, #3D2010, #4A2A10);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pv-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 150, 58, 0.2), transparent 70%);
  pointer-events: none;
}

.pv-orb1 { width: 400px; height: 400px; top: -100px; left: -100px; }
.pv-orb2 { width: 300px; height: 300px; bottom: -80px; right: -80px; }

.pv-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.pv-label {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-shimmer);
  margin-bottom: 1rem;
}

.pv-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pv-title em {
  font-style: italic;
  color: var(--gold-shimmer);
}

.pv-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.pv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 10px 40px var(--shadow-gold);
  transition: all 0.35s;
}

.pv-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(201, 150, 58, 0.45);
}

.pv-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.pv-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.pv-feat i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ──────────────────────────────────────────
   16. FIND US / MAP / CONTACT
────────────────────────────────────────── */
.find-us {
  background: var(--white);
}

.find-us-inner {
  max-width: 1150px;
  margin: 0 auto;
}

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--blush);
  border: 1px solid rgba(201, 150, 58, 0.12);
  transition: all 0.3s;
}

.contact-item:hover {
  background: var(--gold-pale);
  border-color: rgba(201, 150, 58, 0.3);
}

.ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-shimmer));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1rem;
}

.ci-text small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.ci-text a,
.ci-text span {
  font-size: 0.9rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.ci-text a:hover { color: var(--gold); }

.ci-sub {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  font-weight: 400 !important;
}

/* WhatsApp big button */
.wa-big {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
  transition: all 0.35s;
}

.wa-big:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.35);
}

.wa-big i { font-size: 1.4rem; }

.wa-big-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.wa-big-num {
  font-size: 0.75rem;
  opacity: 0.8;
  color: #fff;
}

/* Map */
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(42, 24, 8, 0.12);
  border: 4px solid var(--white);
  height: 500px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ──────────────────────────────────────────
   17. FOOTER
────────────────────────────────────────── */
footer {
  background: linear-gradient(135deg, #1E1008, #2A1808);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-shimmer);
  font-weight: 600;
  display: block;
}

.footer-brand-tag {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
}

.footer-about {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.1);
}

.s-insta { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.s-fb    { background: #1877F2; }
.s-yt    { background: #FF0000; }
.s-wa    { background: #25D366; }
.s-pin   { background: #E60023; }

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-shimmer);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-shimmer);
}

.footer-address {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-top: 0.5rem;
  list-style: none;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 1.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-copy span {
  color: var(--gold);
}

.footer-bis {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bis i {
  color: var(--gold);
}

/* ──────────────────────────────────────────
   18. WHATSAPP FLOAT BUTTON
────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.35s;
  animation: waPulse 2.5s ease infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: var(--text-dark);
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.75rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateX(5px);
  transition: all 0.3s;
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ──────────────────────────────────────────
   19. REVEAL ANIMATIONS (scroll-triggered)
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ──────────────────────────────────────────
   20. RESPONSIVE — TABLET (≤ 1024px)
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .craft-visual {
    height: 380px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  /* Hide animated orbit on tablet */
  .orbit-wrap { display: none; }
  .jf1, .jf2, .jf3 { display: none; }
}

/* ──────────────────────────────────────────
   21. RESPONSIVE — MOBILE (≤ 768px)
────────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0.9rem 1.2rem; }

  .nav-links,
  .nav-wa { display: none; }

  .hamburger { display: flex; }

  .hero-title { font-size: 2.8rem; }

  section { padding: 4.5rem 1.2rem; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .purity-cards { grid-template-columns: 1fr 1fr; }

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

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .craft-visual { height: 300px; }

  .map-wrap { height: 340px; }

  .rating-summary { gap: 1.5rem; }
}

/* ──────────────────────────────────────────
   22. RESPONSIVE — SMALL MOBILE (≤ 480px)
────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }

  .purity-cards { grid-template-columns: 1fr; }

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

  .stats-inner { grid-template-columns: 1fr 1fr; }

  .hero-btns { flex-direction: column; align-items: center; }

  .pv-features { gap: 1rem; }

  .rating-divider { display: none; }

  .rating-summary { flex-direction: column; gap: 1.5rem; }
}
