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

/* ── Local aliases to map mockup variables to design tokens ── */
:root {
    --surface:    var(--bg-1);
    --surface-h:  var(--bg-2);
    --border-h:   rgba(255, 255, 255, 0.12);
    --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);
}

/* ── Keyframes ── */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes floatLamp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes haloShift {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.08); }
}
@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes trackMove {
    0%   { left: -100%; }
    100% { left:  100%; }
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible            { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible    { transition-delay: 0.1s; }
.reveal-delay-2.visible    { transition-delay: 0.2s; }
.reveal-delay-3.visible    { transition-delay: 0.3s; }
.reveal-delay-4.visible    { transition-delay: 0.4s; }

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

.hp-container {
    max-width: 1160px;
    margin-inline: auto;
    padding-inline: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.section-tag::before {
    content: '';
    width: 20px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.section-h2 em { font-style: italic; color: var(--c7); }

.section-sub {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-2);
    max-width: 500px;
}

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

.hp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 75% 50%, rgba(107,79,204,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 25% 80%, rgba(61,186,110,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 10%, rgba(200,151,106,0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

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

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 6px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-2);
    margin-bottom: 36px;
    width: fit-content;
    opacity: 0;
    animation: slideUp 0.8s 0.2s var(--ease-out) forwards;
}
.badge-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c7), var(--c5));
    display: flex; align-items: center; justify-content: center;
    font-size: 9px;
}

/* Hero heading */
.hero-h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    opacity: 0;
    animation: slideUp 0.9s 0.35s var(--ease-out) forwards;
}
.hero-h1 .outline {
    -webkit-text-stroke: 1px rgba(200,151,106,0.5);
    color: transparent;
    font-style: italic;
}

.hero-p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-2);
    max-width: 420px;
    margin-bottom: 48px;
    opacity: 0;
    animation: slideUp 0.9s 0.5s var(--ease-out) forwards;
}

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

/* Hero CTA buttons */
.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    color: #120a02 !important;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.05em;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}
.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200,151,106,0.25);
    color: #120a02 !important;
}

.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1px solid var(--border-h);
    color: var(--text);
    font-size: 13px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition);
}
.btn-ghost-hero:hover {
    border-color: var(--gold);
    background: rgba(200,151,106,0.05);
    color: var(--white);
}

.btn-arrow {
    font-size: 16px;
    transition: transform var(--transition);
}
.btn-fill:hover .btn-arrow,
.btn-ghost-hero:hover .btn-arrow { transform: translateX(3px); }

/* Lamp visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lamp-halo {
    position: absolute;
    inset: -60px;
    background: radial-gradient(ellipse at center,
        rgba(107,79,204,0.12) 0%,
        rgba(61,186,110,0.06) 40%,
        transparent 70%);
    pointer-events: none;
    animation: haloShift 8s ease-in-out infinite;
}
.lamp-mockup {
    position: relative;
    width: 220px;
    animation: floatLamp 5s ease-in-out infinite;
}
.lamp-body {
    width: 18px; height: 340px;
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.12),
        rgba(255,255,255,0.06) 50%,
        rgba(255,255,255,0.04));
    border-radius: 9px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 40px rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}
.lamp-orbs {
    position: absolute;
    left: 50%; top: 24px;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 36px;
    z-index: 2;
}
.lo {
    width: 24px; height: 24px;
    border-radius: 50%;
    position: relative; flex-shrink: 0;
}
.lo::after {
    content: '';
    position: absolute; inset: -6px;
    border-radius: 50%; opacity: 0;
    transition: opacity 0.3s;
    filter: blur(10px);
}
.lo:hover::after { opacity: 0.8; }
.lo-7 { background: var(--c7); box-shadow: 0 0 20px var(--c7), 0 0 50px rgba(196,127,255,0.3); }
.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.3); }
.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.3); }
.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.3); }
.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.3); }
.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.3); }
.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.3); }
.lo-1::after { background: var(--c1); }

/* Lamp labels */
.lamp-label {
    position: absolute;
    right: -130px;
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em;
    color: var(--text-2);
    white-space: nowrap;
    opacity: 0;
    animation: fadeIn 0.6s var(--ease-out) forwards;
}
.lamp-label-line { width: 40px; height: 1px; background: var(--border); flex-shrink: 0; }
.ll-1 { top: 16px;  animation-delay: 1s; }
.ll-2 { top: 45%;   animation-delay: 1.2s; }
.ll-3 { bottom: 16px; animation-delay: 1.4s; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute; bottom: 40px; left: 80px;
    display: flex; align-items: center; gap: 12px;
    font-size: 11px; letter-spacing: 0.15em;
    color: var(--text-2); text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.5s ease forwards;
}
.scroll-track {
    width: 40px; height: 1px;
    background: var(--border);
    position: relative; overflow: hidden;
}
.scroll-track::after {
    content: '';
    position: absolute;
    left: -100%; top: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: trackMove 2s ease-in-out infinite;
}

