/* ============================================
   LED Lolipop Lineup — Apple-Inspired Product Page
   v1 · 2026-03-21
   ============================================ */

/* ── Dark Hero ── */
.loli-hero {
    padding: 160px 0 100px;
    text-align: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

.loli-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #000 0%, transparent 100%);
    pointer-events: none;
}

.loli-hero .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.loli-hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ff9f0a;
    margin-bottom: 12px;
    display: block;
}

.loli-hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: #f5f5f7;
    letter-spacing: -0.04em;
    line-height: 1.0;
    margin: 0 0 16px;
}

.loli-hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #a1a1a6;
    letter-spacing: -0.01em;
    line-height: 1.4;
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.loli-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    font-weight: 400;
    color: #ff9f0a;
    text-decoration: none;
    transition: color 0.25s;
}

.loli-hero-cta:hover {
    color: #ffb340;
}

/* ── Product Showcase Sections ── */
.loli-showcase {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.loli-showcase-light {
    background: #fff;
}

.loli-showcase-gray {
    background: #f5f5f7;
}

.loli-showcase-dark {
    background: #1d1d1f;
}

.loli-showcase-black {
    background: #000;
}

.loli-showcase .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Eyebrow ── */
.loli-eyebrow {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ff9f0a;
    margin-bottom: 8px;
    display: block;
}

/* ── Product Name ── */
.loli-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 8px;
}

.loli-showcase-dark .loli-name,
.loli-showcase-black .loli-name {
    color: #f5f5f7;
}

/* ── Tagline ── */
.loli-tagline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #86868b;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 12px;
}

.loli-showcase-dark .loli-tagline,
.loli-showcase-black .loli-tagline {
    color: #a1a1a6;
}

/* ── Description ── */
.loli-desc {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #86868b;
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.loli-showcase-dark .loli-desc,
.loli-showcase-black .loli-desc {
    color: #86868b;
}

/* ── Actions Row ── */
.loli-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 48px;
}

.loli-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: #ff9f0a;
    color: #fff;
    border: none;
    border-radius: 980px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s;
    text-decoration: none;
    min-width: 130px;
    letter-spacing: 0;
}

.loli-btn-primary:hover {
    background: #ffb340;
}

/* ── Product Image ── */
.loli-hero-image {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    display: block;
    position: relative;
}

.loli-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.12));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loli-showcase-dark .loli-hero-image img,
.loli-showcase-black .loli-hero-image img {
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.45));
}

.loli-showcase:hover .loli-hero-image img {
    transform: scale(1.02);
}

/* ── Spec Badge ── */
.loli-spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 8px 20px;
    background: rgba(0,0,0,0.04);
    border-radius: 980px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #86868b;
    letter-spacing: 0.02em;
}

.loli-showcase-dark .loli-spec-badge,
.loli-showcase-black .loli-spec-badge {
    background: rgba(255,255,255,0.08);
    color: #a1a1a6;
}

.loli-spec-badge .dot {
    width: 3px;
    height: 3px;
    background: #86868b;
    border-radius: 50%;
    display: inline-block;
}

.loli-showcase-dark .loli-spec-badge .dot,
.loli-showcase-black .loli-spec-badge .dot {
    background: #a1a1a6;
}

/* ── Feature Pills ── */
.loli-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
}

.loli-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(0,0,0,0.04);
    border-radius: 980px;
    font-size: 0.78rem;
    font-weight: 500;
    color: #1d1d1f;
    letter-spacing: 0.01em;
}

.loli-feature-pill i {
    font-size: 0.72rem;
    color: #ff9f0a;
}

.loli-showcase-dark .loli-feature-pill,
.loli-showcase-black .loli-feature-pill {
    background: rgba(255,255,255,0.06);
    color: #d2d2d7;
}

.loli-showcase-dark .loli-feature-pill i,
.loli-showcase-black .loli-feature-pill i {
    color: #ff9f0a;
}

/* ── Use Case Tags ── */
.loli-uses {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.loli-use-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 980px;
    font-size: 0.72rem;
    font-weight: 500;
    color: #86868b;
    letter-spacing: 0.01em;
}

.loli-showcase-dark .loli-use-tag,
.loli-showcase-black .loli-use-tag {
    border-color: rgba(255,255,255,0.1);
    color: #a1a1a6;
}

/* ── Scroll Fade ── */
.loli-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.loli-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Bottom CTA ── */
.loli-cta {
    padding: 120px 0 100px;
    text-align: center;
    background: #f5f5f7;
}

.loli-cta .container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.loli-cta-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 16px;
}

.loli-cta-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #86868b;
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin: 0 0 32px;
}

.loli-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    background: #ff9f0a;
    color: #fff;
    border: none;
    border-radius: 980px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    text-decoration: none;
    min-width: 160px;
    letter-spacing: 0;
}

.loli-cta-btn:hover {
    background: #ffb340;
    transform: scale(1.02);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1068px) {
    .loli-hero-title {
        font-size: 4rem;
    }

    .loli-name {
        font-size: 2.8rem;
    }

    .loli-tagline {
        font-size: 1.35rem;
    }

    .loli-hero-image {
        max-width: 560px;
    }

    .loli-cta-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .loli-hero {
        padding: 120px 0 70px;
    }

    .loli-hero-title {
        font-size: 3rem;
    }

    .loli-hero-subtitle {
        font-size: 1.2rem;
    }

    .loli-showcase {
        padding: 80px 0 60px;
    }

    .loli-name {
        font-size: 2.2rem;
    }

    .loli-tagline {
        font-size: 1.15rem;
    }

    .loli-desc {
        font-size: 0.95rem;
    }

    .loli-hero-image {
        max-width: 440px;
    }

    .loli-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 36px;
    }

    .loli-features {
        gap: 8px;
    }

    .loli-feature-pill {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .loli-cta {
        padding: 80px 0 60px;
    }

    .loli-cta-title {
        font-size: 2rem;
    }

    .loli-cta-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .loli-hero {
        padding: 100px 0 56px;
    }

    .loli-hero-title {
        font-size: 2.2rem;
    }

    .loli-hero-subtitle {
        font-size: 1rem;
    }

    .loli-showcase {
        padding: 60px 0 48px;
    }

    .loli-name {
        font-size: 1.85rem;
    }

    .loli-tagline {
        font-size: 1rem;
    }

    .loli-desc {
        font-size: 0.88rem;
    }

    .loli-hero-image {
        max-width: 300px;
    }

    .loli-btn-primary {
        font-size: 0.9rem;
        padding: 11px 22px;
        min-width: 110px;
    }

    .loli-features {
        gap: 6px;
    }

    .loli-feature-pill {
        font-size: 0.68rem;
        padding: 5px 12px;
    }

    .loli-use-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
    }

    .loli-cta {
        padding: 60px 0 48px;
    }

    .loli-cta-title {
        font-size: 1.7rem;
    }

    .loli-cta-subtitle {
        font-size: 0.9rem;
    }

    .loli-cta-btn {
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}
