/* ============================================================
   home.css — Homepage sections
   Heptalume Child Theme — v2.0 Premium
   ============================================================ */

/* ── Local aliases ── */
:root {
    --surface:    var(--bg-1);
    --surface-h:  var(--bg-2);
    --border-h:   rgba(255, 255, 255, 0.11);
    --text-3:     var(--text-2);
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --r-sm:       var(--radius-sm);
    --r-md:       var(--radius-md);
    --r-lg:       var(--radius-lg);
    --glass-bg:   rgba(6, 6, 16, 0.65);
    --glass-blur: blur(22px);
}

/* ── Keyframes ── */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes floatLamp {
    0%, 100% { transform: translateY(0) rotate(0.2deg); }
    40%       { transform: translateY(-12px) rotate(-0.2deg); }
    70%       { transform: translateY(-6px) rotate(0.3deg); }
}
@keyframes haloShift {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%       { opacity: 1;    transform: scale(1.14); }
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes trackMove {
    0%   { left: -100%; }
    100% { left:  100%; }
}
@keyframes orbPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.6; }
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
.reveal.visible            { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible    { transition-delay: 0.12s; }
.reveal-delay-2.visible    { transition-delay: 0.24s; }
.reveal-delay-3.visible    { transition-delay: 0.36s; }
.reveal-delay-4.visible    { transition-delay: 0.48s; }

/* ============================================================
   SECTION BASE
   ============================================================ */
.hp-section {
    padding: 140px 0;
    position: relative;
}

.hp-container {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 48px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.section-tag::before {
    content: '';
    width: 28px; height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(200,151,106,0.3));
    flex-shrink: 0;
}
.section-tag::after {
    content: '✦';
    font-size: 7px;
    opacity: 0.55;
    margin-left: 2px;
}

.section-h2 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.04;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.015em;
}
.section-h2 em {
    font-style: italic;
    color: var(--c7);
    font-weight: 300;
}

.section-sub {
    font-size: 16px;
    line-height: 1.9;
    font-weight: 300;
    color: var(--text-2);
    max-width: 520px;
    letter-spacing: 0.01em;
}

/* ============================================================
   HERO
   ============================================================ */
.hp-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

/* Layered atmospheric depth */
.hp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 82% 38%, rgba(107,79,204,0.10) 0%, transparent 62%),
        radial-gradient(ellipse 55% 55% at 72% 82%, rgba(61,186,110,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 55% at 88% 4%, rgba(200,151,106,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 45% 80% at 12% 50%, rgba(196,127,255,0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle sacred geometry grid */
.hp-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200,151,106,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,151,106,0.022) 1px, transparent 1px);
    background-size: 76px 76px;
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 68% 50%, black 5%, transparent 72%);
    mask-image: radial-gradient(ellipse 90% 90% at 68% 50%, black 5%, transparent 72%);
    pointer-events: none;
    z-index: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 134px 64px 96px 88px;
    position: relative;
    z-index: 2;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 7px;
    background: rgba(200,151,106,0.07);
    border: 1px solid rgba(200,151,106,0.18);
    border-radius: 20px;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: rgba(200,151,106,0.85);
    margin-bottom: 42px;
    width: fit-content;
    opacity: 0;
    animation: slideUp 0.8s 0.2s var(--ease-out) forwards;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.badge-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c7), var(--c5));
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
    box-shadow: 0 0 12px rgba(107,79,204,0.45);
}

/* Hero heading */
.hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(54px, 6.8vw, 96px);
    font-weight: 400;
    line-height: 0.98;
    color: var(--white);
    margin-bottom: 32px;
    opacity: 0;
    animation: slideUp 0.95s 0.35s var(--ease-out) forwards;
    letter-spacing: -0.025em;
}
.hero-h1 .outline {
    -webkit-text-stroke: 1.5px rgba(200,151,106,0.55);
    color: transparent;
    font-style: italic;
    font-weight: 300;
    display: block;
    margin-top: 2px;
}

.hero-p {
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    color: var(--text-2);
    max-width: 400px;
    margin-bottom: 56px;
    opacity: 0;
    animation: slideUp 0.95s 0.5s var(--ease-out) forwards;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: slideUp 0.95s 0.65s var(--ease-out) forwards;
}

