/* Sri Kausalya Jewellery - Main Stylesheet */
/* Deep Red + Gold Luxury Theme */

:root {
  --gold:   #C9A84C;
  --gold2:  #E8C96A;
  --gold3:  #F5E0A0;
  --gold4:  #A07830;
  --red:    #6B0F1A;
  --red2:   #8B1A2A;
  --red3:   #3D0008;
  --dark:   #1A0A0E;
  --cream:  #FDF6E3;
  --cream2: #F5EDD8;
  --text:   rgba(253,246,227,0.85);
  --muted:  rgba(253,246,227,0.45);
}

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

body {
  font-family: 'Cormorant Garamond', serif;
  background: #0d0408;
  color: var(--cream);
  cursor: none;
  overflow-x: hidden;
}

/* ---- CURSOR ---- */
.cursor {
  position: fixed; width: 20px; height: 20px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s, height .25s, border-color .25s;
  mix-blend-mode: screen;
}
.cursor.hover { width: 40px; height: 40px; border-color: var(--gold2); }
.cursor-dot {
  position: fixed; width: 4px; height: 4px;
  background: var(--gold2); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
}
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ---- BG CANVAS & OVERLAYS ---- */
#bgCanvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }
.noise-overlay {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette-overlay {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(13,4,8,.85) 100%);
}

/* ---- RATE TICKER ---- */
.rate-ticker {
  position: relative; z-index: 100;
  background: var(--red3); border-bottom: 1px solid rgba(201,168,76,.2);
  overflow: hidden; height: 30px; display: flex; align-items: center;
}
.ticker-inner {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: 11px; letter-spacing: 2px; color: var(--gold); font-family: 'Cinzel', serif;
}
.ticker-inner .sep { color: var(--gold2); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 500;
  background: rgba(13,4,8,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: background .3s;
}
.navbar.scrolled { background: rgba(13,4,8,.98); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem; height: 64px;
}
.nav-logo {
  font-family: 'Cinzel', serif; font-size: 1rem; letter-spacing: 3px;
  color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo-symbol { color: var(--gold2); font-size: .8rem; }
.nav-links {
  display: flex; align-items: center; gap: 0; list-style: none;
  margin-left: auto;
}
.nav-links a {
  display: block; padding: 8px 16px; font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-wa {
  display: flex !important; align-items: center; gap: 6px;
  background: #25D366 !important; color: white !important;
  padding: 8px 16px !important; border-radius: 4px;
  margin-left: 8px; transition: opacity .2s !important;
}
.nav-wa:hover { opacity: .88; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1px; background: var(--gold); transition: .3s; }

@media (max-width: 820px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links {
    position: fixed; top: 94px; left: 0; right: 0; bottom: 0;
    background: rgba(13,4,8,.98); flex-direction: column;
    align-items: center; justify-content: center; gap: 1rem;
    transform: translateX(100%); transition: transform .3s;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 14px; padding: 12px 24px; }
  .nav-wa { margin-left: 0 !important; }
}

/* ---- HERO ---- */
.hero {
  position: relative; z-index: 10;
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.hero-gem-stage {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; pointer-events: none;
}
.hero-gem-stage canvas { width: min(600px,90vw); height: min(600px,90vw); }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 8px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s .3s forwards;
}
.hero-title {
  font-family: 'Cinzel', serif; font-size: clamp(2.8rem,7vw,6.5rem);
  font-weight: 700; color: var(--cream); line-height: 1.05;
  opacity: 0; animation: fadeUp 1.2s .6s forwards;
}
.hero-title span {
  display: block; color: var(--gold2);
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 300; font-size: clamp(1.6rem,4vw,3.5rem); margin-top: .5rem;
}
.gold-rule {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto; opacity: 0; animation: fadeUp 1s 1s forwards;
}
.hero-sub {
  font-size: clamp(.9rem,2vw,1.2rem); color: var(--muted);
  letter-spacing: 3px; font-style: italic; font-weight: 300;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.hero-cta {
  display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.5rem; opacity: 0; animation: fadeUp 1s 1.5s forwards;
}
.btn-gold {
  padding: 13px 32px; border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold4), var(--gold));
  color: var(--dark); font-family: 'Cinzel', serif; font-size: 11px;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
  cursor: pointer; display: inline-block; transition: all .3s;
}
.btn-gold:hover { box-shadow: 0 0 28px rgba(201,168,76,.4); transform: translateY(-1px); }
.btn-outline {
  padding: 13px 32px; border: 1px solid rgba(201,168,76,.4);
  background: transparent; color: var(--gold); font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; display: inline-block; cursor: pointer; transition: all .3s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.07); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.scroll-line { width: 1px; height: 45px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }
.scroll-label { font-size: 9px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; }

/* ---- SECTION COMMON ---- */
section { position: relative; z-index: 10; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 8px; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 1rem; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.8rem,3.5vw,3rem); color: var(--cream); font-weight: 400; line-height: 1.25; }
.section-title em { color: var(--gold2); font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* ---- MARQUEE ---- */
.marquee-wrap {
  position: relative; z-index: 10;
  padding: 1.25rem 0; overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.15);
  background: var(--red3);
}
.marquee-inner { display: flex; gap: 3rem; animation: ticker 22s linear infinite; white-space: nowrap; }
.marquee-inner span { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; opacity: .7; }
.marquee-inner .dot { color: var(--gold2); opacity: 1; }

/* ---- PRODUCT GRID ---- */
.collections-section { padding: 5rem 2rem; background: linear-gradient(to bottom, #0d0408, var(--red3)); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1px; max-width: 1200px; margin: 0 auto; }
.product-card {
  position: relative; background: var(--red3); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer; display: block; text-decoration: none;
}
.product-card::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(13,4,8,.95) 0%, rgba(13,4,8,.3) 50%, transparent 100%);
  transition: opacity .5s;
}
.product-card:hover::before { opacity: .75; }
.product-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .8s cubic-bezier(.23,1,.32,1);
}
.product-gem { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; }
.product-gem canvas { transition: transform .8s cubic-bezier(.23,1,.32,1); }
.product-card:hover .product-img,
.product-card:hover .product-gem canvas { transform: scale(1.07); }
.product-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 1.5rem 1.25rem; transform: translateY(20px);
  transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.product-card:hover .product-info { transform: translateY(0); }
