/* ============================================================
   INDEX.CSS — Aura & Soul
   Scope: Hero Slider, Ritual Section, Bestsellers Grid,
          Shop by Intention, Moon Phase, Crystal Quiz,
          Aura Kit Builder, Destiny Sync, Dark Mode
   Depends on: global.css (variables, reset, navbar, footer)

   Grid strategy: 4-col desktop → 2-col tablet → 2-col mobile
                  (1-col only on ≤360px ultra-small phones)
   ============================================================ */


/* ============================================================
   1. HERO SECTION
   ============================================================ */
.hero-header {
    width: 100%;
    min-height: 85vh;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-header {
    width: 100%;
    min-height: 85vh;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ── TEXT SIDE ──────────────────────────────────────────── */
.hero-text-side {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.hero-text-wrapper {
    position: relative;
    min-height: 180px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 20px;
}

.italic-text {
    font-style: italic;
    color: var(--accent);
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 480px;
}

/* Text slide animation (toggled by JS via .hide class) */
.text-animate {
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.text-animate.hide {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    filter: blur(4px);
}

/* ── HERO ACTION BUTTONS ──────────────────────────────── */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-liquid {
    position: relative;
    padding: 16px 40px;
    background: linear-gradient(135deg, #2d241e, #4a3b32);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 36, 30, 0.2);
    transition: all 0.4s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-liquid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(122, 92, 133, 0.4);
    background: linear-gradient(135deg, var(--accent), #5a3e63);
    color: var(--white);
}

.btn-liquid::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-liquid:hover::after {
    left: 100%;
}

.btn-glass {
    position: relative;
    padding: 16px 40px;
    background: transparent;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    transition: all 0.4s ease;
    display: inline-block;
    white-space: nowrap;
}

.btn-glass:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ── IMAGE SLIDER VIEWPORT (Right side) ──────────────── */
/*
   FIX: The original code had NO height or overflow:hidden on
   .hero-visual-side. Without these, the slides had nothing
   to clip against, and the JS translation of the track had
   no constrained container — slides were visible outside
   the bounds and the slider "bled" into surrounding content.

   We set:
   • flex: 0 0 48%  — take 48% of hero-container width
   • height: 500px  — explicit height so images aren't 0px tall
   • overflow:hidden — clips the sliding track to this box
   • border-radius   — preserves the premium aesthetic
   • position:relative — anchors the track inside
*/
.hero-visual-side {
    flex: 0 0 48%;
    height: 500px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

/*
   The track is a flex row of slides. Width is intentionally
   NOT constrained here — JS sets each slide's width to
   viewport.offsetWidth and translates the track accordingly.
*/
.slider-track {
    display: flex;
    height: 100%;
    will-change: transform;
    /* GPU compositing hint */
}

.slide {
    /* width is set dynamically by JS (= viewport.offsetWidth) */
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* prevent image drag interfering */
    user-select: none;
}

.slide {
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}


/* ============================================================
   2. RITUAL SECTION
   ============================================================ */
.ritual-section {
    padding: 80px 5%;
    background-color: var(--white);
    text-align: center;
}

.section-header-luxe {
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.luxe-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent);
    display: block;
    margin-bottom: 5px;
}

.luxe-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

.luxe-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--accent);
    margin: 10px auto 0;
}

.ritual-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ritual-step {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.step-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-luxe);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.step-icon-box svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-main);
    stroke-width: 1.5px;
    fill: none;
    transition: all 0.4s ease;
}

.ritual-step:hover .step-icon-box {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(122, 92, 133, 0.15);
}

.ritual-step:hover .step-icon-box svg {
    stroke: var(--accent);
}

.ritual-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 600;
}

.ritual-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    max-width: 340px;
    margin: 0 auto;
}


/* ============================================================
   3. BESTSELLERS / FEATURED GRID
   ============================================================ */
.bestsellers-section {
    padding: 80px 4%;
    background-color: var(--bg-luxe);
}

.sexy-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    height: 1px;
    width: 60px;
    background: #d4c5b0;
}

.diamond {
    color: var(--accent);
    padding: 0 15px;
    font-size: 1.2rem;
}

/* ── Product grid — 4 col desktop, explicitly overridden at breakpoints ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 1300px;
    margin: 0 auto 70px;
}

/* ── Product card ── */
.product-card {
    background: transparent;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
}

/* ── Image box ── */
.product-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: #f7f3ef;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.07),
        0 20px 48px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.8s ease;
}

.product-card:hover .product-image-box {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 16px 40px rgba(122, 92, 133, 0.14),
        0 0 0 1px rgba(210, 175, 100, 0.12),
        0 24px 60px rgba(200, 155, 60, 0.08);
}

/* Vignette overlay on hover */
.product-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(20, 15, 20, 0.52) 0%,
            rgba(20, 15, 20, 0.18) 40%,
            transparent 65%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover .product-image-box::after {
    opacity: 1;
}

/* Warm radial bloom underneath vignette */
.product-image-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse 70% 65% at 50% 38%,
            rgba(255, 248, 235, 0.08) 0%,
            rgba(255, 240, 210, 0.04) 40%,
            transparent 70%);
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.product-card:hover .product-image-box::before {
    opacity: 1;
}

/* Product image */
.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.8s ease;
}

.product-card:hover .product-image-box img {
    transform: scale(1.08);
    filter: brightness(1.12) saturate(1.06);
}

/* Category badge (top-left) */
.badge-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    color: #3d2c35;
    padding: 5px 14px;
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 3;
    transition: background 0.3s ease;
}

.product-card:hover .badge-tag {
    background: rgba(255, 255, 255, 0.97);
}

/* Sale badge (below category badge) */
.sale-badge-card {
    position: absolute;
    top: 14px;
    left: 14px;
    margin-top: 38px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 40px;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(199, 57, 49, 0.35);
}

/* Sold-out badge */
.sold-out-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    margin-top: 38px;
    background: rgba(58, 50, 40, 0.82);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    z-index: 3;
    pointer-events: none;
}