/* Hero CTA buttons */
.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: #120a02 !important;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 44px rgba(200,151,106,0.32);
    color: #120a02 !important;
}

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn-ghost-hero:hover {
    border-color: rgba(200,151,106,0.3);
    background: rgba(200,151,106,0.06);
    color: var(--white);
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
}
.btn-fill:hover .btn-arrow,
.btn-ghost-hero:hover .btn-arrow { transform: translateX(4px); }

/* Lamp visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lamp-halo {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
        rgba(107,79,204,0.15) 0%,
        rgba(61,186,110,0.06) 35%,
        rgba(196,127,255,0.04) 58%,
        transparent 72%);
    pointer-events: none;
    animation: haloShift 7s ease-in-out infinite;
    filter: blur(2px);
}

.lamp-mockup {
    position: relative;
    width: 220px;
    animation: floatLamp 6.5s ease-in-out infinite;
}

.lamp-body {
    width: 20px; height: 360px;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.18),
        rgba(255,255,255,0.08) 28%,
        rgba(255,255,255,0.06) 72%,
        rgba(255,255,255,0.04));
    border-radius: 10px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 0 60px rgba(255,255,255,0.025),
        inset 0 1px 0 rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.09);
}

.lamp-orbs {
    position: absolute;
    left: 50%; top: 28px;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 38px;
    z-index: 2;
}

.lo {
    width: 26px; height: 26px;
    border-radius: 50%;
    position: relative; flex-shrink: 0;
}
.lo::after {
    content: '';
    position: absolute; inset: -7px;
    border-radius: 50%; opacity: 0;
    transition: opacity 0.35s;
    filter: blur(10px);
}
.lo:hover::after { opacity: 0.75; }

.lo-7 { background: var(--c7); box-shadow: 0 0 20px var(--c7), 0 0 50px rgba(196,127,255,0.22); animation: orbPulse 3.8s 0s ease-in-out infinite; }
.lo-7::after { background: var(--c7); }
.lo-6 { background: var(--c6); box-shadow: 0 0 20px var(--c6), 0 0 50px rgba(107,79,204,0.22); animation: orbPulse 3.8s 0.54s ease-in-out infinite; }
.lo-6::after { background: var(--c6); }
.lo-5 { background: var(--c5); box-shadow: 0 0 20px var(--c5), 0 0 50px rgba(46,156,255,0.22); animation: orbPulse 3.8s 1.08s ease-in-out infinite; }
.lo-5::after { background: var(--c5); }
.lo-4 { background: var(--c4); box-shadow: 0 0 20px var(--c4), 0 0 50px rgba(61,186,110,0.22); animation: orbPulse 3.8s 1.62s ease-in-out infinite; }
.lo-4::after { background: var(--c4); }
.lo-3 { background: var(--c3); box-shadow: 0 0 20px var(--c3), 0 0 50px rgba(255,214,0,0.22); animation: orbPulse 3.8s 2.16s ease-in-out infinite; }
.lo-3::after { background: var(--c3); }
.lo-2 { background: var(--c2); box-shadow: 0 0 20px var(--c2), 0 0 50px rgba(255,140,0,0.22); animation: orbPulse 3.8s 2.7s ease-in-out infinite; }
.lo-2::after { background: var(--c2); }
.lo-1 { background: var(--c1); box-shadow: 0 0 20px var(--c1), 0 0 50px rgba(255,60,60,0.22); animation: orbPulse 3.8s 3.24s ease-in-out infinite; }
.lo-1::after { background: var(--c1); }

/* Lamp labels */
.lamp-label {
    position: absolute;
    right: -144px;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.12em;
    color: var(--text-2);
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) forwards;
}
.lamp-label-line {
    width: 44px; height: 1px;
    background: linear-gradient(90deg, rgba(200,151,106,0.28), transparent);
    flex-shrink: 0;
}
.ll-1 { top: 20px;    animation-delay: 1.1s; }
.ll-2 { top: 45%;     animation-delay: 1.3s; }
.ll-3 { bottom: 20px; animation-delay: 1.5s; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute; bottom: 44px; left: 88px;
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.22em;
    color: var(--text-2); text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.8s ease forwards;
}
.scroll-track {
    width: 44px; height: 1px;
    background: rgba(255,255,255,0.08);
    position: relative; overflow: hidden;
}
.scroll-track::after {
    content: '';
    position: absolute;
    left: -100%; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: trackMove 2.5s ease-in-out infinite;
}