.product-cat { font-size: 9px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; margin-bottom: .35rem; font-family: 'Cinzel', serif; }
.product-name { font-family: 'Cinzel', serif; font-size: 1.15rem; color: var(--cream); font-weight: 600; margin-bottom: .3rem; }
.product-price { font-size: 1rem; color: var(--gold2); font-style: italic; margin-bottom: .75rem; }
.product-wa {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: #25D366; color: white;
  font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; border-radius: 3px;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s .1s, transform .3s .1s;
}
.product-card:hover .product-wa { opacity: 1; transform: translateY(0); }
.product-border { position: absolute; inset: 0; border: 1px solid transparent; z-index: 4; transition: border-color .4s; pointer-events: none; }
.product-card:hover .product-border { border-color: rgba(201,168,76,.3); }
.featured-badge {
  position: absolute; top: 1rem; right: 1rem; z-index: 5;
  background: linear-gradient(135deg, var(--gold4), var(--gold));
  color: var(--dark); font-family: 'Cinzel', serif; font-size: 9px;
  letter-spacing: 2px; padding: 4px 10px; text-transform: uppercase;
}

/* ---- ABOUT STRIP ---- */
.about-strip { padding: 5rem 2rem; background: var(--red3); }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width:700px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-visual { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1; }
.orbit { position: absolute; border: 1px solid rgba(201,168,76,.18); border-radius: 50%; animation: spin 20s linear infinite; }
.orbit:nth-child(1) { width: 90%; height: 90%; }
.orbit:nth-child(2) { width: 70%; height: 70%; animation-direction: reverse; animation-duration: 14s; border-color: rgba(201,168,76,.3); }
.orbit:nth-child(3) { width: 50%; height: 50%; border-color: rgba(201,168,76,.5); }
.about-gem { position: relative; z-index: 2; }
.about-text .tag { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 6px; color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem; display: block; }
.about-text h2 { font-family: 'Cinzel', serif; font-size: clamp(1.6rem,3vw,2.6rem); color: var(--cream); font-weight: 400; line-height: 1.3; margin-bottom: 1.25rem; }
.about-text h2 em { color: var(--gold2); font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.about-text p { color: var(--muted); font-size: 1.05rem; line-height: 1.95; font-style: italic; margin-bottom: 1.75rem; }
.stats-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { border-left: 1px solid var(--gold4); padding-left: 1rem; }
.stat-num { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--gold2); font-weight: 600; }
.stat-label { font-size: .7rem; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { padding: 5rem 2rem; background: linear-gradient(to bottom, var(--red3), #0d0408); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; max-width: 1100px; margin: 0 auto; }
.testimonial-card {
  background: rgba(61,0,8,.4); border: 1px solid rgba(201,168,76,.15);
  padding: 2rem 1.75rem; position: relative;
}
.testimonial-card::before { content: '"'; position: absolute; top: .75rem; left: 1.25rem; font-size: 5rem; color: rgba(201,168,76,.12); font-family: 'Cormorant Garamond', serif; line-height: 1; }
.testimonial-text { font-size: 1.05rem; color: var(--text); font-style: italic; line-height: 1.9; margin-bottom: 1.25rem; }
.testimonial-author { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }
.testimonial-stars { color: var(--gold2); font-size: .85rem; margin-bottom: .75rem; }

/* ---- CONTACT ---- */
.contact-section { padding: 5rem 2rem; background: #0d0408; }
.contact-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width:700px) { .contact-inner { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { color: var(--gold2); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.contact-item a { color: var(--gold2); text-decoration: none; }
.contact-item a:hover { color: var(--gold3); }
.contact-form h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: .5rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(61,0,8,.3); border: 1px solid rgba(201,168,76,.2);
  color: var(--cream); padding: 12px 14px; font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; outline: none; transition: border-color .25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }

/* ---- FOOTER ---- */
.site-footer { position: relative; z-index: 10; background: var(--red3); border-top: 1px solid rgba(201,168,76,.15); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
@media (max-width:900px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width:500px) { .footer-top { grid-template-columns: 1fr; } }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold); letter-spacing: 4px; margin-bottom: .75rem; }
.footer-tagline { font-style: italic; color: var(--muted); font-size: .95rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--muted); transition: color .25s; }
.footer-social a:hover { color: var(--gold); }
.footer-links h4 { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .25s; }
.footer-links a:hover { color: var(--gold2); }
.footer-contact h4 { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.footer-contact p { color: var(--muted); font-size: .9rem; margin-bottom: .5rem; line-height: 1.6; }
.footer-contact a { color: var(--gold2); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(201,168,76,.1); padding: 1.25rem 2rem; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.footer-made { font-style: italic; }

/* ---- WA FLOAT BUTTON ---- */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  background: #25D366; border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 20px; box-shadow: 0 4px 20px rgba(37,211,102,.3);
  text-decoration: none; transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.wa-label { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 1px; color: white; text-transform: uppercase; }
@media (max-width:500px) { .wa-label { display: none; } .wa-float { padding: 14px; } }

/* ---- PAGE HEADER ---- */
.page-header { padding: 5rem 2rem 3rem; text-align: center; position: relative; z-index: 10; }
.page-header h1 { font-family: 'Cinzel', serif; font-size: clamp(2rem,5vw,3.5rem); color: var(--cream); font-weight: 600; }
.page-header p { color: var(--muted); font-style: italic; font-size: 1.1rem; margin-top: .75rem; }
.breadcrumb { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }

/* ---- PRODUCT DETAIL ---- */
.product-detail { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; position: relative; z-index: 10; }
@media (max-width:700px) { .product-detail { grid-template-columns: 1fr; gap: 2rem; } }
.detail-images { display: grid; gap: 1px; }
.detail-main-img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--red3); }
.detail-thumbs { display: flex; gap: 1px; }
.detail-thumb { flex: 1; aspect-ratio: 1; object-fit: cover; cursor: pointer; opacity: .6; transition: opacity .2s; background: var(--red3); }
.detail-thumb.active { opacity: 1; outline: 1px solid var(--gold); }
.detail-info { display: flex; flex-direction: column; gap: 1.25rem; }
.detail-cat { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; }
.detail-name { font-family: 'Cinzel', serif; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--cream); font-weight: 600; line-height: 1.2; }
.detail-price { font-size: 1.4rem; color: var(--gold2); font-style: italic; }
.detail-sep { width: 60px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.detail-desc { color: var(--muted); font-size: 1.05rem; line-height: 1.95; font-style: italic; }
.detail-specs { border: 1px solid rgba(201,168,76,.15); }
.detail-spec-row { display: flex; padding: 10px 14px; border-bottom: 1px solid rgba(201,168,76,.1); }
.detail-spec-row:last-child { border-bottom: none; }
.detail-spec-label { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; width: 120px; flex-shrink: 0; }
.detail-spec-value { color: var(--text); font-size: .95rem; }
.detail-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; background: #25D366; color: white;
  font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none; transition: opacity .25s;
}
.detail-wa-btn:hover { opacity: .88; }

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }

/* ---- ADMIN ---- */
.admin-body { background: #1a0a0e; font-family: 'Cinzel', serif; cursor: auto; }
.admin-body .cursor, .admin-body .cursor-dot, #bgCanvas, .noise-overlay, .vignette-overlay { display: none; }
.admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 240px; background: var(--red3); border-right: 1px solid rgba(201,168,76,.15); z-index: 100; padding: 1.5rem 0; overflow-y: auto; }
.admin-logo { padding: 0 1.5rem 1.5rem; border-bottom: 1px solid rgba(201,168,76,.1); margin-bottom: 1rem; font-size: .85rem; letter-spacing: 2px; color: var(--gold); }
.admin-nav a { display: block; padding: 10px 1.5rem; color: var(--muted); text-decoration: none; font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; transition: all .2s; }
.admin-nav a:hover, .admin-nav a.active { color: var(--gold); background: rgba(201,168,76,.06); }
.admin-main { margin-left: 240px; padding: 2rem; min-height: 100vh; }
.admin-header { margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(201,168,76,.1); display: flex; align-items: center; justify-content: space-between; }
.admin-title { font-size: 1.1rem; letter-spacing: 3px; color: var(--gold); }
.admin-table { width: 100%; border-collapse: collapse; font-family: 'Cormorant Garamond', serif; }
.admin-table th { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); padding: 10px 12px; border-bottom: 1px solid rgba(201,168,76,.15); text-align: left; }
.admin-table td { padding: 12px; border-bottom: 1px solid rgba(201,168,76,.08); color: var(--text); font-size: .95rem; }
.admin-table tr:hover td { background: rgba(201,168,76,.04); }
.admin-card { background: rgba(61,0,8,.3); border: 1px solid rgba(201,168,76,.12); padding: 1.5rem; margin-bottom: 1.5rem; }
.admin-card h3 { font-size: .8rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.admin-input { width: 100%; background: rgba(13,4,8,.5); border: 1px solid rgba(201,168,76,.2); color: var(--cream); padding: 10px 12px; font-family: 'Cormorant Garamond', serif; font-size: 1rem; outline: none; margin-bottom: 1rem; }
.admin-input:focus { border-color: var(--gold); }
.admin-btn { padding: 10px 20px; background: linear-gradient(135deg, var(--gold4), var(--gold)); color: var(--dark); font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: opacity .2s; }
.admin-btn:hover { opacity: .88; }
.admin-btn-danger { background: linear-gradient(135deg, #6B0F1A, #8B1A2A); color: white; }
.badge-active { background: rgba(37,100,50,.3); color: #6ee78a; padding: 2px 8px; font-size: 10px; border-radius: 3px; }
.badge-inactive { background: rgba(100,30,30,.3); color: #e78a8a; padding: 2px 8px; font-size: 10px; border-radius: 3px; }
.flash-success { background: rgba(37,100,50,.2); border: 1px solid rgba(37,150,50,.3); color: #6ee78a; padding: 12px 16px; margin-bottom: 1.5rem; font-size: .85rem; }
.flash-error { background: rgba(150,30,30,.2); border: 1px solid rgba(150,30,30,.3); color: #e78a8a; padding: 12px 16px; margin-bottom: 1.5rem; font-size: .85rem; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ======== ENHANCED 3D & LUXURY EFFECTS ======== */

/* Hero section depth */
.hero {
  perspective: 1000px;
}
.hero-content {
  will-change: transform, opacity;
  transition: opacity 0.05s linear;
}

/* 3D gem canvas glow */
.hero-gem-stage canvas {
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.25)) drop-shadow(0 0 80px rgba(107,15,26,0.4));
}
.about-gem canvas {
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.3));
}

/* Product grid 3D depth */
.products-grid {
  perspective: 1200px;
}
.product-card {
  transform-origin: center center;
  backface-visibility: hidden;
}

/* Gold shimmer text effect on hero title */
.hero-title {
  background: linear-gradient(135deg, #FDF6E3 0%, #E8C96A 30%, #FDF6E3 50%, #C9A84C 70%, #FDF6E3 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}
.hero-title span {
  background: linear-gradient(135deg, #E8C96A, #F5E0A0, #C9A84C, #E8C96A);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s linear infinite reverse;
}
@keyframes textShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Glowing section headers */
.section-title {
  text-shadow: 0 0 40px rgba(201,168,76,0.08);
}

/* Rate ticker enhanced */
.rate-ticker {
  background: linear-gradient(135deg, var(--red3), rgba(107,15,26,0.8), var(--red3));
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.ticker-inner span {
  text-shadow: 0 0 10px rgba(201,168,76,0.3);
}

/* Navbar glassmorphism */
.navbar {
  background: rgba(13,4,8,0.75) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Enhanced product card */
.product-card {
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: box-shadow 0.4s ease;
}
.product-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(201,168,76,0.1);
}

/* 3D flip effect on about gem rings */
.about-visual {
  perspective: 800px;
}
.orbit {
  transform-style: preserve-3d;
}

/* Glowing stats */
.stat-num {
  text-shadow: 0 0 20px rgba(232,201,106,0.4);
}

/* Enhanced testimonial */
.testimonial-card {
  background: linear-gradient(135deg, rgba(61,0,8,0.5), rgba(107,15,26,0.2));
  backdrop-filter: blur(10px);
}

/* Gold glow on WhatsApp buttons */
.product-wa:hover, .detail-wa-btn:hover, .nav-wa:hover {
  box-shadow: 0 0 20px rgba(37,211,102,0.4);
}

/* Hero eyebrow glow */
.hero-eyebrow {
  text-shadow: 0 0 15px rgba(201,168,76,0.4);
  letter-spacing: 10px;
}

/* Enhanced scroll hint */
.scroll-line {
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}

/* Floating gem wrappers in hero */
.hero > div[style*="position:absolute"] {
  pointer-events: none;
}

/* Page sections gradient depth */
.collections-section {
  background: linear-gradient(to bottom, #0d0408 0%, var(--red3) 40%, #0d0408 100%);
}
.about-strip {
  background: linear-gradient(135deg, var(--red3) 0%, rgba(61,0,8,0.9) 50%, var(--red3) 100%);
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

/* Gold dust cursor trail (supports the JS) */
.cursor {
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}

/* Enhanced footer */
.site-footer {
  background: linear-gradient(to bottom, var(--red3), #0d0408);
}
.footer-logo {
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
  animation: footerGlow 3s ease-in-out infinite alternate;
}
@keyframes footerGlow {
  from { text-shadow: 0 0 10px rgba(201,168,76,0.2); }
  to   { text-shadow: 0 0 25px rgba(201,168,76,0.5); }
}

/* Marquee enhanced */
.marquee-wrap {
  background: linear-gradient(90deg, var(--red3), rgba(107,15,26,0.6), var(--red3));
}
.marquee-inner .dot {
  text-shadow: 0 0 8px rgba(232,201,106,0.8);
  animation: dotPulse 1.5s ease-in-out infinite alternate;
}
@keyframes dotPulse {
  from { opacity: 0.6; }
  to   { opacity: 1; text-shadow: 0 0 15px rgba(232,201,106,1); }
}

/* Noise overlay enhanced */
.noise-overlay {
  opacity: 0.05;
  mix-blend-mode: overlay;
}

/* Gold horizontal rule glow */
.gold-rule {
  box-shadow: 0 0 10px rgba(201,168,76,0.4);
  height: 1px;
}

/* Button 3D press effect */
.btn-gold:active {
  transform: translateY(2px) scale(0.98);
}
.btn-outline:active {
  transform: translateY(2px) scale(0.98);
}