/* Wishlist button */
.btn-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    color: #8a6a75;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.10);
}

.btn-wishlist:hover {
    background: rgba(255, 235, 238, 0.96);
    color: #e63946;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.25);
}

.btn-wishlist.active {
    background: rgba(255, 225, 228, 0.96);
    color: #e63946;
    animation: wishlist-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.btn-wishlist.active svg {
    fill: #e63946;
    stroke: #e63946;
}

@keyframes wishlist-pop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.35);
    }

    70% {
        transform: scale(0.92);
    }

    100% {
        transform: scale(1.12);
    }
}

/* Floating add-to-cart (legacy homepage use) */
.btn-floating-cart {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(24px);
    width: 82%;
    background: rgba(20, 15, 20, 0.82);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    color: #f5efe9;
    padding: 13px 0;
    border-radius: 60px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0;
    z-index: 2;
    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.10);
    white-space: nowrap;
}

.product-card:hover .btn-floating-cart {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-floating-cart:hover {
    background: rgba(122, 92, 133, 0.92);
    transform: translateX(-50%) translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(122, 92, 133, 0.40);
    color: #fff;
}

.btn-floating-cart.added {
    background: rgba(39, 174, 96, 0.88) !important;
    pointer-events: none;
}

/* ── Shop card action tray (slides up on hover) ── */
.shop-card-actions {
    display: flex;
    gap: 8px;
    padding: 0 4px 4px;
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    transition:
        max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.26s ease,
        transform 0.30s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .shop-card-actions {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
    padding: 10px 4px 4px;
}

/* Touch devices — always visible */
@media (hover: none) {
    .shop-card-actions {
        max-height: 60px;
        opacity: 1;
        transform: translateY(0);
        padding: 10px 4px 4px;
    }
}

.shop-card-view-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    background: transparent;
    border: 1.5px solid rgba(122, 92, 133, 0.30);
    border-radius: 50px;
    color: var(--accent, #7a5c85);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.shop-card-view-btn:hover {
    background: rgba(122, 92, 133, 0.07);
    border-color: var(--accent, #7a5c85);
    color: var(--accent, #7a5c85);
}

.shop-card-view-btn i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

.shop-card-bag-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    background: var(--accent, #7a5c85);
    border: 1.5px solid var(--accent, #7a5c85);
    border-radius: 50px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 14px rgba(122, 92, 133, 0.25);
    transition:
        background 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.shop-card-bag-btn:hover:not(:disabled) {
    background: #5a3e63;
    border-color: #5a3e63;
    box-shadow: 0 8px 24px rgba(122, 92, 133, 0.40);
    transform: translateY(-1px);
}

.shop-card-bag-btn:active:not(:disabled) {
    transform: translateY(0);
    transition-duration: 0.08s;
}

.shop-card-bag-btn:disabled,
.shop-card-bag-btn.btn-sold-out {
    background: rgba(160, 148, 136, 0.50) !important;
    border-color: transparent !important;
    box-shadow: none !important;
    cursor: not-allowed !important;
    opacity: 0.75;
    transform: none !important;
}

.shop-card-bag-btn i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Stone sub-label */
.shop-card-stone {
    font-size: 0.72rem;
    color: #aaa;
    text-transform: capitalize;
    letter-spacing: 0.2px;
    margin: 2px 0 5px;
    min-height: 15px;
    line-height: 1;
}

/* Product info below image */
.product-info {
    text-align: center;
    padding: 18px 4px 0;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: var(--accent);
}

.product-info .price {
    color: #8a7880;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Sale price block */
.price-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

.price-original {
    color: #bbb;
    font-size: 0.88rem;
    text-decoration: line-through;
    text-decoration-color: rgba(187, 187, 187, 0.6);
    font-weight: 400;
}

.price-sale {
    font-size: 1.05rem;
    font-weight: 700;
    color: #b5863a;
}

/* View all link */
.view-all-container {
    text-align: center;
    margin-top: 10px;
}

.link-view-all {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--accent-light);
    padding-bottom: 2px;
    transition: var(--transition);
}

.link-view-all:hover {
    color: #5a3e63;
    border-bottom-color: #5a3e63;
}

/* Loading skeleton */
.featured-skeleton {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    background: linear-gradient(90deg, #f0ece8 25%, #e8e3de 50%, #f0ece8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s infinite;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


/* ============================================================
   4. SHOP BY INTENTION SECTION
   ============================================================ */
.intentions-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.section-title {
    margin-bottom: 50px;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin: 10px 0;
    font-weight: 600;
}

.sub-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    font-weight: 500;
}

.line-break {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin: 15px auto 0;
    opacity: 0.5;
}

.intentions-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.icon-box {
    width: 85px;
    height: 85px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #555;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #eee;
}

.intent-card span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    transition: 0.3s;
}

.intent-card:hover .icon-box {
    transform: translateY(-8px);
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(122, 92, 133, 0.4);
}

.intent-card:hover span {
    color: var(--accent);
    font-weight: 700;
}


/* ============================================================
   5. MOON PHASE & CRYSTAL CLEANSE SECTION
   ============================================================ */
.moon-phase-section {
    background:
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(72, 30, 110, 0.45) 0%, transparent 70%),
        radial-gradient(ellipse 50% 35% at 85% 80%, rgba(18, 52, 88, 0.50) 0%, transparent 65%),
        radial-gradient(ellipse 30% 25% at 78% 35%, rgba(90, 20, 80, 0.30) 0%, transparent 60%),
        linear-gradient(168deg, #04050d 0%, #07091a 28%, #0b0d22 55%, #080614 78%, #03030a 100%);
    padding: 110px 5% 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}

.moon-phase-section.moon-ready {
    opacity: 1;
}

.moon-phase-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Stars */
.moon-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.moon-star {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    animation: starTwinkle var(--dur, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.moon-star:nth-child(1) {
    width: 1px;
    height: 1px;
    top: 5%;
    left: 12%;
    --dur: 3.8s;
    --delay: 0s;
}

.moon-star:nth-child(2) {
    width: 2px;
    height: 2px;
    top: 8%;
    left: 34%;
    --dur: 5.2s;
    --delay: 0.6s;
}

.moon-star:nth-child(3) {
    width: 1px;
    height: 1px;
    top: 4%;
    left: 58%;
    --dur: 4.1s;
    --delay: 1.2s;
}

.moon-star:nth-child(4) {
    width: 3px;
    height: 3px;
    top: 10%;
    left: 80%;
    --dur: 6.0s;
    --delay: 0.3s;
}

.moon-star:nth-child(5) {
    width: 1px;
    height: 1px;
    top: 15%;
    left: 92%;
    --dur: 3.5s;
    --delay: 2.1s;
}

.moon-star:nth-child(6) {
    width: 2px;
    height: 2px;
    top: 22%;
    left: 5%;
    --dur: 4.7s;
    --delay: 0.9s;
}

.moon-star:nth-child(7) {
    width: 1px;
    height: 1px;
    top: 28%;
    left: 48%;
    --dur: 5.5s;
    --delay: 1.7s;
}

.moon-star:nth-child(8) {
    width: 2px;
    height: 2px;
    top: 35%;
    left: 72%;
    --dur: 4.3s;
    --delay: 0.4s;
}

.moon-star:nth-child(9) {
    width: 1px;
    height: 1px;
    top: 42%;
    left: 20%;
    --dur: 3.9s;
    --delay: 2.8s;
}

.moon-star:nth-child(10) {
    width: 3px;
    height: 3px;
    top: 48%;
    left: 88%;
    --dur: 6.5s;
    --delay: 0.1s;
}

.moon-star:nth-child(11) {
    width: 1px;
    height: 1px;
    top: 55%;
    left: 3%;
    --dur: 4.0s;
    --delay: 1.5s;
}

.moon-star:nth-child(12) {
    width: 2px;
    height: 2px;
    top: 60%;
    left: 38%;
    --dur: 5.1s;
    --delay: 2.3s;
}

.moon-star:nth-child(13) {
    width: 1px;
    height: 1px;
    top: 65%;
    left: 62%;
    --dur: 3.6s;
    --delay: 0.7s;
}

.moon-star:nth-child(14) {
    width: 2px;
    height: 2px;
    top: 72%;
    left: 15%;
    --dur: 4.8s;
    --delay: 1.9s;
}

.moon-star:nth-child(15) {
    width: 1px;
    height: 1px;
    top: 78%;
    left: 50%;
    --dur: 5.3s;
    --delay: 0.5s;
}

.moon-star:nth-child(16) {
    width: 3px;
    height: 3px;
    top: 82%;
    left: 78%;
    --dur: 6.2s;
    --delay: 2.5s;
}

.moon-star:nth-child(17) {
    width: 1px;
    height: 1px;
    top: 88%;
    left: 28%;
    --dur: 3.7s;
    --delay: 1.1s;
}

.moon-star:nth-child(18) {
    width: 2px;
    height: 2px;
    top: 92%;
    left: 68%;
    --dur: 4.6s;
    --delay: 0.8s;
}

.moon-star:nth-child(19) {
    width: 1px;
    height: 1px;
    top: 18%;
    left: 22%;
    --dur: 5.8s;
    --delay: 3.0s;
}

.moon-star:nth-child(20) {
    width: 2px;
    height: 2px;
    top: 55%;
    left: 95%;
    --dur: 4.2s;
    --delay: 1.4s;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.7);
    }

    45%,
    55% {
        opacity: 0.85;
        transform: scale(1);
    }
}

/* Eyebrow */
.moon-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #60509a 0%, #b09ade 40%, #60509a 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 6s linear infinite;
    margin-bottom: 14px;
}

@keyframes textShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

.moon-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #ddd5f0;
    line-height: 1.2;
    margin-bottom: 60px;
    letter-spacing: 0.3px;
}

/* Moon display */
.moon-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 52px;
}

.moon-visual {
    --moon-glow: 0.5;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-bottom: 32px;
    background:
        radial-gradient(ellipse 55% 90% at 72% 50%, rgba(8, 6, 18, 0.55) 0%, rgba(12, 10, 28, 0.30) 40%, transparent 65%),
        radial-gradient(ellipse 42% 38% at 30% 32%, rgba(32, 28, 52, 0.50) 0%, rgba(44, 38, 68, 0.28) 50%, transparent 75%),
        radial-gradient(ellipse 28% 22% at 58% 55%, rgba(28, 24, 48, 0.38) 0%, transparent 70%),
        radial-gradient(ellipse 60% 45% at 42% 38%, rgba(220, 215, 235, 0.18) 0%, rgba(190, 185, 215, 0.08) 55%, transparent 80%),
        radial-gradient(circle at 50% 50%, transparent 52%, rgba(8, 6, 20, 0.60) 75%, rgba(4, 3, 12, 0.88) 100%),
        radial-gradient(ellipse 30% 25% at 32% 28%, rgba(255, 252, 245, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 45% 40%, #d8d4e8 0%, #c2bcd8 30%, #a8a2c0 58%, #8e88a8 80%, #706a90 100%);
    box-shadow:
        inset -6px -4px 18px rgba(4, 3, 12, 0.80),
        inset 3px 3px 8px rgba(255, 252, 248, 0.14),
        0 0 20px 4px rgba(180, 165, 230, calc(0.20 + 0.25 * var(--moon-glow))),
        0 0 calc(50px + 80px * var(--moon-glow)) calc(10px * var(--moon-glow)) rgba(155, 130, 220, calc(0.12 * var(--moon-glow)));
    animation: moonFloat 8s ease-in-out infinite;
}

.moon-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(ellipse 85% 12% at 50% 62%, rgba(180, 175, 210, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 70% 8% at 48% 42%, rgba(200, 196, 225, 0.08) 0%, transparent 100%);
    pointer-events: none;
    mix-blend-mode: overlay;
}

.moon-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 48% 44%, rgba(255, 255, 248, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

@keyframes moonFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* Phase-specific overrides */
.moon-visual.moon--new {
    background:
        radial-gradient(circle at 50% 50%, transparent 45%, rgba(4, 3, 12, 0.95) 75%, rgba(2, 2, 8, 1) 100%),
        radial-gradient(circle at 45% 42%, #141220 0%, #0d0b18 40%, #080614 100%);
}

/* Moon symbol, name, age */
.moon-symbol {
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 14px rgba(180, 155, 255, 0.45));
    animation: moonFloat 8s ease-in-out infinite;
    animation-delay: 0.4s;
}

.moon-phase-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, #e8e4f8 0%, #c8c0e4 40%, #b0a8d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1.2;
}

.moon-age {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #48406a;
    margin-bottom: 0;
}

.moon-divider {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, transparent, rgba(140, 110, 210, 0.55), rgba(140, 110, 210, 0.10), transparent);
    margin: 0 auto 40px;
}

/* Advice card */
.moon-advice-wrap {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.35);
}

.moon-advice-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #6858a0;
    margin-bottom: 14px;
}

.moon-advice-text {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #a098c0;
    font-weight: 400;
    margin: 0;
}


/* ============================================================
   6. FIND YOUR CRYSTAL — QUIZ SECTION
   ============================================================ */
.quiz-section {
    position: relative;
    background: linear-gradient(135deg, #1a0e2e 0%, #0e1a18 60%, #1a1008 100%);
    padding: 96px 24px;
    overflow: hidden;
    text-align: center;
}

.quiz-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.quiz-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: quiz-twinkle 3s infinite ease-in-out;
}

.quiz-star:nth-child(1) {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.quiz-star:nth-child(2) {
    top: 25%;
    left: 82%;
    animation-delay: 0.7s;
}

.quiz-star:nth-child(3) {
    top: 55%;
    left: 5%;
    animation-delay: 1.2s;
}

.quiz-star:nth-child(4) {
    top: 70%;
    left: 90%;
    animation-delay: 0.3s;
}

.quiz-star:nth-child(5) {
    top: 88%;
    left: 18%;
    animation-delay: 1.8s;
}

.quiz-star:nth-child(6) {
    top: 15%;
    left: 55%;
    animation-delay: 2.1s;
}

.quiz-star:nth-child(7) {
    top: 80%;
    left: 65%;
    animation-delay: 0.9s;
}

.quiz-star:nth-child(8) {
    top: 40%;
    left: 40%;
    animation-delay: 1.5s;
}

@keyframes quiz-twinkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.6);
    }
}