/* ============================================================
   TICKER
   ============================================================ */
.hp-ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
    background: var(--bg-1);
}
.hp-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
    display: flex; gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.ticker-item {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 0 32px;
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.12em;
    color: var(--text-2); text-transform: uppercase;
}
.ticker-sep { color: var(--c7); font-size: 14px; }

/* ============================================================
   PRODUCT / LAMP SECTION
   ============================================================ */
.hp-product { background: var(--bg-1); }

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

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

.product-card {
    aspect-ratio: 3 / 4;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.product-card::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 50% 15%, rgba(196,127,255,0.12), transparent 50%),
        radial-gradient(circle at 50% 85%, rgba(255,60,60,0.08), transparent 50%);
}
.product-card-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 0;
    position: relative; z-index: 1;
}
.product-orb-stack {
    display: flex; flex-direction: column;
    align-items: center; gap: 28px;
    margin-bottom: 32px;
}
.po {
    width: 28px; height: 28px; border-radius: 50%;
    position: relative;
}
.po::before {
    content: ''; position: absolute;
    inset: -8px; border-radius: 50%;
    opacity: 0.3; filter: blur(12px);
}
.po-7 { background: var(--c7); box-shadow: 0 0 24px var(--c7); }
.po-7::before { background: var(--c7); }
.po-6 { background: var(--c6); box-shadow: 0 0 24px var(--c6); }
.po-6::before { background: var(--c6); }
.po-5 { background: var(--c5); box-shadow: 0 0 24px var(--c5); }
.po-5::before { background: var(--c5); }
.po-4 { background: var(--c4); box-shadow: 0 0 24px var(--c4); }
.po-4::before { background: var(--c4); }
.po-3 { background: var(--c3); box-shadow: 0 0 24px var(--c3); }
.po-3::before { background: var(--c3); }
.po-2 { background: var(--c2); box-shadow: 0 0 24px var(--c2); }
.po-2::before { background: var(--c2); }
.po-1 { background: var(--c1); box-shadow: 0 0 24px var(--c1); }
.po-1::before { background: var(--c1); }

.product-card-label {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.2em;
    color: var(--text-2); text-transform: uppercase;
}

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

/* Product details */
.product-details { padding-top: 20px; }
.product-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 500; line-height: 1.0;
    color: var(--white); margin-bottom: 6px;
}
.product-title em {
    font-style: italic; display: block;
    color: var(--gold-l); font-size: 0.75em; margin-top: 4px;
}
.product-meta {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.15em;
    color: var(--text-2); text-transform: uppercase;
    margin-bottom: 28px;
}
.product-desc {
    font-size: 15px; line-height: 1.85; font-weight: 300;
    color: var(--text-2); margin-bottom: 36px;
}