/* ============================================================
   TICKER
   ============================================================ */
.hp-ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    overflow: hidden;
    background: var(--bg-1);
    position: relative;
}
.hp-ticker::before,
.hp-ticker::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.hp-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-1) 30%, transparent);
}
.hp-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-1) 30%, transparent);
}
.hp-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
    display: flex; gap: 0;
    animation: tickerScroll 34s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker-item {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 0 36px;
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.16em;
    color: var(--text-2); text-transform: uppercase;
}
.ticker-sep { color: var(--c7); font-size: 9px; opacity: 0.65; }

/* ============================================================
   PRODUCT / LAMP SECTION
   ============================================================ */
.hp-product {
    background: var(--bg-1);
    position: relative;
}
.hp-product::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 65% at 18% 50%, rgba(107,79,204,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: start;
}

.product-visual-wrap {
    position: sticky; top: 100px;
}

.product-card {
    aspect-ratio: 3 / 4;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 32px 80px rgba(0,0,0,0.45);
}
.product-card::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 10%, rgba(196,127,255,0.14), transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(255,60,60,0.08), transparent 50%);
    pointer-events: none;
}
.product-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,151,106,0.25), transparent);
}
.product-card-inner {
    display: flex; flex-direction: column;
    align-items: center;
    position: relative; z-index: 1;
}
.product-orb-stack {
    display: flex; flex-direction: column;
    align-items: center; gap: 30px;
    margin-bottom: 44px;
}
.po {
    width: 32px; height: 32px; border-radius: 50%;
    position: relative;
    transition: transform 0.35s ease;
}
.po:hover { transform: scale(1.3); }
.po::before {
    content: ''; position: absolute;
    inset: -10px; border-radius: 50%;
    opacity: 0.22; filter: blur(14px);
    transition: opacity 0.3s;
}
.po:hover::before { opacity: 0.5; }
.po-7 { background: var(--c7); box-shadow: 0 0 28px var(--c7); }
.po-7::before { background: var(--c7); }
.po-6 { background: var(--c6); box-shadow: 0 0 28px var(--c6); }
.po-6::before { background: var(--c6); }
.po-5 { background: var(--c5); box-shadow: 0 0 28px var(--c5); }
.po-5::before { background: var(--c5); }
.po-4 { background: var(--c4); box-shadow: 0 0 28px var(--c4); }
.po-4::before { background: var(--c4); }
.po-3 { background: var(--c3); box-shadow: 0 0 28px var(--c3); }
.po-3::before { background: var(--c3); }
.po-2 { background: var(--c2); box-shadow: 0 0 28px var(--c2); }
.po-2::before { background: var(--c2); }
.po-1 { background: var(--c1); box-shadow: 0 0 28px var(--c1); }
.po-1::before { background: var(--c1); }

.product-card-label {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.24em;
    color: rgba(200,151,106,0.45); text-transform: uppercase;
}

.product-badges {
    position: absolute; top: 20px; left: 20px; right: 20px;
    display: flex; justify-content: space-between; align-items: flex-start;
    z-index: 2;
}
.pbadge {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.14em;
    padding: 5px 11px; border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(3,3,8,0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-2);
}
.pbadge-gold { border-color: rgba(200,151,106,0.22); color: var(--gold); }

/* Product details */
.product-details { padding-top: 28px; }
.product-title {
    font-family: var(--font-heading);
    font-size: clamp(46px, 5.5vw, 70px);
    font-weight: 400; line-height: 0.94;
    color: var(--white); margin-bottom: 12px;
    letter-spacing: -0.015em;
}
.product-title em {
    font-style: italic; display: block;
    color: var(--gold-l); font-size: 0.68em; margin-top: 10px;
    font-weight: 300;
    letter-spacing: 0.02em;
}
.product-meta {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.2em;
    color: var(--text-2); text-transform: uppercase;
    margin-bottom: 36px;
    display: flex; align-items: center; gap: 10px;
}
.product-meta::before {
    content: '';
    width: 22px; height: 1px;
    background: rgba(200,151,106,0.3);
    flex-shrink: 0;
}
.product-desc {
    font-size: 15px; line-height: 1.95; font-weight: 300;
    color: var(--text-2); margin-bottom: 44px;
    letter-spacing: 0.01em;
}

