/* Luxury Jewellery Store "Sali" - Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
  --bg-primary: #102c1a;
  --bg-secondary: #173a22;
  --accent-purple: #1e5534;
  --gold: #c9a84c;
  --gold-glow: rgba(201, 168, 76, 0.4);
  --rose-gold: #5fa375;
  --ivory: #fdfdfd;
  --lavender: #d4edda;
  --text-dim: rgba(212, 237, 218, 0.7);

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-primary);
  color: var(--ivory);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Decorative Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 100%;
  margin: 2rem 0;
  position: relative;
}

.divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--bg-primary);
  padding: 0 1rem;
  font-size: 1.2rem;
}

/* Golden Shimmer Animation */
@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.shimmer-btn {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: 0.5s;
}

.shimmer-btn:hover::before {
  left: 100%;
  transition: 0.5s;
}

.shimmer-btn:hover {
  background: var(--rose-gold);
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-2px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Fade In Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(16, 44, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--lavender);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
  padding: 0.5rem 0;
}

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

/* Nav logo image */
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 992px) {
  .nav-logo-img { height: 44px; }
}

/* Nav end group (lang switcher + hamburger) */
.nav-end {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.lang-btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender);
  text-decoration: none;
  padding: 0.3rem 0.45rem;
  border: 1px solid transparent;
  transition: var(--transition);
  line-height: 1;
}

.lang-btn:hover {
  color: var(--gold);
}

.lang-btn--active {
  color: var(--gold);
  border-color: rgba(201,168,76,0.35);
}

.lang-sep {
  display: block;
  width: 1px;
  height: 10px;
  background: rgba(201,168,76,0.25);
  margin: 0 0.15rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: var(--transition);
}

/* =============================================
   HERO — Animated Luxury Jewellery Hero
   ============================================= */

/* Hero wrapper */
.hero {
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

/* Diagonal crosshatch texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg,  rgba(201,168,76,0.055) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(201,168,76,0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 1;
}

/* Ambient orbs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.hero-orb--gold {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  top: -8%;
  left: 5%;
  animation: orbDrift 22s ease-in-out infinite;
}

.hero-orb--purple {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(30,85,52,0.28) 0%, transparent 70%);
  bottom: -15%;
  right: 0%;
  animation: orbDrift 28s ease-in-out infinite;
  animation-delay: -9s;
}

.hero-orb--rose {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(95,163,117,0.16) 0%, transparent 70%);
  top: 35%;
  left: 45%;
  animation: orbDrift 19s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes orbDrift {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(35px, -25px) scale(1.04); }
  50%      { transform: translate(-18px, 40px) scale(0.96); }
  75%      { transform: translate(28px, 18px) scale(1.02); }
}

/* Sparkles */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-sparkle {
  position: absolute;
  background: var(--gold);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  opacity: 0;
  animation: sparkleTwinkle var(--dur, 3s) var(--delay, 0s) infinite;
  will-change: transform, opacity;
}

@keyframes sparkleTwinkle {
  0%,100% { opacity: 0; transform: scale(0) rotate(0deg); }
  30%     { opacity: 0.9; transform: scale(1) rotate(72deg); }
  60%     { opacity: 0.4; transform: scale(0.7) rotate(144deg); }
}

/* SVG rings */
.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.hero-ring-svg {
  position: absolute;
  will-change: transform;
}

.hero-ring-svg--outer {
  width: min(560px, 88vw);
  height: min(560px, 88vw);
  animation: ringCW 50s linear infinite;
}

.hero-ring-svg--inner {
  width: min(360px, 62vw);
  height: min(360px, 62vw);
  animation: ringCCW 36s linear infinite;
}

@keyframes ringCW  { to { transform: rotate(360deg); } }
@keyframes ringCCW { to { transform: rotate(-360deg); } }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 90%;
  width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.28);
  padding: 0.55rem 1.4rem;
  opacity: 0;
  animation: fadeSlideDn 0.7s ease-out 0.2s forwards;
}

/* Title */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5.5rem, 18vw, 11.5rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  display: flex;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  animation: none;
  filter: none;
}