/* Specs grid */
.specs-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden; margin-bottom: 36px;
}
.spec-cell {
    background: var(--bg-1);
    padding: 18px 20px;
    transition: background var(--transition);
}
.spec-cell:hover { background: var(--surface-h); }
.spec-cell-label {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-2);
    margin-bottom: 6px; display: block;
}
.spec-cell-val { font-size: 13px; color: var(--white); }
.spec-cell-icon { font-size: 18px; margin-bottom: 8px; display: block; }

/* Price row */
.price-row {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 28px;
}
.price-main {
    font-family: var(--font-heading);
    font-size: 36px; font-weight: 400;
    color: var(--gold-l); font-style: italic;
}
.price-note { font-size: 12px; color: var(--text-2); line-height: 1.5; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   CHAKRA INTERACTIVE
   ============================================================ */
.hp-chakras { background: var(--bg); }

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

.chakra-row {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    transition: all var(--transition);
    cursor: pointer;
}
.chakra-row:hover,
.chakra-row.active {
    background: var(--surface-h);
    border-color: var(--border-h);
}
.chakra-row.active { border-color: var(--active-color, var(--border-h)); }

.chakra-num {
    font-family: var(--font-mono);
    font-size: 10px; color: var(--text-2);
    width: 20px; flex-shrink: 0;
}
.chakra-circle {
    width: 16px; height: 16px; border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow 0.3s;
}
.chakra-row:hover .chakra-circle,
.chakra-row.active .chakra-circle { box-shadow: 0 0 16px var(--chakra-color, white); }

.chakra-row-text { flex: 1; }
.chakra-name-row {
    font-size: 15px; font-weight: 400; color: var(--white); margin-bottom: 2px;
}
.chakra-sanskrit {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em; color: var(--text-2);
}
.chakra-chevron {
    font-size: 12px; color: var(--text-2);
    transition: transform var(--transition), color var(--transition);
}
.chakra-row:hover .chakra-chevron,
.chakra-row.active .chakra-chevron { transform: translateX(4px); color: var(--white); }

/* Chakra detail panel */
.chakra-detail {
    position: sticky; top: 100px;
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px; min-height: 400px;
    transition: border-color 0.4s;
}
.chakra-detail-orb {
    width: 72px; height: 72px; border-radius: 50%;
    margin-bottom: 28px;
    transition: background 0.5s, box-shadow 0.5s;
    position: relative;
}
.chakra-detail-orb::after {
    content: ''; position: absolute; inset: -16px;
    border-radius: 50%; opacity: 0.25;
    filter: blur(20px);
    background: inherit;
    transition: background 0.5s;
}
.chakra-detail-number {
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing: 0.2em;
    color: var(--text-2); margin-bottom: 8px;
}
.chakra-detail-name {
    font-family: var(--font-heading);
    font-size: 32px; font-weight: 500;
    color: var(--white); margin-bottom: 4px;
    transition: all 0.4s;
}
.chakra-detail-sanskrit {
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing: 0.15em;
    color: var(--text-2); margin-bottom: 24px;
}
.chakra-detail-desc {
    font-size: 15px; line-height: 1.8;
    color: var(--text-2); margin-bottom: 28px;
}
.chakra-detail-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-tag {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: var(--r-sm);
    border: 1px solid var(--border);
    color: var(--text-2);
    transition: border-color 0.3s, color 0.3s;
}

/* ============================================================
   USES SECTION
   ============================================================ */
.hp-uses { background: var(--bg-1); }

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

.use-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    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 var(--transition);
}
.use-card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.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: 48px; height: 48px; border-radius: var(--r-md);
    background: var(--surface-h); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 24px;
}
.use-title {
    font-family: var(--font-heading);
    font-size: 22px; font-weight: 500;
    color: var(--white); margin-bottom: 12px;
}
.use-desc { font-size: 14px; line-height: 1.8; color: var(--text-2); }