.quiz-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.quiz-eyebrow {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #b8a9d4;
    margin-bottom: 18px;
}

.quiz-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #f5f0ff;
    line-height: 1.2;
    margin: 0 0 18px;
}

.quiz-subline {
    font-size: 1rem;
    color: #b0b8c8;
    line-height: 1.65;
    max-width: 480px;
    margin-inline: auto;
    margin-bottom: 36px;
}

.quiz-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #7a5c85, #5a3e63);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(122, 92, 133, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quiz-start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(122, 92, 133, 0.6);
}

.quiz-step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7a5c85;
    margin: 0 0 14px;
}

.quiz-question {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    color: #f5f0ff;
    font-weight: 600;
    margin: 0 0 36px;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto;
}

.quiz-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: #e8e0f5;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.18s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.quiz-opt:hover {
    background: rgba(122, 92, 133, 0.25);
    border-color: rgba(122, 92, 133, 0.6);
    transform: translateY(-2px);
}

.quiz-opt.selected {
    background: rgba(122, 92, 133, 0.4);
    border-color: #9b7aaa;
    box-shadow: 0 0 0 3px rgba(122, 92, 133, 0.3);
}

.quiz-opt-icon {
    font-size: 2rem;
}

.quiz-opt-label {
    line-height: 1.3;
    text-align: center;
}