/* Specs grid */
.specs-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--r-md);
    overflow: hidden; margin-bottom: 44px;
}
.spec-cell {
    background: rgba(6,6,16,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px 24px;
    transition: background 0.3s;
}
.spec-cell:hover { background: rgba(12,12,28,0.85); }
.spec-cell-label {
    font-family: var(--font-mono);
    font-size: 8px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-2);
    margin-bottom: 8px; display: block;
}
.spec-cell-val { font-size: 13px; color: var(--white); letter-spacing: 0.01em; }
.spec-cell-icon { font-size: 18px; margin-bottom: 10px; display: block; }

/* Price row */
.price-row {
    display: flex; align-items: center; gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 36px;
}
.price-main {
    font-family: var(--font-heading);
    font-size: 44px; font-weight: 300;
    color: var(--gold-l); font-style: italic;
    letter-spacing: 0.01em;
}
.price-note { font-size: 12px; color: var(--text-2); line-height: 1.6; letter-spacing: 0.02em; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CHAKRA INTERACTIVE
   ============================================================ */
.hp-chakras {
    background: var(--bg);
    position: relative;
}
.hp-chakras::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 82% 28%, rgba(196,127,255,0.06) 0%, transparent 68%),
        radial-gradient(ellipse 42% 42% at 18% 72%, rgba(61,186,110,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.chakra-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: start;
}
.chakra-list { display: flex; flex-direction: column; gap: 3px; }

.chakra-row {
    display: flex; align-items: center; gap: 18px;
    padding: 16px 20px;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.chakra-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--active-color, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 1px 1px 0;
}
.chakra-row:hover::before,
.chakra-row.active::before { opacity: 1; }

.chakra-row:hover,
.chakra-row.active {
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.06);
}
.chakra-row.active {
    background: rgba(255,255,255,0.035);
    border-color: rgba(255,255,255,0.08);
}

.chakra-num {
    font-family: var(--font-mono);
    font-size: 9px; color: var(--text-2);
    width: 20px; flex-shrink: 0;
    letter-spacing: 0.06em;
}
.chakra-circle {
    width: 14px; height: 14px; border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow 0.4s, transform 0.3s;
}
.chakra-row:hover .chakra-circle,
.chakra-row.active .chakra-circle {
    box-shadow: 0 0 16px var(--chakra-color, white);
    transform: scale(1.18);
}

.chakra-row-text { flex: 1; }
.chakra-name-row {
    font-size: 15px; font-weight: 400; color: var(--white); margin-bottom: 3px;
    letter-spacing: 0.01em;
}
.chakra-sanskrit {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.12em; color: var(--text-2);
}
.chakra-chevron {
    font-size: 14px; color: var(--text-2);
    transition: transform 0.3s, color 0.3s;
    margin-right: -4px;
}
.chakra-row:hover .chakra-chevron,
.chakra-row.active .chakra-chevron { transform: translateX(5px); color: var(--white); }

/* Chakra detail panel */
.chakra-detail {
    position: sticky; top: 100px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    padding: 44px; min-height: 420px;
    transition: border-color 0.5s;
    box-shadow: 0 28px 72px rgba(0,0,0,0.32);
    overflow: hidden;
}
.chakra-detail::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}
.chakra-detail-orb {
    width: 80px; height: 80px; border-radius: 50%;
    margin-bottom: 32px;
    transition: background 0.5s, box-shadow 0.5s;
    position: relative;
}
.chakra-detail-orb::after {
    content: ''; position: absolute; inset: -22px;
    border-radius: 50%; opacity: 0.18;
    filter: blur(26px);
    background: inherit;
    transition: background 0.5s;
}
.chakra-detail-number {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.24em;
    color: var(--text-2); margin-bottom: 10px;
}
.chakra-detail-name {
    font-family: var(--font-heading);
    font-size: 38px; font-weight: 400;
    color: var(--white); margin-bottom: 6px;
    transition: all 0.4s;
    letter-spacing: -0.01em;
}
.chakra-detail-sanskrit {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.2em;
    color: var(--text-2); margin-bottom: 28px;
}
.chakra-detail-desc {
    font-size: 14px; line-height: 1.9;
    color: var(--text-2); margin-bottom: 32px;
    letter-spacing: 0.01em;
}
.chakra-detail-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-tag {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.025);
    color: var(--text-2);
    transition: border-color 0.3s, color 0.3s;
}
.kw-tag:hover {
    border-color: rgba(200,151,106,0.28);
    color: var(--gold);
}