.hero-letter {
  display: inline-block;
  background: linear-gradient(150deg, #f5e9b8 0%, var(--gold) 38%, #b8892a 68%, #f0d96a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: letterDrop 0.65s cubic-bezier(0.34,1.56,0.64,1) calc(0.55s + var(--i) * 0.1s) forwards;
  will-change: transform, opacity, filter;
}

.hero-letter:nth-child(2) { animation-timing-function: cubic-bezier(0.34,1.4,0.64,1); }

@keyframes letterDrop {
  from {
    opacity: 0;
    transform: translateY(-70px) scale(0.6);
    filter: blur(8px) drop-shadow(0 0 0px rgba(201,168,76,0));
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0) drop-shadow(0 0 18px rgba(201,168,76,0.35));
  }
}

/* Ornament divider */
.hero-ornament {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 180px;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 1.2s forwards;
}

.hero-ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.7));
}

.hero-ornament__line--r {
  background: linear-gradient(90deg, rgba(201,168,76,0.7), transparent);
}

.hero-ornament__gem {
  color: var(--gold);
  font-size: 0.65rem;
  opacity: 0.8;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  color: var(--lavender);
  letter-spacing: 1px;
  line-height: 1.65;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 1.35s forwards;
}

.hero .hero-tagline {
  margin-bottom: 0;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.4rem;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 1.6s forwards;
}

.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(37,211,102,0.45);
  color: #4ade80;
  font-family: var(--font-serif);
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
  position: relative;
  overflow: hidden;
}

.hero-cta-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(37,211,102,0.06);
  opacity: 0;
  transition: opacity 0.3s;
}

.hero-cta-wa:hover::before { opacity: 1; }

.hero-cta-wa:hover {
  border-color: #25D366;
  box-shadow: 0 0 22px rgba(37,211,102,0.2);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  z-index: 10;
  opacity: 0;
  animation: fadeUp 0.7s ease-out 2.2s forwards;
}

.hero-scroll__text {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-scroll__track {
  width: 1px;
  height: 52px;
  background: rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
}

.hero-scroll__dot {
  position: absolute;
  top: -18px;
  left: 0;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  from { top: -18px; opacity: 1; }
  to   { top: 52px;  opacity: 0; }
}

/* Shared keyframes */
@keyframes fadeSlideDn {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* Mobile tweaks */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-wa {
    width: 100%;
    max-width: 280px;
    align-self: center;
    justify-content: center;
  }

  .hero-scroll { bottom: 1.2rem; }
  .hero-badge { font-size: 0.6rem; letter-spacing: 2px; padding: 0.45rem 1rem; }
}

/* Sections General */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 3rem;
  color: var(--gold);
}

/* Featured Collections */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.collection-card {
  position: relative;
  height: clamp(300px, 50vw, 400px);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
  background: var(--bg-secondary);
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.collection-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.collection-card:hover .collection-image {
  transform: scale(1.1);
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(16, 44, 26, 0.92));
  text-align: center;
}

.collection-overlay h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.collection-overlay p {
  color: var(--lavender);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Us */
.about {
  background: var(--bg-secondary);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.about-image {
  height: clamp(300px, 40vw, 500px);
  background: linear-gradient(45deg, var(--bg-primary), var(--accent-purple));
  border: 1px solid var(--gold);
}

.about-text h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--lavender);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.product-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--bg-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}

.product-price {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.add-to-cart {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 48px;
}

.add-to-cart:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--gold-glow);
  font-family: var(--font-serif);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: var(--gold);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--gold);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.faq-item div {
  color: var(--lavender);
  font-size: 0.95rem;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.blog-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-content h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--lavender);
  margin-bottom: 1.5rem;
}

.read-more {
  margin-top: auto;
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(rgba(16, 44, 26, 0.92), rgba(16, 44, 26, 0.92)),
              radial-gradient(circle at center, var(--accent-purple), var(--bg-primary));
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--ivory);
  font-family: var(--font-sans);
  min-height: 48px;
}