/* Result card */
.quiz-result-eyebrow {
    color: #c4a8d8;
}

.quiz-result-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(122, 92, 133, 0.35);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    text-align: left;
    margin: 0 auto 28px;
    max-width: 540px;
    backdrop-filter: blur(8px);
    animation: quiz-result-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes quiz-result-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.quiz-result-img {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.quiz-result-img-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    background: rgba(122, 92, 133, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    flex-shrink: 0;
}

.quiz-result-body {
    flex: 1;
}

.quiz-result-crystal-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9b7aaa;
    margin: 0 0 6px;
}

.quiz-result-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5f0ff;
    margin: 0 0 8px;
}

.quiz-result-reason {
    font-size: 0.83rem;
    color: #b0b8c8;
    line-height: 1.6;
    margin: 0 0 18px;
}

.quiz-result-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8c975;
    margin: 0 0 14px;
}

.quiz-result-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quiz-result-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #7a5c85, #5a3e63);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}

.quiz-result-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122, 92, 133, 0.45);
}

.quiz-result-bag-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    color: #e8e0f5;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, border-color 0.18s;
}

.quiz-result-bag-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.quiz-result-fallback {
    color: #b0b8c8;
    font-size: 0.9rem;
    padding: 24px 0;
}

.quiz-result-fallback a {
    color: #9b7aaa;
    text-decoration: underline;
}

.quiz-restart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: transparent;
    color: #b0b8c8;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.quiz-restart-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #e0d8f0;
}

.quiz-step {
    animation: quiz-step-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes quiz-step-in {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ============================================================
   7. AURA KIT BUNDLE BUILDER
   ============================================================ */
.aura-kit-section {
    position: relative;
    background: linear-gradient(160deg, #0d0810 0%, #120d1a 40%, #0a0d14 75%, #0d100a 100%);
    padding: 110px 5% 120px;
    overflow: hidden;
    text-align: center;
}

.aura-kit-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.aura-kit-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.aura-kit-particles span {
    position: absolute;
    border-radius: 50%;
    animation: kitParticleFloat 12s ease-in-out infinite;
}

.aura-kit-particles span:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -80px;
    left: -100px;
    background: radial-gradient(circle, rgba(122, 92, 133, 0.22) 0%, transparent 70%);
    animation-delay: 0s;
}

.aura-kit-particles span:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -60px;
    right: -60px;
    background: radial-gradient(circle, rgba(212, 175, 100, 0.18) 0%, transparent 70%);
    animation-delay: 3s;
}

.aura-kit-particles span:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 5%;
    background: radial-gradient(circle, rgba(90, 140, 120, 0.15) 0%, transparent 70%);
    animation-delay: 6s;
}