/* ============================================================
   USES SECTION
   ============================================================ */
.hp-uses {
    background: var(--bg-1);
    position: relative;
}
.hp-uses::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.013) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.013) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.uses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 72px;
}

.use-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    padding: 42px;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    position: relative; overflow: hidden;
}
.use-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--card-c1, transparent), var(--card-c2, transparent));
    opacity: 0; transition: opacity 0.4s;
}
.use-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
}
.use-card:hover {
    border-color: rgba(255,255,255,0.11);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.38);
}
.use-card:hover::before { opacity: 1; }
.use-card--1 { --card-c1: var(--c6); --card-c2: var(--c7); }
.use-card--2 { --card-c1: var(--c4); --card-c2: var(--c5); }
.use-card--3 { --card-c1: var(--c2); --card-c2: var(--c3); }

.use-icon {
    width: 52px; height: 52px; border-radius: var(--r-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 28px;
}
.use-title {
    font-family: var(--font-heading);
    font-size: 28px; font-weight: 400;
    color: var(--white); margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.use-desc { font-size: 14px; line-height: 1.9; color: var(--text-2); letter-spacing: 0.01em; }

/* ============================================================
   COLLECTION / FEATURED PRODUCTS
   ============================================================ */
.hp-collection {
    background: var(--bg);
    position: relative;
}
.hp-collection::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 55% at 50% 50%, rgba(200,151,106,0.04) 0%, transparent 68%);
    pointer-events: none;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 72px;
}

/* WooCommerce product card */
.hp-product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    text-decoration: none;
    display: flex; flex-direction: column;
}
.hp-product-card:hover {
    border-color: rgba(200,151,106,0.2);
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(0,0,0,0.32);
}

.hp-product-thumb {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-2);
    position: relative;
}
.hp-product-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}
.hp-product-card:hover .hp-product-thumb img { transform: scale(1.06); }

.hp-product-thumb--placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
    background: radial-gradient(circle at 50%, var(--coll-glow, rgba(107,79,204,0.1)), transparent 70%);
}

.hp-product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.hp-product-cat {
    font-family: var(--font-mono);
    font-size: 8px; letter-spacing: 0.22em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 12px;
}
.hp-product-name {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 400;
    color: var(--white); margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.hp-product-price {
    font-family: var(--font-heading);
    font-size: 22px; font-style: italic; font-weight: 300;
    color: var(--gold); margin-top: auto;
    padding-top: 14px;
}

/* Placeholder "Próximamente" cards */
.coll-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
}
.coll-card:hover {
    border-color: rgba(255,255,255,0.11);
    transform: translateY(-4px);
    box-shadow: 0 28px 68px rgba(0,0,0,0.32);
}
.coll-card--1 { --coll-glow: rgba(196,127,255,0.12); }
.coll-card--2 { --coll-glow: rgba(46,156,255,0.10); }
.coll-card--3 { --coll-glow: rgba(255,214,0,0.08); }

.coll-img {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 52px; position: relative;
    background: radial-gradient(circle at 50%, var(--coll-glow, rgba(107,79,204,0.1)), transparent 70%);
}
.coll-body { padding: 28px; }
.coll-status {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 8px; letter-spacing: 0.2em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(200,151,106,0.2);
    border-radius: 2px;
}
.coll-title {
    font-family: var(--font-heading);
    font-size: 24px; font-weight: 400;
    color: var(--white); margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.coll-desc { font-size: 13px; line-height: 1.85; color: var(--text-2); margin-bottom: 18px; letter-spacing: 0.01em; }
.coll-price {
    font-family: var(--font-heading);
    font-size: 22px; font-style: italic; font-weight: 300; color: var(--text-2);
}

/* View all */
.collection-cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================================
   NEWSLETTER / WAITLIST
   ============================================================ */
.hp-newsletter {
    background: var(--bg-1);
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    overflow: hidden;
}
.hp-newsletter::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,151,106,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.hp-newsletter::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(200,151,106,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,151,106,0.018) 1px, transparent 1px);
    background-size: 62px 62px;
    pointer-events: none;
}

.nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px; align-items: center;
    background: rgba(5,5,14,0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl, 24px);
    padding: 68px 76px;
    position: relative; z-index: 1;
    box-shadow:
        0 44px 110px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.nl-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 400; line-height: 1.04;
    color: var(--white); margin-bottom: 20px;
    letter-spacing: -0.015em;
}
.nl-title em { font-style: italic; color: var(--gold-l); font-weight: 300; }
.nl-sub {
    font-size: 15px; line-height: 1.9;
    color: var(--text-2);
    letter-spacing: 0.01em;
}

.nl-perks {
    display: flex; flex-direction: column; gap: 16px;
    margin-bottom: 36px;
}
.nl-perk {
    display: flex; align-items: center; gap: 16px;
    font-size: 14px; color: var(--text);
    letter-spacing: 0.01em;
}
.nl-perk-dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}

/* Fluent Forms override */
.hp-newsletter .ff-el-group,
.hp-newsletter .fluentform .ff-el-group { margin-bottom: 0; }
.hp-newsletter .ff_submit_btn_wrapper { margin-top: 0; }

/* Fallback form */
.nl-form-fallback {
    display: flex; gap: 0;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--r-md); overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: rgba(255,255,255,0.025);
}
.nl-form-fallback:focus-within {
    border-color: rgba(200,151,106,0.35);
    box-shadow: 0 0 0 4px rgba(200,151,106,0.07);
}
.nl-input {
    flex: 1; background: transparent;
    border: none; padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 300;
    color: var(--white); outline: none;
    letter-spacing: 0.01em;
}
.nl-input::placeholder { color: var(--text-2); opacity: 0.45; }
.nl-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    border: none; padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: #120a02;
    cursor: pointer; transition: opacity 0.25s;
}
.nl-submit:hover { opacity: 0.88; }
.nl-note { font-size: 11px; color: var(--text-2); margin-top: 14px; letter-spacing: 0.06em; }

/* ============================================================
   RESPONSIVE — Homepage
   ============================================================ */
@media (max-width: 1100px) {
    .hero-left { padding: 114px 44px 76px 56px; }
    .nl-inner  { gap: 72px; padding: 56px 60px; }
}

@media (max-width: 960px) {
    .hp-hero    { grid-template-columns: 1fr; min-height: auto; }
    .hero-left  { padding: 132px 32px 68px; order: 1; text-align: center; }
    .hero-right { min-height: 65vw; order: 2; }
    .hero-actions { justify-content: center; }
    .hero-scroll-hint { left: 32px; }

    .product-layout   { grid-template-columns: 1fr; gap: 60px; }
    .product-visual-wrap { position: static; }
    .product-card     { max-width: 380px; margin: 0 auto; }

    .chakra-layout    { grid-template-columns: 1fr; gap: 36px; }
    .chakra-detail    { position: static; }

    .uses-grid        { grid-template-columns: 1fr; gap: 16px; }
    .collection-grid  { grid-template-columns: repeat(2, 1fr); }

    .nl-inner         { grid-template-columns: 1fr; gap: 56px; padding: 48px 44px; }
    .hp-container     { padding-inline: 24px; }
    .hp-section       { padding: 96px 0; }
}

@media (max-width: 600px) {
    .hero-left  { padding: 112px 20px 60px; }
    .hero-h1    { font-size: clamp(42px, 11vw, 62px); }

    .collection-grid { grid-template-columns: 1fr; }
    .uses-grid       { grid-template-columns: 1fr; }
    .specs-grid      { grid-template-columns: 1fr; }

    .nl-inner { padding: 38px 28px; gap: 44px; border-radius: var(--r-lg); }

    .hp-container    { padding-inline: 20px; }
    .hp-section      { padding: 72px 0; }
}

/* ============================================================
   NUEVA PORTADA (fp-*) — Hero shader · Audio · Productos · Filosofía
   ============================================================ */