.newsletter-form button {
  padding: 1rem 2rem;
  min-height: 48px;
  flex-grow: 1;
}

/* Footer */
.footer {
  background: var(--bg-primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--lavender);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-family: var(--font-serif);
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.contact-item p {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.4;
}

.footer-map {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 5px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.footer-map iframe {
  display: block;
}

.copyright {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}

.copyright a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.copyright a:hover {
  color: var(--ivory);
  text-shadow: 0 0 10px var(--gold-glow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 8vw, 4rem);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.8rem;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg-secondary);
    flex-direction: column;
    justify-content: flex-start;
    padding: 8rem 2rem;
    transition: 0.5s ease-in-out;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
    flex: unset;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .footer-info {
    align-items: center;
  }

  .contact-item {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .section { padding: 4rem 0; }
  .newsletter-form input { width: 100%; }
  .footer-main { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .logo { font-size: 1.5rem; }
}

/* Scroll anchor offset for fixed header */
section[id] {
  scroll-margin-top: 80px;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Active Nav Link */
.nav-links a.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* Add to Cart as anchor */
a.add-to-cart {
  display: block;
  text-align: center;
  text-decoration: none;
}

/* Contact links */
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--gold);
}

/* Testimonials */
.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--lavender);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--gold);
}

/* WhatsApp Floating Action Button */
.whatsapp-fab {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--rose-gold);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
}

/* =============================================
   HERO — Jewellery Sali gem-vault overrides
   ============================================= */

/* Emerald light rays from below — gem-inside effect */
.hero-rays {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 130%, rgba(30,85,52,0.42) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 115%, rgba(95,163,117,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Floating diamond outlines */
.hero-diamonds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.hero-diamond {
  position: absolute;
  border: 1px solid rgba(201,168,76,0.22);
  transform: rotate(45deg);
  animation: diamondDrift var(--dur, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

@keyframes diamondDrift {
  0%,100% {
    transform: rotate(45deg) translateY(0)   scale(1);
    opacity: var(--min-op, 0.18);
  }
  50% {
    transform: rotate(45deg) translateY(-18px) scale(1.06);
    opacity: var(--max-op, 0.44);
  }
}

/* Ghosted year in background */
.hero-year {
  position: absolute;
  bottom: 7%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.07);
  letter-spacing: 0.18em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Gem / diamond icon above title */
.hero-gem-icon {
  width: clamp(42px, 7vw, 62px);
  height: auto;
  opacity: 0;
  animation: gemAppear 0.8s cubic-bezier(0.34,1.4,0.64,1) 0.35s forwards,
             gemPulse   4s ease-in-out 1.5s infinite;
  will-change: filter, opacity, transform;
}

@keyframes gemAppear {
  from { opacity: 0; transform: translateY(-12px) scale(0.75); filter: blur(5px); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    filter: blur(0); }
}

@keyframes gemPulse {
  0%,100% { filter: drop-shadow(0 0 5px  rgba(201,168,76,0.2)); }
  50%     { filter: drop-shadow(0 0 16px rgba(201,168,76,0.6)); }
}

/* Hero content gap tweak for gem icon */
.hero-content {
  gap: 0.85rem;
}

/* Wider ornament */
.hero .hero-ornament {
  width: 260px;
}

/* Rising streak sparkles — override JS-generated star sparkles */
.hero-sparkle {
  clip-path: none;
  border-radius: 50%;
  width: 2px !important;
  height: 2px !important;
  background: rgba(201,168,76,0.85);
  box-shadow: 0 0 4px 1px rgba(201,168,76,0.4);
  animation: sparkleRise var(--dur, 3s) var(--delay, 0s) infinite;
}

@keyframes sparkleRise {
  0%   { opacity: 0;   transform: translateY(0)    scale(0.5); }
  20%  { opacity: 0.9; transform: translateY(-12px) scale(1); }
  80%  { opacity: 0.3; transform: translateY(-40px) scale(0.8); }
  100% { opacity: 0;   transform: translateY(-60px) scale(0.3); }
}