.aura-kit-particles span:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 8%;
    background: radial-gradient(circle, rgba(160, 100, 180, 0.16) 0%, transparent 70%);
    animation-delay: 2s;
}

.aura-kit-particles span:nth-child(5) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 20%;
    background: radial-gradient(circle, rgba(212, 175, 100, 0.12) 0%, transparent 70%);
    animation-delay: 8s;
}

.aura-kit-particles span:nth-child(6) {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 15%;
    background: radial-gradient(circle, rgba(122, 92, 133, 0.14) 0%, transparent 70%);
    animation-delay: 4s;
}

@keyframes kitParticleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-30px) scale(1.08);
        opacity: 0.7;
    }
}

.aura-kit-header {
    margin-bottom: 60px;
}

.aura-kit-eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #9b7aaa, #d4af64, #9b7aaa);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kitShimmer 5s linear infinite;
    margin-bottom: 16px;
}

@keyframes kitShimmer {
    from {
        background-position: 200% center;
    }

    to {
        background-position: -200% center;
    }
}

.aura-kit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #f0eaff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.aura-kit-title em {
    font-style: italic;
    color: #c4a8d8;
}

.aura-kit-subtitle {
    font-size: 1rem;
    color: #8a90a8;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto;
}

/* Slot tray */
.aura-kit-slots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    gap: 12px;
}

.aura-kit-slot-divider {
    font-size: 1.4rem;
    color: rgba(212, 175, 100, 0.4);
    font-weight: 300;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.aura-kit-slot {
    position: relative;
    width: 140px;
    height: 160px;
    border-radius: 24px;
    border: 1.5px dashed rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    overflow: hidden;
    flex-shrink: 0;
}

.aura-kit-slot.is-filled {
    border-style: solid;
    border-color: rgba(196, 168, 216, 0.55);
    background: rgba(122, 92, 133, 0.12);
    box-shadow: 0 0 0 1px rgba(196, 168, 216, 0.15), 0 8px 32px rgba(122, 92, 133, 0.25);
    transform: translateY(-3px);
    animation: slotFillIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes slotFillIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.aura-kit-slot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
}

.aura-kit-slot-icon {
    font-size: 1.5rem;
    color: rgba(196, 168, 216, 0.25);
    display: block;
    transition: opacity 0.3s;
}

.aura-kit-slot-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(196, 168, 216, 0.30);
    transition: opacity 0.3s;
}

.aura-kit-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aura-kit-slot.is-filled img {
    opacity: 1;
}

.aura-kit-slot.is-filled .aura-kit-slot-icon,
.aura-kit-slot.is-filled .aura-kit-slot-label {
    opacity: 0;
}

.aura-kit-slot-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(10, 6, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f0eaff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.aura-kit-slot-remove:hover {
    background: rgba(200, 50, 50, 0.75);
    transform: scale(1.15);
}

/* Pricing */
.aura-kit-pricing {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    transition: all 0.3s ease;
}

.aura-kit-pricing-label {
    font-size: 0.8rem;
    color: rgba(196, 168, 216, 0.45);
    letter-spacing: 0.5px;
}

.aura-kit-pricing-active {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.aura-kit-price-original {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(196, 168, 216, 0.4);
    text-decoration: line-through;
}

.aura-kit-price-final {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af64;
    text-shadow: 0 0 20px rgba(212, 175, 100, 0.35);
}

.aura-kit-price-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(212, 175, 100, 0.2), rgba(212, 175, 100, 0.1));
    border: 1px solid rgba(212, 175, 100, 0.35);
    border-radius: 30px;
    color: #d4af64;
}

/* Crystal picker */
.aura-kit-picker-wrap {
    margin-bottom: 48px;
}

.aura-kit-picker-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(196, 168, 216, 0.35);
    margin-bottom: 20px;
}

.aura-kit-picker {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 12px 4px 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(122, 92, 133, 0.4) transparent;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.aura-kit-picker:active {
    cursor: grabbing;
}

.aura-kit-picker::-webkit-scrollbar {
    height: 4px;
}

.aura-kit-picker::-webkit-scrollbar-track {
    background: transparent;
}

.aura-kit-picker::-webkit-scrollbar-thumb {
    background: rgba(122, 92, 133, 0.4);
    border-radius: 4px;
}

.aura-kit-picker-skeleton {
    flex-shrink: 0;
    width: 130px;
    height: 170px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 25%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.04) 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.6s ease-in-out infinite;
}

.aura-kit-crystal-card {
    flex-shrink: 0;
    width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 14px 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}

.aura-kit-crystal-card:hover {
    border-color: rgba(196, 168, 216, 0.45);
    background: rgba(122, 92, 133, 0.12);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(122, 92, 133, 0.20);
}

.aura-kit-crystal-card.is-selected {
    border-color: rgba(212, 175, 100, 0.6);
    background: rgba(212, 175, 100, 0.08);
    box-shadow: 0 0 0 2px rgba(212, 175, 100, 0.2), 0 8px 24px rgba(212, 175, 100, 0.15);
    transform: translateY(-2px);
}

.aura-kit-crystal-card.is-selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 9px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af64, #b8943a);
    color: #0d0810;
    font-size: 0.62rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgeIn 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    box-shadow: 0 2px 8px rgba(212, 175, 100, 0.45);
    text-indent: 1px;
}

@keyframes badgeIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.aura-kit-crystal-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    display: block;
}

.aura-kit-crystal-card:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(122, 92, 133, 0.30);
}

.aura-kit-crystal-card.is-selected img {
    box-shadow: 0 4px 16px rgba(212, 175, 100, 0.30);
}