/* ============================================================
   COLLECTION / FEATURED PRODUCTS
   ============================================================ */
.hp-collection { background: var(--bg); }

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

/* WooCommerce product card inside collection grid */
.hp-product-card {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
    text-decoration: none;
    display: flex; flex-direction: column;
}
.hp-product-card:hover { border-color: var(--border-h); transform: translateY(-3px); }

.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.5s ease;
}
.hp-product-card:hover .hp-product-thumb img { transform: scale(1.04); }

.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: 24px; flex: 1; display: flex; flex-direction: column; }
.hp-product-cat {
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.15em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 10px;
}
.hp-product-name {
    font-family: var(--font-heading);
    font-size: 18px; font-weight: 500;
    color: var(--white); margin-bottom: 8px;
    line-height: 1.3;
}
.hp-product-price {
    font-family: var(--font-heading);
    font-size: 18px; font-style: italic;
    color: var(--gold); margin-top: auto;
    padding-top: 12px;
}

/* Placeholder "Próximamente" cards */
.coll-card {
    background: var(--bg-1);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color var(--transition), transform var(--transition);
}
.coll-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
.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: 24px; }
.coll-status {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 9px; letter-spacing: 0.15em;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 10px;
}
.coll-title {
    font-family: var(--font-heading);
    font-size: 20px; font-weight: 500;
    color: var(--white); margin-bottom: 8px;
}
.coll-desc { font-size: 13px; line-height: 1.7; color: var(--text-2); margin-bottom: 16px; }
.coll-price {
    font-family: var(--font-heading);
    font-size: 18px; font-style: italic; color: var(--text-2);
}

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

/* ============================================================
   NEWSLETTER / WAITLIST
   ============================================================ */
.hp-newsletter {
    background: var(--bg-1);
    border-top: 1px solid var(--border);
}

.nl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.nl-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 500; line-height: 1.1;
    color: var(--white); margin-bottom: 16px;
}
.nl-title em { font-style: italic; color: var(--gold-l); }
.nl-sub {
    font-size: 15px; line-height: 1.8;
    color: var(--text-2);
}

.nl-perks {
    display: flex; flex-direction: column; gap: 14px;
    margin-bottom: 32px;
}
.nl-perk {
    display: flex; align-items: center; gap: 14px;
    font-size: 14px; color: var(--text);
}
.nl-perk-dot {
    width: 8px; height: 8px; 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 (shown if Fluent Forms not active) */
.nl-form-fallback {
    display: flex; gap: 0;
    border: 1px solid var(--border-h);
    border-radius: var(--r-md); overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.nl-form-fallback:focus-within {
    border-color: rgba(200,151,106,0.5);
    box-shadow: 0 0 0 3px rgba(200,151,106,0.08);
}
.nl-input {
    flex: 1; background: transparent;
    border: none; padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 300;
    color: var(--white); outline: none;
}
.nl-input::placeholder { color: var(--text-2); opacity: 0.6; }
.nl-submit {
    background: linear-gradient(135deg, var(--gold), var(--gold-l));
    border: none; padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.06em; color: #120a02;
    cursor: pointer; transition: opacity var(--transition);
}
.nl-submit:hover { opacity: 0.88; }
.nl-note { font-size: 11px; color: var(--text-2); margin-top: 12px; letter-spacing: 0.05em; }

/* ============================================================
   RESPONSIVE — Homepage
   ============================================================ */
@media (max-width: 1100px) {
    .hero-left { padding: 100px 40px 60px 48px; }
}

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

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

    .chakra-layout    { grid-template-columns: 1fr; gap: 32px; }
    .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: 48px; }
    .hp-container     { padding-inline: 24px; }
    .hp-section       { padding: 80px 0; }
}

@media (max-width: 600px) {
    .hero-left  { padding: 100px 20px 48px; }
    .hero-h1    { font-size: clamp(36px, 10vw, 56px); }

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

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