/* ── Keyframes nuevos ── */
@keyframes fpFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fpScrollBounce {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50%       { opacity: 1;   transform: translateY(5px); }
}
@keyframes fpAudioPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(2.2); opacity: 0; }
}
@keyframes fpGoldGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(200,151,106,0.25),
            0 0 18px rgba(200,151,106,0.12),
            0 8px 32px rgba(0,0,0,0.45);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(200,151,106,0.5),
            0 0 36px rgba(200,151,106,0.28),
            0 12px 44px rgba(0,0,0,0.5);
    }
}

/* ============================================================
   § 1 — HERO SHADER
   ============================================================ */
.fp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

/* Canvas — posición absoluta, detrás del contenido */
.fp-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    z-index: 0;
}

/* Gradiente oscuro encima del canvas para legibilidad */
.fp-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(3,3,8,0.45) 0%, rgba(3,3,8,0.82) 100%),
        linear-gradient(to bottom, rgba(3,3,8,0.6) 0%, transparent 30%, transparent 70%, rgba(3,3,8,0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Contenido centrado */
.fp-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    max-width: 680px;
}

/* Logo */
.fp-hero__logo {
    height: auto;
    width: clamp(80px, 12vw, 130px);
    margin-bottom: 36px;
    filter: drop-shadow(0 0 28px rgba(196,127,255,0.35));
    opacity: 0;
    animation: fpFadeUp 1s 0.3s ease forwards;
}

/* Título */
.fp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 400;
    line-height: 1.04;
    color: var(--white);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    opacity: 0;
    animation: fpFadeUp 1s 0.55s ease forwards;
    text-shadow: 0 0 40px rgba(196,127,255,0.15);
}

/* Subtítulo */
.fp-hero__sub {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    line-height: 1.75;
    color: var(--text-2);
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 480px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fpFadeUp 1s 0.75s ease forwards;
}

/* CTA */
.fp-hero__cta {
    opacity: 0;
    animation: fpFadeUp 1s 0.95s ease forwards;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Indicador de scroll */
.fp-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    opacity: 0;
    animation: fpFadeUp 1s 1.6s ease forwards;
}

.fp-scroll-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: fpScrollBounce 1.6s ease-in-out infinite;
}
.fp-scroll-dot:nth-child(2) { animation-delay: 0.2s; background: rgba(255,255,255,0.5); }
.fp-scroll-dot:nth-child(3) { animation-delay: 0.4s; }

/* Reduced motion: no canvas, no animations */
@media (prefers-reduced-motion: reduce) {
    .fp-hero__canvas          { display: none; }
    .fp-hero__logo,
    .fp-hero__title,
    .fp-hero__sub,
    .fp-hero__cta,
    .fp-hero__scroll          { opacity: 1; animation: none; }
    .fp-scroll-dot            { animation: none; }
}

/* ============================================================
   § 2 — REPRODUCTOR DE AUDIO FLOTANTE
   ============================================================ */
.fp-audio {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 150;
    pointer-events: none;
}

.fp-audio__btn {
    pointer-events: all;
    position: relative;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(3,3,8,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-2);
    font-size: 1.125rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.fp-audio__btn:hover {
    border-color: rgba(200,151,106,0.4);
    color: var(--gold);
    background: rgba(6,6,16,0.9);
}

.fp-audio__btn.is-playing {
    border-color: rgba(200,151,106,0.5);
    color: var(--gold);
}

/* Anillo pulsante cuando reproduce */
.fp-audio__ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    opacity: 0;
    pointer-events: none;
}

.fp-audio__btn.is-playing .fp-audio__ring {
    animation: fpAudioPulse 2.2s ease-out infinite;
}

.fp-audio__icon {
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
    user-select: none;
}

/* ============================================================
   § 3 — SECCIÓN GLOBAL HELPER
   ============================================================ */
.fp-section-inner {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-xl);
}

.fp-section-inner--narrow {
    max-width: 760px;
    text-align: center;
}

.fp-section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.fp-eyebrow::before,
.fp-eyebrow::after {
    content: '';
    width: 24px; height: 1px;
    background: rgba(200,151,106,0.35);
}

.fp-section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.06;
    letter-spacing: -0.018em;
    margin-bottom: 16px;
}
.fp-section-title em {
    font-style: italic;
    color: var(--c7);
    font-weight: 300;
}
.fp-section-title--centered {
    text-align: center;
}