.aura-kit-crystal-name {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c8c0e4;
    line-height: 1.3;
    display: block;
}

.aura-kit-crystal-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(212, 175, 100, 0.7);
    display: block;
}

.aura-kit-crystal-card.is-selected .aura-kit-crystal-name {
    color: #d4af64;
}

/* CTA */
.aura-kit-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.aura-kit-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: linear-gradient(135deg, rgba(212, 175, 100, 0.15), rgba(196, 148, 64, 0.10));
    border: 1.5px solid rgba(212, 175, 100, 0.30);
    border-radius: 50px;
    color: rgba(212, 175, 100, 0.45);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: not-allowed;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.aura-kit-add-btn.is-ready {
    background: linear-gradient(135deg, #d4af64, #b8943a);
    border-color: transparent;
    color: #0d0810;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 0 0 0 rgba(212, 175, 100, 0), 0 8px 32px rgba(212, 175, 100, 0.40);
    animation: kitBtnPulse 2.5s ease-in-out infinite;
}

.aura-kit-add-btn.is-ready:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 0 6px rgba(212, 175, 100, 0.15), 0 16px 48px rgba(212, 175, 100, 0.50);
    animation: none;
}

@keyframes kitBtnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 100, 0.4), 0 8px 32px rgba(212, 175, 100, 0.35);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 100, 0), 0 8px 32px rgba(212, 175, 100, 0.35);
    }
}

.aura-kit-cta-hint {
    font-size: 0.72rem;
    color: rgba(196, 168, 216, 0.35);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.aura-kit-cta-hint.is-ready {
    color: rgba(212, 175, 100, 0.6);
}


/* ============================================================
   8. DESTINY SYNC SECTION
   ============================================================ */
.destiny-sync-section {
    position: relative;
    background: #05040e;
    padding: 100px 20px 110px;
    overflow: hidden;
}

.ds-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ds-stars span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: dsTwinkle 3s infinite alternate;
    opacity: 0.4;
}

.ds-stars span:nth-child(1) {
    top: 8%;
    left: 12%;
    animation-delay: 0s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(2) {
    top: 15%;
    left: 55%;
    animation-delay: 0.4s;
}

.ds-stars span:nth-child(3) {
    top: 5%;
    left: 82%;
    animation-delay: 0.8s;
}

.ds-stars span:nth-child(4) {
    top: 25%;
    left: 28%;
    animation-delay: 1.2s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 0.2s;
}

.ds-stars span:nth-child(6) {
    top: 50%;
    left: 5%;
    animation-delay: 1.6s;
}

.ds-stars span:nth-child(7) {
    top: 60%;
    left: 92%;
    animation-delay: 0.6s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(8) {
    top: 70%;
    left: 40%;
    animation-delay: 2.0s;
}

.ds-stars span:nth-child(9) {
    top: 80%;
    left: 18%;
    animation-delay: 1.0s;
}

.ds-stars span:nth-child(10) {
    top: 88%;
    left: 75%;
    animation-delay: 0.3s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(11) {
    top: 12%;
    left: 38%;
    animation-delay: 1.8s;
}

.ds-stars span:nth-child(12) {
    top: 42%;
    left: 60%;
    animation-delay: 2.4s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(13) {
    top: 55%;
    left: 85%;
    animation-delay: 0.9s;
}

.ds-stars span:nth-child(14) {
    top: 20%;
    left: 95%;
    animation-delay: 1.4s;
}

.ds-stars span:nth-child(15) {
    top: 72%;
    left: 50%;
    animation-delay: 2.2s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(16) {
    top: 35%;
    left: 8%;
    animation-delay: 0.7s;
}

.ds-stars span:nth-child(17) {
    top: 90%;
    left: 30%;
    animation-delay: 1.1s;
}

.ds-stars span:nth-child(18) {
    top: 65%;
    left: 15%;
    animation-delay: 2.6s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(19) {
    top: 48%;
    left: 48%;
    animation-delay: 0.5s;
}

.ds-stars span:nth-child(20) {
    top: 3%;
    left: 65%;
    animation-delay: 1.7s;
}

.ds-stars span:nth-child(21) {
    top: 78%;
    left: 62%;
    animation-delay: 3.0s;
    width: 1px;
    height: 1px;
}

.ds-stars span:nth-child(22) {
    top: 22%;
    left: 44%;
    animation-delay: 2.8s;
}

.ds-stars span:nth-child(23) {
    top: 93%;
    left: 88%;
    animation-delay: 1.5s;
}

.ds-stars span:nth-child(24) {
    top: 40%;
    left: 23%;
    animation-delay: 0.1s;
}

.ds-stars span:nth-child(25) {
    top: 58%;
    left: 32%;
    animation-delay: 2.3s;
    width: 1px;
    height: 1px;
}

@keyframes dsTwinkle {
    from {
        opacity: 0.15;
        transform: scale(0.8);
    }

    to {
        opacity: 0.90;
        transform: scale(1.2);
    }
}

.ds-container {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.ds-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a96e;
    margin-bottom: 16px;
}

.ds-orb {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9a96e;
    opacity: 0.7;
}

.ds-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 500;
    color: #f5ede0;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
    line-height: 1.1;
}

.ds-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(245, 237, 224, 0.55);
    margin: 0 0 48px;
    line-height: 1.6;
}

.ds-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 20px;
    padding: 44px 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 60px rgba(201, 169, 110, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ds-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ds-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ds-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
}

.ds-field label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201, 169, 110, 0.8);
}

.ds-optional {
    opacity: 0.5;
    font-size: 0.65rem;
    text-transform: none;
    letter-spacing: 0;
}

.ds-field input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 10px;
    padding: 12px 14px;
    color: #f5ede0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    color-scheme: dark;
}

.ds-field input::placeholder {
    color: rgba(245, 237, 224, 0.25);
}

.ds-field input:focus {
    border-color: rgba(201, 169, 110, 0.55);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.ds-whatsapp-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: rgba(245, 237, 224, 0.6);
    user-select: none;
}

.ds-whatsapp-check input[type="checkbox"] {
    display: none;
}

.ds-checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.04);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ds-whatsapp-check input:checked+.ds-checkmark {
    background: #c9a96e;
    border-color: #c9a96e;
}

