
  /* ── TOKENS ─────────────────────────────────────────── */
  :root {
    --void:       #04030a;
    --deep:       #0a0714;
    --cosmic:     #110d22;
    --nebula:     #1a1035;
    --indigo:     #2d1b6b;
    --violet:     #5b2da8;
    --amethyst:   #8b5cf6;
    --lavender:   #c4b5fd;
    --gold:       #d4af37;
    --gold-light: #f0d060;
    --gold-pale:  #fef3c7;
    --rose:       #e879a0;
    --cyan:       #67e8f9;
    --white:      #faf8ff;
    --muted:      rgba(196,181,253,0.55);
    --glass:      rgba(45,27,107,0.25);
    --glass-border: rgba(212,175,55,0.2);
    --glow-v:     rgba(139,92,246,0.4);
    --glow-g:     rgba(212,175,55,0.35);
  }

  /* ── RESET ───────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--void);
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  /* ── CANVAS PARTICLES ────────────────────────────────── */
  #particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  /* ── LAYOUT UTILS ────────────────────────────────────── */
  .container {
    width: min(1160px, 92%);
    margin-inline: auto;
  }
  section { position: relative; z-index: 1; }

  /* ── NAV ─────────────────────────────────────────────── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(4,3,10,0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s;
  }
  nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1160px, 92%);
    margin-inline: auto;
  }
  .nav-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--amethyst));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
  }
  .nav-links {
    display: flex;
    gap: clamp(16px, 3vw, 36px);
    list-style: none;
  }
  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lavender);
    transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--void) !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: box-shadow 0.3s, transform 0.2s !important;
  }
  .nav-cta:hover {
    box-shadow: 0 0 20px var(--glow-g);
    transform: translateY(-1px);
  }

  /* ── HERO ────────────────────────────────────────────── */
  .hero {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 120px 20px 80px;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,45,168,0.35) 0%, transparent 70%),
      radial-gradient(ellipse 50% 40% at 80% 80%, rgba(232,121,160,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 35% at 20% 70%, rgba(103,232,249,0.08) 0%, transparent 60%);
  }
  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.6rem, 1.5vw, 0.75rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s 0.3s forwards;
  }
  .hero-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2.4rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    background: linear-gradient(160deg, #fff 0%, var(--lavender) 30%, var(--gold) 55%, var(--amethyst) 80%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(139,92,246,0.6));
    opacity: 0;
    animation: fadeUp 1.1s 0.55s forwards;
    margin-bottom: 8px;
  }
  .hero-sub {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(0.85rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    opacity: 0;
    animation: fadeUp 1.1s 0.8s forwards;
    margin-bottom: 32px;
  }
  .hero-tagline {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 52px;
    opacity: 0;
    animation: fadeUp 1.1s 1s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 1.1s 1.2s forwards;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--violet), var(--amethyst));
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(139,92,246,0.4);
    box-shadow: 0 0 30px rgba(139,92,246,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.35s;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--amethyst), var(--violet));
    box-shadow: 0 0 50px rgba(139,92,246,0.6), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-3px);
  }
  .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--void);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(212,175,55,0.4);
    transition: all 0.35s;
    cursor: pointer;
  }
  .btn-gold:hover {
    box-shadow: 0 0 55px rgba(212,175,55,0.7);
    transform: translateY(-3px);
  }
  .hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: drift 12s ease-in-out infinite alternate;
  }
  .orb-1 { width: 500px; height: 500px; background: var(--violet); top: -15%; left: -10%; animation-duration: 14s; }
  .orb-2 { width: 400px; height: 400px; background: var(--rose); bottom: 0; right: -8%; animation-duration: 10s; animation-delay: -3s; }
  .orb-3 { width: 300px; height: 300px; background: var(--cyan); top: 40%; left: 40%; animation-duration: 16s; animation-delay: -6s; }
  .scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s 2s forwards;
  }
  .scroll-hint span {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--muted);
  }
  .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  /* ── SECTION HEADER ──────────────────────────────────── */
  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .section-eye {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--lavender), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .section-desc {
    color: var(--muted);
    max-width: 520px;
    margin-inline: auto;
    font-size: 0.95rem;
  }

  /* ── DIVIDER ──────────────────────────────────────────── */
  .divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 100px 0;
  }
  .divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--glass-border), transparent);
  }
  .divider-gem {
    width: 10px; height: 10px;
    background: var(--gold);
    rotate: 45deg;
    box-shadow: 0 0 14px var(--gold);
  }

  /* ── PRODUCTS ────────────────────────────────────────── */
  .products { padding: 80px 0; }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr));
    gap: 28px;
  }
  .product-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }
  .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(91,45,168,0.35), 0 0 0 1px rgba(212,175,55,0.3);
  }
  .product-img {
    height: 230px;
    display: grid;
    place-items: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
  }
  .product-img::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.6;
  }
  .pi-amethyst { background: radial-gradient(ellipse, #3b1f6b, #1a0d33); }
  .pi-amethyst::before { background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.5), transparent); }
  .pi-rose     { background: radial-gradient(ellipse, #5a1a3a, #1a0820); }
  .pi-rose::before { background: radial-gradient(circle at 50% 50%, rgba(232,121,160,0.4), transparent); }
  .pi-lapis    { background: radial-gradient(ellipse, #0f2a5e, #050d1f); }
  .pi-lapis::before { background: radial-gradient(circle at 50% 50%, rgba(103,168,249,0.35), transparent); }
  .pi-obsidian { background: radial-gradient(ellipse, #1a1a1a, #040404); }
  .pi-obsidian::before { background: radial-gradient(circle at 50% 50%, rgba(139,92,246,0.25), transparent); }
  .pi-citrine  { background: radial-gradient(ellipse, #5a3a08, #1f1104); }
  .pi-citrine::before { background: radial-gradient(circle at 50% 50%, rgba(240,208,96,0.35), transparent); }
  .pi-clear    { background: radial-gradient(ellipse, #1e1e3a, #070714); }
  .pi-clear::before { background: radial-gradient(circle at 50% 50%, rgba(196,181,253,0.3), transparent); }
  .crystal-emoji {
    font-size: 4.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px currentColor);
    animation: float 4s ease-in-out infinite;
  }
  .product-badge {
    position: absolute;
    top: 14px; right: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--void);
    font-family: 'Cinzel', serif;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
  }
  .product-body { padding: 24px; }
  .product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
  }
  .product-desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 18px;
    line-height: 1.6;
  }
  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }
  .tag {
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.3);
    color: var(--lavender);
    font-size: 0.65rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 20px;
  }
  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .product-price {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
  }
  .product-price span {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 400;
  }
  .btn-order {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s;
    box-shadow: 0 0 16px rgba(37,211,102,0.3);
  }
  .btn-order:hover {
    box-shadow: 0 0 28px rgba(37,211,102,0.5);
    transform: scale(1.04);
  }

  /* ── BENEFITS ────────────────────────────────────────── */
  .benefits { padding: 80px 0; }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px,100%), 1fr));
    gap: 24px;
  }
  .benefit-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
  }
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
  .benefit-card:hover {
    background: rgba(45,27,107,0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(91,45,168,0.25);
  }
  .benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    display: block;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.5));
  }
  .benefit-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }
  .benefit-text {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
  }

  /* ── TESTIMONIALS ────────────────────────────────────── */
  .testimonials {
    padding: 80px 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(45,27,107,0.2), transparent);
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr));
    gap: 24px;
  }
  .testi-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px 28px;
    backdrop-filter: blur(12px);
    position: relative;
  }
  .testi-card::before {
    content: '"';
    position: absolute;
    top: 16px; left: 24px;
    font-family: 'Cinzel Decorative', serif;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
  }
  .stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .testi-text {
    font-size: 0.88rem;
    color: var(--lavender);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
  }
  .testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .testi-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    border: 1px solid var(--glass-border);
    background: var(--cosmic);
    flex-shrink: 0;
  }
  .testi-name {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 600;
  }
  .testi-loc {
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ── ABOUT ───────────────────────────────────────────── */
  .about {
    padding: 80px 0;
  }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 768px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; }
  }
  .about-content .section-header { text-align: left; margin-bottom: 28px; }
  .about-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 20px;
  }
  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
  }
  .stat {
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 12px;
    backdrop-filter: blur(10px);
  }
  .stat-num {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.65rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .about-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 380px;
  }
  .crystal-cluster {
    position: relative;
    width: 260px;
    height: 260px;
    display: grid;
    place-items: center;
  }
  .crystal-cluster::before, .crystal-cluster::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
  }
  .crystal-cluster::before {
    inset: -30px;
    border: 1px solid rgba(212,175,55,0.2);
    animation-delay: 0s;
  }
  .crystal-cluster::after {
    inset: -60px;
    border: 1px solid rgba(139,92,246,0.15);
    animation-delay: 1s;
  }
  .crystal-main {
    font-size: 8rem;
    filter: drop-shadow(0 0 40px rgba(139,92,246,0.7)) drop-shadow(0 0 80px rgba(212,175,55,0.3));
    animation: float 5s ease-in-out infinite;
  }
  .crystal-ring {
    position: absolute;
    inset: 0;
    animation: spin 20s linear infinite;
  }
  .ring-gem {
    position: absolute;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.5));
  }
  .ring-gem:nth-child(1) { top: 0; left: 50%; transform: translate(-50%, -10px); }
  .ring-gem:nth-child(2) { top: 50%; right: 0; transform: translate(10px, -50%); }
  .ring-gem:nth-child(3) { bottom: 0; left: 50%; transform: translate(-50%, 10px); }
  .ring-gem:nth-child(4) { top: 50%; left: 0; transform: translate(-10px, -50%); }

  /* ── CONTACT ─────────────────────────────────────────── */
  .contact {
    padding: 80px 0;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(91,45,168,0.2), transparent);
  }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 768px) {
    .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  }
  .contact-info .section-header { text-align: left; }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }
  .contact-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
  }
  .contact-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .contact-value {
    font-size: 0.88rem;
    color: var(--lavender);
  }
  .socials {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .social-link {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    cursor: pointer;
  }
  .social-link:hover {
    background: rgba(45,27,107,0.5);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.2);
  }
  .contact-form-area {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(16px);
  }
  .contact-form-area h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
  }
  .form-group { margin-bottom: 18px; }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: rgba(4,3,10,0.6);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 10px;
    padding: 14px 18px;
    color: var(--white);
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(196,181,253,0.35); }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--amethyst);
    box-shadow: 0 0 16px rgba(139,92,246,0.2);
  }
  .form-group select { cursor: pointer; appearance: none; }
  .form-group select option { background: var(--deep); }
  .btn-form {
    width: 100%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 24px rgba(37,211,102,0.35);
    transition: all 0.3s;
  }
  .btn-form:hover {
    box-shadow: 0 0 44px rgba(37,211,102,0.55);
    transform: translateY(-2px);
  }

  /* ── FOOTER ──────────────────────────────────────────── */
  footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 0 32px;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--amethyst));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
  }
  .footer-tagline {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    margin-bottom: 32px;
  }
  .footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .footer-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 0.72rem;
    color: rgba(196,181,253,0.25);
  }

  /* ── FLOATING WHATSAPP ───────────────────────────────── */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .wa-tooltip {
    background: var(--deep);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 10px 18px;
    font-size: 0.75rem;
    color: var(--lavender);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
  }
  .wa-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
  }
  .wa-btn {
    width: 62px; height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
    animation: waPulse 2.5s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s;
  }
  .wa-btn:hover { transform: scale(1.12); }

  /* ── ANIMATIONS ──────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(30px, -20px) scale(1.08); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-16px); }
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.05); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; scaleY: 0; }
    50%       { opacity: 1; scaleY: 1; }
  }
  @keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
  }
  @keyframes particleDrift {
    0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
  }

  /* ── REVEAL ON SCROLL ────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }

  /* ── MOBILE NAV ──────────────────────────────────────── */
  @media (max-width: 640px) {
    .nav-links { display: none; }
    .products-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 420px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
  }
.crystal-image{
  width:170px;
  height:170px;
  object-fit:contain;
  position:relative;
  z-index:1;
  animation:float 4s ease-in-out infinite;
  filter:drop-shadow(0 0 20px rgba(255,255,255,.15));
}

.crystal-main-image{
  width:220px;
  height:220px;
  object-fit:contain;
  animation:float 5s ease-in-out infinite;
  filter:drop-shadow(0 0 40px rgba(139,92,246,0.7))
         drop-shadow(0 0 80px rgba(212,175,55,0.3));
}

.ring-gem{
  position:absolute;
  width:48px;
  height:48px;
  object-fit:cover;
  border-radius:50%;
  filter:drop-shadow(0 0 8px rgba(212,175,55,.5));
}


body{
-webkit-user-select:none;
user-select:none;
}
img{
-webkit-user-drag:none;
user-drag:none;
}