.fp-section-desc {
    font-size: 1rem;
    color: var(--text-2);
    font-weight: 300;
    line-height: 1.7;
    max-width: 460px;
    margin-inline: auto;
}

/* ============================================================
   § 3 — PRODUCTOS DESTACADOS
   ============================================================ */
.fp-products {
    padding: 120px 0;
    background: var(--bg-1);
    border-top: 1px solid var(--border);
    position: relative;
}
.fp-products::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 55% at 20% 30%, rgba(196,127,255,0.05) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 80% 70%, rgba(46,156,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid 2×2 */
.fp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0 0 var(--space-xl);
    padding: 0;
}

/* ── Tarjeta de producto con hover dorado (solo CSS) ── */
.fp-product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        border-color 0.35s ease,
        transform    0.35s ease,
        box-shadow   0.35s ease;
    position: relative;
}

/* Efecto de brillo dorado en borde — SOLO CSS, sin JS */
.fp-product-card:hover {
    border-color: rgba(200,151,106,0.45);
    transform: translateY(-4px);
    animation: fpGoldGlow 2s ease-in-out infinite;
}

/* Línea superior dorada al hacer hover */
.fp-product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,151,106,0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 2;
}
.fp-product-card:hover::before { opacity: 1; }

.fp-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Thumbnail */
.fp-card-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--bg-2);
    position: relative;
}

.fp-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.fp-product-card:hover .fp-card-img { transform: scale(1.06); }

.fp-card-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    width: 100%;
    height: 100%;
}

/* Glow radial sobre la imagen en hover */
.fp-card-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--card-glow, rgba(200,151,106,0.08)), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.fp-product-card:hover .fp-card-thumb::after { opacity: 1; }

/* Body */
.fp-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fp-card-cat {
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.fp-card-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    flex: 1;
}

.fp-card-price {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 14px;
}
.fp-card-price .price { color: var(--gold); }
.fp-card-price del { color: var(--text-2); font-size: 0.85em; margin-right: 6px; }

.fp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    transition: color 0.25s ease;
    margin-top: auto;
}
.fp-product-card:hover .fp-card-cta { color: var(--gold-l); }

/* Footer del grid */
.fp-products-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

.fp-products-empty {
    text-align: center;
    padding: var(--space-2xl) 0;
    color: var(--text-2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

/* ============================================================
   § 4 — NUESTRA FILOSOFÍA
   ============================================================ */
.fp-philosophy {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.fp-philosophy::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 50% 40%, rgba(200,151,106,0.05) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 15% 80%, rgba(196,127,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Logo decorativo */
.fp-philo-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.fp-philo-logo {
    height: auto;
    width: clamp(48px, 6vw, 70px);
    position: relative;
    z-index: 1;
    filter: brightness(0.9);
}

.fp-philo-logo-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,151,106,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Texto de filosofía */
.fp-philo-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-2);
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 640px;
    margin: var(--space-lg) auto var(--space-xl);
    text-align: left;
}
.fp-philo-text p { margin-bottom: 1.3em; }
.fp-philo-text p:last-child { margin-bottom: 0; }

/* Barra de chakras decorativa */
.fp-philo-chakra-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-lg);
}

.fp-philo-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    opacity: 0.75;
    transition: opacity 0.3s, transform 0.3s;
}
.fp-philo-dot:hover {
    opacity: 1;
    transform: scale(1.3);
}

/* ============================================================
   RESPONSIVE — Nueva portada
   ============================================================ */
@media (max-width: 1100px) {
    .fp-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .fp-section-inner { padding-inline: var(--space-lg); }
    .fp-products      { padding: 80px 0; }
    .fp-philosophy    { padding: 80px 0; }
}

@media (max-width: 600px) {
    .fp-hero__logo   { width: clamp(60px, 18vw, 90px); }
    .fp-section-inner { padding-inline: var(--space-md); }
    .fp-products-grid { grid-template-columns: 1fr; gap: 16px; }
    .fp-audio         { bottom: 20px; left: 20px; }
    .fp-audio__btn    { width: 42px; height: 42px; font-size: 1rem; }
    .fp-products  { padding: 64px 0; }
    .fp-philosophy{ padding: 64px 0; }
}