.ds-whatsapp-check input:checked+.ds-checkmark::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #05040e;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}

.ds-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #c9a96e 0%, #a8813a 100%);
    color: #05040e;
    border: none;
    border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(201, 169, 110, 0.3);
    margin-top: 8px;
}

.ds-submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.45);
}

.ds-submit-btn:active {
    transform: translateY(0);
}

/* Loading state */
.ds-loading {
    padding: 20px 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ds-moon-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-moon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #c9a96e;
    border-right-color: rgba(201, 169, 110, 0.3);
    animation: dsSpin 1.1s linear infinite;
}

.ds-moon-ring::after {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-bottom-color: rgba(201, 169, 110, 0.5);
    animation: dsSpin 1.8s linear infinite reverse;
}

.ds-moon-core {
    font-size: 1.8rem;
    animation: dsPulse 2s ease-in-out infinite;
}

@keyframes dsSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes dsPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.85;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

.ds-loading-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #f5ede0;
    margin: 0;
    transition: opacity 0.28s ease;
}

.ds-loading-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(245, 237, 224, 0.4);
    margin: 0;
    letter-spacing: 0.05em;
}

/* Success state */
.ds-success {
    position: relative;
    padding: 20px 0 10px;
    text-align: center;
}

.ds-success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.18) 0%, transparent 70%);
    pointer-events: none;
    animation: dsGlowPulse 3s ease-in-out infinite;
}

@keyframes dsGlowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.ds-success-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    animation: dsBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes dsBounceIn {
    from {
        transform: scale(0.3);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ds-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 500;
    color: #f5ede0;
    margin: 0 0 14px;
}

.ds-success-msg {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: rgba(245, 237, 224, 0.7);
    line-height: 1.7;
    margin: 0 0 10px;
}

.ds-success-msg strong {
    color: #c9a96e;
}

.ds-success-note {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(245, 237, 224, 0.38);
    margin: 0 0 28px;
}

.ds-reset-btn {
    background: transparent;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 8px;
    padding: 9px 22px;
    color: rgba(201, 169, 110, 0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.05em;
}

.ds-reset-btn:hover {
    border-color: #c9a96e;
    color: #c9a96e;
    background: rgba(201, 169, 110, 0.06);
}

@keyframes dsShake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    60% {
        transform: translateX(6px);
    }

    80% {
        transform: translateX(-3px);
    }
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    transform: translate(var(--tx, 0px), var(--ty, 0px));
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-orb-1 {
    width: 560px;
    height: 560px;
    top: -180px;
    left: -200px;
    background: radial-gradient(circle at 38% 42%,
            rgba(160, 100, 190, 0.28) 0%,
            rgba(122, 60, 160, 0.14) 42%,
            transparent 70%);
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -120px;
    right: -80px;
    background: radial-gradient(circle at 55% 50%,
            rgba(220, 168, 60, 0.22) 0%,
            rgba(190, 130, 30, 0.10) 45%,
            transparent 70%);
}

.hero-orb-3 {
    width: 260px;
    height: 260px;
    top: 30%;
    right: 22%;
    background: radial-gradient(circle at 50% 50%,
            rgba(218, 160, 180, 0.20) 0%,
            rgba(200, 120, 150, 0.08) 50%,
            transparent 72%);
}


/* ============================================================
   9. DARK MODE — PAGE-SPECIFIC
   ============================================================ */
body.dark-theme .hero-orb-1 {
    background: radial-gradient(circle at 38% 42%, rgba(180, 120, 210, 0.32) 0%, rgba(140, 80, 180, 0.16) 42%, transparent 70%);
}

body.dark-theme .hero-orb-2 {
    background: radial-gradient(circle at 55% 50%, rgba(230, 180, 70, 0.26) 0%, rgba(200, 145, 40, 0.12) 45%, transparent 70%);
}

body.dark-theme .hero-orb-3 {
    background: radial-gradient(circle at 50% 50%, rgba(230, 175, 195, 0.22) 0%, rgba(210, 135, 165, 0.10) 50%, transparent 72%);
}

body.dark-theme .product-card:hover .product-image-box::before {
    background: radial-gradient(ellipse 70% 65% at 50% 38%, rgba(255, 245, 220, 0.11) 0%, rgba(255, 235, 190, 0.05) 40%, transparent 70%);
}

body.dark-theme .shop-card-view-btn {
    border-color: rgba(179, 147, 189, 0.28);
    color: var(--accent-light, #b393bd);
}

body.dark-theme .shop-card-view-btn:hover {
    background: rgba(179, 147, 189, 0.08);
    border-color: var(--accent-light, #b393bd);
    color: var(--accent-light, #b393bd);
}

body.dark-theme .shop-card-stone {
    color: #6b6b6b;
}


/* ============================================================
   10. RESPONSIVE BREAKPOINTS
   ─────────────────────────────────────────────────────────
   1200px  Large laptop — 4-col grid (default, explicit)
   992px   Tablet landscape — hero stacks, ritual stacks
   768px   Tablet portrait — 2-col grid, smaller titles
   480px   Mobile — 2-col grid kept, compact spacing
   360px   Very small phone — 1-col grid
   ============================================================ */

/* ── 992px: Tablet landscape ── */
@media (max-width: 992px) {
    .hero-header {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-container {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0 6%;
    }

    .hero-text-side {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual-side {
        width: 100%;
        flex: none;
        height: 380px;
        border-radius: 20px;
    }

    .ritual-grid {
        flex-direction: column;
        gap: 40px;
    }

    /* 4-col → 2-col at tablet landscape */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ── 768px: Tablet portrait ── */
@media (max-width: 768px) {

    .ritual-section {
        padding: 50px 5%;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .bestsellers-section {
        padding: 60px 4%;
    }

    /* Grid stays 2-col on tablet portrait — intentional */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .btn-floating-cart {
        font-size: 0.68rem;
        padding: 11px 0;
        letter-spacing: 1px;
    }

    .intentions-grid {
        gap: 50px;
    }

    .icon-box {
        width: 72px;
        height: 72px;
        font-size: 1.5rem;
    }

    .premium-title {
        font-size: 2rem;
    }

    /* Moon section */
    .moon-phase-section {
        padding: 80px 5% 90px;
    }

    .moon-section-title {
        font-size: 2rem;
        margin-bottom: 44px;
    }

    .moon-visual {
        width: 116px;
        height: 116px;
    }

    .moon-phase-name {
        font-size: 1.75rem;
    }

    .moon-advice-wrap {
        padding: 22px 24px;
    }

    .moon-advice-text {
        font-size: 0.92rem;
    }

    /* Aura kit */
    .aura-kit-section {
        padding: 80px 5% 90px;
    }

    .aura-kit-slot {
        width: 110px;
        height: 130px;
    }

    .aura-kit-slot-divider {
        width: 20px;
        font-size: 1.1rem;
    }

    .aura-kit-crystal-card {
        width: 112px;
    }

    .aura-kit-crystal-card img {
        width: 68px;
        height: 68px;
    }
}

/* ── 480px: Mobile ── */
@media (max-width: 480px) {
    .hero-header {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-container {
        padding: 0 5%;
        gap: 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-visual-side {
        height: 260px;
        border-radius: 16px;
    }

    /* Stack buttons on small screens */
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-liquid,
    .btn-glass {
        padding: 14px 32px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Ritual */
    .ritual-section {
        padding: 40px 5%;
    }

    .step-icon-box {
        width: 60px;
        height: 60px;
    }

    .ritual-step h3 {
        font-size: 1.1rem;
    }

    .ritual-step p {
        font-size: 0.85rem;
    }

    /* Bestsellers — KEEP 2-col on mobile */
    .bestsellers-section {
        padding: 50px 4%;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .sexy-header {
        margin-bottom: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 14px;
    }

    .product-image-box {
        border-radius: 18px;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .product-info .price,
    .price-sale {
        font-size: 0.88rem;
    }

    .btn-floating-cart {
        font-size: 0.65rem;
        padding: 10px 0;
        bottom: 10px;
    }

    /* Intentions */
    .intentions-section {
        padding: 50px 0;
    }

    .premium-title {
        font-size: 1.7rem;
    }

    .intentions-grid {
        gap: 18px;
        padding: 0 16px;
    }

    .icon-box {
        width: 62px;
        height: 62px;
        font-size: 1.4rem;
    }

    .intent-card span {
        font-size: 0.72rem;
    }

    /* Moon section */
    .moon-phase-section {
        padding: 60px 5% 70px;
    }

    .moon-section-title {
        font-size: 1.65rem;
        margin-bottom: 36px;
    }

    .moon-visual {
        width: 96px;
        height: 96px;
    }

    .moon-symbol {
        font-size: 2.1rem;
    }

    .moon-phase-name {
        font-size: 1.5rem;
    }

    .moon-advice-wrap {
        padding: 18px 20px;
    }

    .moon-advice-text {
        font-size: 0.88rem;
        line-height: 1.75;
    }

    /* Quiz */
    .quiz-opt {
        padding: 18px 10px;
    }

    .quiz-opt-icon {
        font-size: 1.6rem;
    }

    .quiz-result-card {
        flex-direction: column;
        text-align: center;
    }

    .quiz-result-actions {
        justify-content: center;
    }

    /* Aura kit */
    .aura-kit-section {
        padding: 60px 5% 70px;
    }

    .aura-kit-title {
        font-size: 2rem;
    }

    .aura-kit-slot {
        width: 88px;
        height: 110px;
        border-radius: 18px;
    }

    .aura-kit-slot-divider {
        font-size: 1rem;
        width: 16px;
    }

    .aura-kit-crystal-card {
        width: 100px;
    }

    .aura-kit-crystal-card img {
        width: 60px;
        height: 60px;
    }

    .aura-kit-add-btn {
        padding: 16px 32px;
        font-size: 0.8rem;
    }

    /* Destiny Sync form */
    .ds-card {
        padding: 32px 22px;
    }

    .ds-field-row {
        grid-template-columns: 1fr;
    }
}

/* ── 360px: Very small phone — switch to 1-col grid ── */
@media (max-width: 360px) {

    .hero-visual-side {
        height: 220px;
    }

    /* Single column only on the smallest phones */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image-box {
        border-radius: 14px;
    }

    .badge-tag {
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .btn-wishlist {
        width: 34px;
        height: 34px;
    }

    .intentions-grid {
        gap: 12px;
        padding: 0 12px;
    }

    .intent-card {
        min-width: 80px;
    }

    /* Moon */
    .moon-visual {
        width: 82px;
        height: 82px;
    }

    .moon-section-title {
        font-size: 1.45rem;
    }
}


/* ============================================================
   11. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-orb {
        transition: none !important;
        transform: translate(0, 0) !important;
    }

    .product-image-box::before {
        display: none;
    }

    .product-card:hover .product-image-box img {
        filter: none;
    }

    .shop-card-actions,
    .shop-card-bag-btn,
    .shop-card-view-btn {
        transition: none;
    }

    .product-card:hover .shop-card-actions {
        transition: none;
    }

    .moon-visual,
    .moon-symbol {
        animation: none;
        transform: none;
    }

    .moon-star {
        animation: none;
        opacity: 0.4;
    }

    .moon-eyebrow {
        animation: none;
        background: none;
        -webkit-text-fill-color: #7060a0;
        color: #7060a0;
    }

    .moon-phase-name {
        background: none;
        -webkit-text-fill-color: #c8c0e4;
        color: #c8c0e4;
    }

    .aura-kit-particles span,
    .aura-kit-eyebrow,
    .aura-kit-add-btn.is-ready {
        animation: none;
    }
}
