/* =============================================================
   LYRIHOST — Brand overlay
   Loaded AFTER the Vite-built app.css. Adds the website's design
   vocabulary (gold-gradient, glass, arabesque, panel-mockup, etc.)
   without requiring a CSS rebuild. All custom rules use the `.lh-`
   prefix so they cannot collide with Paymenter / Filament classes.
   ============================================================= */
:root {
    --lh-gold:        #d4af37;
    --lh-gold-light:  #e8c964;
    --lh-gold-dark:   #a88b2c;
    --lh-green:       #006c35;
    --lh-green-light: #00873e;
    --lh-bg:          #0a0a0a;
    --lh-surface:     #131313;
    --lh-elevated:    #1a1a1a;
    --lh-border:      #2a2a2a;
    --lh-fg:          #f5f5f5;
    --lh-muted:       #a0a0a0;
    --lh-shadow-gold:  0 0 32px -8px rgba(212, 175, 55, 0.35);
    --lh-shadow-card:  0 12px 32px -16px rgba(0, 0, 0, 0.6);
    --lh-font-display: 'IBM Plex Sans Arabic', 'Tajawal', system-ui, sans-serif;
    --lh-font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

/* ---- Body backdrop (radial gold/green tints, fixed) ---- */
html.dark body,
html[lang="ar"] body {
    background-image:
        radial-gradient(circle at 15% -10%, rgba(212, 175, 55, 0.06), transparent 45%),
        radial-gradient(circle at 90% 10%,  rgba(0, 108, 53, 0.05), transparent 45%);
    background-attachment: fixed;
}

::selection { background: rgba(212, 175, 55, 0.3); color: #fff; }

/* ---- Headings use IBM Plex Sans Arabic ---- */
h1, h2, h3, h4, h5, h6, .lh-display {
    font-family: var(--lh-font-display);
    letter-spacing: -0.01em;
}

/* ---- Mono for numbers / panel stats ---- */
.lh-mono, .lh-num {
    font-family: var(--lh-font-mono);
    font-feature-settings: "tnum", "lnum";
}

/* ---- Gold gradient text (logo wordmark, hero highlights) ---- */
.lh-gold-gradient {
    background: linear-gradient(135deg, var(--lh-gold-light) 0%, var(--lh-gold) 50%, var(--lh-gold-dark) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}

/* ---- Soft gold border ---- */
.lh-border-gold-soft { border-color: rgba(212, 175, 55, 0.25) !important; }

/* ---- Glass effects ---- */
.lh-glass {
    background: rgba(19, 19, 19, 0.6);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
            backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.lh-glass-elevated {
    background: rgba(26, 26, 26, 0.75);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
            backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

/* ---- Glows & shadows ---- */
.lh-shadow-gold { box-shadow: var(--lh-shadow-gold); }
.lh-shadow-card { box-shadow: var(--lh-shadow-card); }
.lh-ring-gold {
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.25),
        0 0 32px -10px rgba(212, 175, 55, 0.4);
}

/* ---- Patterns ---- */
.lh-pattern-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 18px 18px;
}
.lh-pattern-arabesque {
    background-image: radial-gradient(circle at 1px 1px, rgba(212, 175, 55, 0.06) 1px, transparent 0);
    background-size: 24px 24px;
}

/* ---- Primary CTA button (gradient) ---- */
.lh-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--lh-gold-light) 0%, var(--lh-gold) 55%, var(--lh-gold-dark) 100%);
    box-shadow: 0 4px 16px -4px rgba(212, 175, 55, 0.45);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
}
.lh-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px -8px rgba(212, 175, 55, 0.6);
}

.lh-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.3rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--lh-gold);
    transition: background .2s, border-color .2s;
    text-decoration: none;
}
.lh-btn-outline:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--lh-gold);
}

/* ---- Cards ---- */
.lh-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.7);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    box-shadow: var(--lh-shadow-card);
}
.lh-card-interactive {
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.7);
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    box-shadow: var(--lh-shadow-card);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.lh-card-interactive:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 24px 48px -24px rgba(212, 175, 55, 0.25);
}

/* ---- Chip / eyebrow ---- */
.lh-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.06);
    color: var(--lh-gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ---- Hero atmosphere helpers ---- */
.lh-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3rem, 8vw, 6rem);
}
.lh-hero-glow-gold {
    position: absolute;
    inset-inline-start: 25%;
    top: 0;
    width: 520px;
    height: 520px;
    background: rgba(212, 175, 55, 0.10);
    border-radius: 9999px;
    filter: blur(120px);
    pointer-events: none;
}
.lh-hero-glow-green {
    position: absolute;
    inset-inline-end: 25%;
    top: 8rem;
    width: 420px;
    height: 420px;
    background: rgba(0, 108, 53, 0.10);
    border-radius: 9999px;
    filter: blur(100px);
    pointer-events: none;
}

/* ---- Arabesque decoration positioning ---- */
.lh-arabesque-corner {
    position: absolute;
    inset-inline-end: -8rem;
    top: 3rem;
    width: 600px;
    opacity: 0.04;
    pointer-events: none;
}

/* ---- Trust strip ---- */
.lh-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--lh-muted);
}
.lh-trust-item svg { color: var(--lh-gold); }

/* ---- Footer link styling ---- */
.lh-footer-col-title {
    font-family: var(--lh-font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lh-fg);
    margin-bottom: 1rem;
}
.lh-footer-link {
    display: block;
    color: var(--lh-muted);
    font-size: 0.875rem;
    transition: color .2s;
    text-decoration: none;
    padding: 0.2rem 0;
}
.lh-footer-link:hover { color: var(--lh-gold); }

.lh-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.6);
    color: var(--lh-fg);
    transition: border-color .2s, color .2s;
}
.lh-social-btn:hover { border-color: rgba(212, 175, 55, 0.5); color: var(--lh-gold); }

/* ---- Login / auth card ---- */
.lh-auth-shell {
    position: relative;
    overflow: hidden;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: 4rem 1.25rem;
}
.lh-auth-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 26rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(19, 19, 19, 0.85);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
            backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 32px 80px -32px rgba(212, 175, 55, 0.2);
    padding: 2rem;
}

/* ---- Animations (light) ---- */
@keyframes lh-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.lh-animate-float { animation: lh-float 6s ease-in-out infinite; }

@keyframes lh-pulse-gold {
    0%,100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50%     { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}
.lh-animate-pulse-gold { animation: lh-pulse-gold 2.5s ease-out infinite; }

@media (prefers-reduced-motion: reduce) {
    .lh-animate-float, .lh-animate-pulse-gold { animation: none; }
    .lh-card-interactive { transition: none; }
}

/* ---- Stat block (Lyri-Panel style) ---- */
.lh-stat {
    border-radius: 1rem;
    border: 1px solid var(--lh-border);
    background: rgba(26, 26, 26, 0.4);
    padding: 1.1rem;
}
.lh-stat-label { font-size: 0.75rem; color: var(--lh-muted); }
.lh-stat-value {
    font-family: var(--lh-font-mono);
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 0.25rem;
}
.lh-stat-value.is-gold  { color: var(--lh-gold); }
.lh-stat-value.is-green { color: var(--lh-green-light); }
.lh-stat-hint { font-size: 0.7rem; color: var(--lh-muted); margin-top: 0.15rem; }

/* =============================================================
   Phase 13.1 — Grid rules (replace Tailwind arbitrary values
   that do not exist in the prebuilt CSS).
   ============================================================= */
.lh-footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .lh-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .lh-footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 3rem;
    }
}

.lh-products-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .lh-products-grid { grid-template-columns: 260px 1fr; }
}

.lh-h1-tight { line-height: 1.1; }

/* =============================================================
   Phase 14 — Game card with official artwork
   ============================================================= */
.lh-game-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    min-height: 280px;
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--lh-surface);
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
    text-decoration: none;
    display: block;
}
.lh-game-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-6px);
}

.lh-game-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(0.9) brightness(0.7);
    transition: transform .6s ease, filter .4s ease;
}
.lh-game-card:hover .lh-game-card-bg {
    transform: scale(1.08);
    filter: saturate(1.1) brightness(0.8);
}

.lh-game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.30) 0%,
        rgba(10,10,10,0.70) 50%,
        rgba(10,10,10,0.95) 100%
    );
}
.lh-game-card-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(212,175,55,0.05) 70%,
        rgba(212,175,55,0.15) 100%
    );
    pointer-events: none;
}

.lh-game-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 0.4rem;
}
.lh-game-card-logo {
    height: 36px;
    width: auto;
    max-width: 160px;
    margin-bottom: 0.4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.6));
    align-self: flex-start;
}
.lh-game-card-title {
    font-family: var(--lh-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}
.lh-game-card-subtitle {
    font-family: var(--lh-font-sans, "Tajawal","Segoe UI",sans-serif);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.72);
    margin: 0;
}
.lh-game-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lh-gold);
    font-weight: 600;
    margin-top: 0.6rem;
    transition: gap .3s ease;
    font-size: 0.92rem;
}
.lh-game-card:hover .lh-game-card-cta { gap: 0.9rem; }

/* Mark for games WITHOUT an image yet — pure gradient surface */
.lh-game-card.is-fallback .lh-game-card-bg {
    background: linear-gradient(135deg, var(--gc-c1, #1a1a1a) 0%, var(--gc-c2, #2a2a2a) 100%);
    filter: none;
}
.lh-game-card.is-fallback:hover .lh-game-card-bg { transform: none; }
.lh-game-card.is-fallback .lh-game-card-overlay {
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.5) 100%);
}
.lh-game-card-fallback-mark {
    position: absolute;
    top: 1rem;
    inset-inline-end: 1rem;
    font-family: var(--lh-font-mono);
    font-size: 0.7rem;
    color: rgba(212,175,55,0.7);
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    .lh-game-card {
        min-height: 220px;
        aspect-ratio: 16/10;
    }
    .lh-game-card-logo { height: 28px; }
    .lh-game-card-title { font-size: 1.25rem; }
}

/* =============================================================
   Phase 60 — Premium Checkout / Cart / Product redesign
   Wraps existing Livewire markup. No Tailwind arbitrary values
   used (compiled CSS lacks many of them); everything is .lh-co-*
   prefixed so it cannot collide with Paymenter / Filament.
   ============================================================= */

/* ----- 2-column page shell: content (2fr) + sticky summary (1fr) ----- */
.lh-co-shell {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    align-items: start;
}
@media (min-width: 1024px) {
    .lh-co-shell { grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr); }
}

/* ----- Hero header card ----- */
.lh-co-hero {
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid var(--lh-border);
    background:
        radial-gradient(circle at 90% -20%, rgba(212, 175, 55, 0.10), transparent 55%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: var(--lh-shadow-card);
}
@media (min-width: 768px) {
    .lh-co-hero { padding: 2.25rem; }
}
.lh-co-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 1.2px 1.2px, rgba(212, 175, 55, 0.04) 1px, transparent 0);
    background-size: 22px 22px;
    pointer-events: none;
    opacity: .55;
}
.lh-co-hero > * { position: relative; z-index: 2; }
.lh-co-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.08);
    color: var(--lh-gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.85rem;
}
.lh-co-hero-title {
    font-family: var(--lh-font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    color: #fff;
    margin: 0 0 0.55rem;
}
.lh-co-hero-tier {
    background: linear-gradient(135deg, var(--lh-gold-light), var(--lh-gold), var(--lh-gold-dark));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
}
.lh-co-hero-sub {
    font-size: 0.95rem;
    color: var(--lh-muted);
    line-height: 1.7;
    margin: 0;
    max-width: 60ch;
}

/* ----- Specs grid (4 cards: RAM / CPU / Disk / Servers) ----- */
.lh-co-specs {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
}
@media (min-width: 640px) { .lh-co-specs { grid-template-columns: repeat(4, 1fr); } }
.lh-co-spec {
    position: relative;
    border-radius: 0.9rem;
    border: 1px solid var(--lh-border);
    background: rgba(26, 26, 26, 0.55);
    padding: 0.95rem 0.9rem;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    text-align: start;
}
.lh-co-spec:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 14px 30px -16px rgba(212, 175, 55, 0.35);
}
.lh-co-spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.6rem;
    background: rgba(212, 175, 55, 0.12);
    color: var(--lh-gold);
    font-size: 1.05rem;
    margin-bottom: 0.55rem;
}
.lh-co-spec-value {
    font-family: var(--lh-font-mono);
    font-weight: 700;
    font-size: 1.35rem;
    color: #fff;
    line-height: 1.1;
    direction: ltr;
    unicode-bidi: isolate;
}
.lh-co-spec-label {
    font-size: 0.78rem;
    color: var(--lh-muted);
    margin-top: 0.2rem;
}

/* ----- Feature checkmark list ----- */
.lh-co-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 640px) { .lh-co-features { grid-template-columns: repeat(2, 1fr); } }
.lh-co-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--lh-fg);
    line-height: 1.55;
}
.lh-co-features li::before {
    content: "✓";
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--lh-gold);
    font-weight: 800;
    font-size: 0.8rem;
    margin-top: 0.1rem;
}

/* ----- Section card (groups the options / GSLT notice / FAQ) ----- */
.lh-co-section {
    border-radius: 1rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.65);
    padding: 1.25rem;
    margin-top: 1.25rem;
}
.lh-co-section-title {
    font-family: var(--lh-font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin: 0 0 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.lh-co-section-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--lh-gold-light), var(--lh-gold-dark));
}

/* ----- GSLT notice ----- */
.lh-co-notice {
    border-radius: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.06);
    padding: 0.9rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #fde9b3;
    margin-top: 1rem;
}
.lh-co-notice-icon { font-size: 1.1rem; flex-shrink: 0; }
.lh-co-notice-body { font-size: 0.88rem; line-height: 1.65; }
.lh-co-notice-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.65rem;
    flex-wrap: wrap;
}
.lh-co-notice-link {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 9999px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--lh-gold-light);
    background: transparent;
    text-decoration: none;
    transition: background .2s ease;
}
.lh-co-notice-link:hover { background: rgba(212, 175, 55, 0.1); }

/* ----- Sticky order summary card ----- */
.lh-co-summary {
    position: relative;
    border-radius: 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background:
        linear-gradient(180deg, rgba(26,26,26,0.92) 0%, rgba(13,13,13,0.96) 100%);
    padding: 1.4rem;
    box-shadow: 0 24px 48px -28px rgba(0,0,0,0.65), 0 0 0 1px rgba(212,175,55,0.03);
}
@media (min-width: 1024px) {
    .lh-co-summary { position: sticky; top: 5rem; }
}
.lh-co-summary-title {
    font-family: var(--lh-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lh-co-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.4rem 0;
    font-size: 0.92rem;
    color: var(--lh-muted);
}
.lh-co-summary-row b,
.lh-co-summary-row .lh-co-num { color: #fff; font-weight: 600; }
.lh-co-summary-row.is-discount b { color: #6ee7b7; }
.lh-co-num {
    font-family: var(--lh-font-mono);
    font-feature-settings: "tnum", "lnum";
    direction: ltr;
    unicode-bidi: isolate;
}
.lh-co-summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lh-border), transparent);
    margin: 0.6rem 0;
}
.lh-co-summary-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 0.4rem;
}
.lh-co-summary-total-label {
    font-size: 0.95rem;
    color: var(--lh-muted);
    font-weight: 500;
}
.lh-co-summary-total-value {
    font-family: var(--lh-font-mono);
    font-weight: 800;
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--lh-gold-light), var(--lh-gold), var(--lh-gold-dark));
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    direction: ltr;
    unicode-bidi: isolate;
}

/* ----- Premium CTA with shimmer ----- */
.lh-co-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
    padding: 0.85rem 1.2rem;
    border: 0;
    border-radius: 0.85rem;
    color: #0a0a0a;
    background: linear-gradient(135deg, var(--lh-gold-light) 0%, var(--lh-gold) 55%, var(--lh-gold-dark) 100%);
    font-family: var(--lh-font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 22px -8px rgba(212, 175, 55, 0.55);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    text-decoration: none;
}
.lh-co-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(212, 175, 55, 0.7);
}
.lh-co-cta:disabled, .lh-co-cta[disabled] { opacity: .5; cursor: not-allowed; }
.lh-co-cta::before {
    content: "";
    position: absolute;
    top: 0;
    inset-inline-start: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(115deg,
        transparent 0%,
        rgba(255,255,255,0.55) 50%,
        transparent 100%);
    transform: skewX(-25deg);
    animation: lh-co-shimmer 3.2s linear infinite;
    pointer-events: none;
}
@keyframes lh-co-shimmer {
    0%   { inset-inline-start: -150%; }
    100% { inset-inline-start: 150%; }
}
@media (prefers-reduced-motion: reduce) {
    .lh-co-cta::before { animation: none; }
}
.lh-co-cta-hint {
    font-size: 0.78rem;
    color: var(--lh-muted);
    text-align: center;
    margin-top: 0.7rem;
}

/* ----- Trust strip (4 mini badges) ----- */
.lh-co-trust {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lh-border);
}
.lh-co-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    color: var(--lh-muted);
}
.lh-co-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0.45rem;
    background: rgba(212, 175, 55, 0.10);
    color: var(--lh-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ----- FAQ accordion (uses <details>) ----- */
.lh-co-faq { margin-top: 0; }
.lh-co-faq details {
    border: 1px solid var(--lh-border);
    border-radius: 0.7rem;
    background: rgba(15, 15, 15, 0.6);
    padding: 0;
    margin-bottom: 0.55rem;
    overflow: hidden;
    transition: border-color .2s ease;
}
.lh-co-faq details[open] { border-color: rgba(212, 175, 55, 0.4); }
.lh-co-faq summary {
    cursor: pointer;
    list-style: none;
    padding: 0.85rem 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
}
.lh-co-faq summary::-webkit-details-marker { display: none; }
.lh-co-faq summary::after {
    content: "+";
    color: var(--lh-gold);
    font-size: 1.2rem;
    line-height: 1;
    transition: transform .2s ease;
}
.lh-co-faq details[open] summary::after { content: "−"; }
.lh-co-faq-body {
    padding: 0 1rem 1rem;
    font-size: 0.88rem;
    color: var(--lh-muted);
    line-height: 1.7;
}

/* ----- Cart item card ----- */
.lh-co-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    padding: 1rem;
    border-radius: 0.95rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.7);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.lh-co-item:hover { border-color: rgba(212,175,55,0.25); box-shadow: 0 14px 28px -20px rgba(0,0,0,0.6); }
@media (min-width: 640px) {
    .lh-co-item { grid-template-columns: 64px 1fr auto; align-items: start; }
}
.lh-co-item-thumb {
    width: 64px;
    height: 64px;
    border-radius: 0.65rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--lh-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.lh-co-item-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 0.65rem; }
.lh-co-item-name {
    font-family: var(--lh-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin: 0 0 0.25rem;
}
.lh-co-item-meta {
    font-size: 0.8rem;
    color: var(--lh-muted);
    line-height: 1.6;
}
.lh-co-item-price {
    font-family: var(--lh-font-mono);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    direction: ltr;
    unicode-bidi: isolate;
}
.lh-co-item-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.lh-co-item-input {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--lh-border);
    color: #fff;
    font-size: 0.88rem;
    margin-top: 0.5rem;
}
.lh-co-item-input:focus { outline: none; border-color: rgba(212, 175, 55, 0.55); }
.lh-co-item-input-hint { font-size: 0.7rem; color: var(--lh-muted); margin-top: 0.25rem; }

/* ----- Progress indicator (cart → details → payment → done) ----- */
.lh-co-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.65);
    font-size: 0.82rem;
}
.lh-co-progress-step {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--lh-muted);
    white-space: nowrap;
}
.lh-co-progress-step.is-done { color: #6ee7b7; }
.lh-co-progress-step.is-current { color: var(--lh-gold); font-weight: 700; }
.lh-co-progress-step-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--lh-border);
    color: var(--lh-muted);
    font-weight: 700;
    font-size: 0.78rem;
}
.lh-co-progress-step.is-done .lh-co-progress-step-dot {
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}
.lh-co-progress-step.is-current .lh-co-progress-step-dot {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.5);
    color: var(--lh-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}
.lh-co-progress-bar {
    flex: 1 1 auto;
    height: 2px;
    background: linear-gradient(90deg, var(--lh-border) 0%, var(--lh-border) 100%);
    opacity: 0.6;
}

/* ----- Payment-method card grid (used by invoices/payment-options) ----- */
.lh-co-paycards { display: flex; flex-direction: column; gap: 0.6rem; }
.lh-co-paycard {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    border-radius: 0.85rem;
    border: 1px solid var(--lh-border);
    background: rgba(19, 19, 19, 0.6);
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.lh-co-paycard:hover { border-color: rgba(212, 175, 55, 0.4); }
.lh-co-paycard.is-selected {
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(212, 175, 55, 0.07);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.lh-co-paycard-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lh-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.lh-co-paycard-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lh-co-paycard-body { flex: 1 1 auto; min-width: 0; }
.lh-co-paycard-name { font-weight: 600; color: #fff; font-size: 0.95rem; }
.lh-co-paycard-desc { font-size: 0.78rem; color: var(--lh-muted); margin-top: 0.15rem; }
.lh-co-paycard-tick {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 9999px;
    border: 1px solid var(--lh-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
}
.lh-co-paycard.is-selected .lh-co-paycard-tick {
    border-color: var(--lh-gold);
    background: var(--lh-gold);
    color: #0a0a0a;
    font-weight: 800;
}

/* ----- Soft helper line under summary ("ستوجّه لاختيار طريقة الدفع") ----- */
.lh-co-helper-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    color: var(--lh-muted);
    margin-top: 0.85rem;
}
.lh-co-helper-line svg { width: 0.85rem; height: 0.85rem; color: var(--lh-gold); }

/* ----- Numbers / Latin tokens inside RTL flow ----- */
[dir="rtl"] .lh-num,
[dir="rtl"] .lh-co-num,
[dir="rtl"] .lh-co-spec-value,
[dir="rtl"] .lh-co-summary-total-value,
[dir="rtl"] .lh-co-item-price {
    direction: ltr;
    unicode-bidi: isolate;
}

/* Mobile polish */
@media (max-width: 640px) {
    .lh-co-cta { padding: 0.95rem 1rem; font-size: 1.05rem; }
    .lh-co-progress-step { font-size: 0.74rem; }
    .lh-co-summary-total-value { font-size: 1.4rem; }
}

/* =============================================================
   Mobile polish (mini-phase) — touch targets across checkout
   ============================================================= */
@media (max-width: 640px) {
  /* iOS minimum touch target: 44 px. Buttons on Paymenter default to
     ~36 px which is too small for thumb taps on a phone. */
  .lh-co-cta,
  .lh-co-shell button,
  .lh-co-shell a[role="button"],
  .lh-co-shell .btn,
  button[type="submit"],
  .lh-pay-card {
    min-height: 44px;
  }
  /* Cart summary on mobile: stack content vertically, keep summary box
     readable instead of squished. The Phase 60 .lh-co-shell already
     drops to 1-col below lg; this just tightens spacing on real phones. */
  .lh-co-shell {
    gap: 1.25rem;
  }
  .lh-co-hero {
    padding: 1.25rem 1.25rem 1rem;
  }
  /* Forms: bump input padding for better tap target */
  .lh-co-shell input[type="text"],
  .lh-co-shell input[type="email"],
  .lh-co-shell input[type="tel"],
  .lh-co-shell input[type="number"],
  .lh-co-shell select {
    min-height: 44px;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}

/* =============================================================
   Phase 70.1 — Premium product-card grid
   Dedicated card class so the shared .lh-card-interactive used
   on other pages stays untouched. Equal heights, solid bg
   (was transparent rgba(19,19,19,0.7) before), tier accents,
   absolute-positioned single badge at top-centre.
   ============================================================= */
.lh-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(20, 20, 24, 0.95);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  min-height: 480px;
  box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.5);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lh-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 16px 36px -16px rgba(212, 175, 55, 0.3);
}
.lh-product-card--silver { border-color: rgba(192, 192, 192, 0.28); }
.lh-product-card--gold   { border-color: rgba(212, 175, 55, 0.45); }
.lh-product-card--platinum {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 36px -10px rgba(212, 175, 55, 0.35);
}
.lh-product-card--platinum::before {
  /* subtle diamond shimmer overlay — purely cosmetic, ignored when
     prefers-reduced-motion (handled by the global @media rule). */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    transparent 30%, rgba(212,175,55,0.06) 50%, transparent 70%);
  pointer-events: none;
}

.lh-product-card__badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 0.02em;
}
.lh-product-card__badge--popular {
  background: linear-gradient(135deg, #f0c63a, #d4af37);
  color: #0a0a0a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  box-shadow: 0 4px 14px -4px rgba(212,175,55,0.65);
}
.lh-product-card__badge--gold {
  background: rgba(212,175,55,0.18);
  color: #ecd163;
  border: 1px solid rgba(212,175,55,0.42);
}
.lh-product-card__badge--platinum {
  background: linear-gradient(135deg, #ecd163, #b8901c);
  color: #0a0a0a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
  box-shadow: 0 6px 18px -6px rgba(212,175,55,0.7);
}

.lh-product-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.25rem;
}
.lh-product-card__desc {
  font-size: 0.8rem;
  color: rgba(230, 230, 230, 0.55);
  line-height: 1.65;
  margin-top: 0.75rem;
  /* Reserve consistent vertical space so cards align even when one
     description is shorter than the others. */
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lh-product-card__footer {
  /* auto-margin pushes price + CTA to the bottom edge → all cards
     have aligned price rows and buttons regardless of desc length. */
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed rgba(212, 175, 55, 0.15);
}
.lh-product-card__price {
  font-family: var(--lh-font-mono, monospace);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--lh-gold);
  line-height: 1.1;
}
.lh-product-card__cta {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* Trust strip — sits above the grid on the products listing page. */
.lh-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 0 0 1.5rem;
}
.lh-trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.lh-trust-strip__item--install { color: #86efac; border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.06); }
.lh-trust-strip__item--refund  { color: var(--lh-gold); border-color: rgba(212,175,55,0.32); background: rgba(212,175,55,0.07); }
.lh-trust-strip__item--support { color: #a5b4fc; border-color: rgba(99,102,241,0.32); background: rgba(99,102,241,0.07); }

/* =============================================================
   Phase 71 — Products page complete rebuild
   New: hero polish, premium pricing-tier cards, comparison table,
   FAQ accordion, footer CTA. Coexists with Phase 70.1 styles —
   adds, never removes (so other consumers of .lh-product-card
   stay safe). Tier-aware accents.
   ============================================================= */

/* --- Pricing card tweaks layered on Phase 70.1 .lh-product-card --- */
.lh-pricing-card { /* alias for clarity in this page only */
  position: relative;
  display: flex;
  flex-direction: column;
  background: #14141a;
  border: 1px solid rgba(218, 165, 32, 0.18);
  border-radius: 16px;
  padding: 28px 24px 24px;
  min-height: 560px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lh-pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 24px 48px -20px rgba(212, 175, 55, 0.35);
}
.lh-pricing-card--silver {
  border-color: rgba(192, 192, 192, 0.3);
  transform: scale(1.02);
}
.lh-pricing-card--silver:hover { transform: scale(1.02) translateY(-8px); }
.lh-pricing-card--gold {
  border-color: rgba(212, 175, 55, 0.5);
}
.lh-pricing-card--platinum {
  border-color: rgba(212, 175, 55, 0.65);
  background:
    linear-gradient(135deg, rgba(212,175,55,0.06), rgba(20,20,26,0.95));
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 0 36px -10px rgba(212, 175, 55, 0.4);
}
.lh-pricing-card--platinum::after {
  /* continuous shimmer overlay — honoured by global prefers-reduced-motion */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
    transparent 30%, rgba(255,215,0,0.08) 50%, transparent 70%);
  pointer-events: none;
  animation: lh-shimmer-pricing 4s ease-in-out infinite;
  background-size: 200% 200%;
}
@keyframes lh-shimmer-pricing {
  0%, 100% { background-position: 100% 100%; }
  50%      { background-position: 0% 0%; }
}

.lh-pricing-card__tier-badge {
  position: absolute;
  top: -12px;
  inset-inline-end: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
}
.lh-pricing-card__tier-badge--popular {
  background: linear-gradient(135deg, #f0c63a, #d4af37);
  color: #0a0a0a;
  box-shadow: 0 4px 14px -4px rgba(212,175,55,0.65);
}
.lh-pricing-card__tier-badge--gold {
  background: rgba(212,175,55,0.18);
  color: #ecd163;
  border: 1px solid rgba(212,175,55,0.45);
}
.lh-pricing-card__tier-badge--platinum {
  background: linear-gradient(135deg, #ecd163, #b8901c);
  color: #0a0a0a;
  box-shadow: 0 6px 20px -6px rgba(212,175,55,0.75);
}

.lh-pricing-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.5rem;
}
.lh-pricing-card__tagline {
  font-size: 0.82rem;
  color: rgba(218, 218, 218, 0.6);
  margin-top: 0.35rem;
  line-height: 1.5;
  min-height: 2.6em;
}
.lh-pricing-card__price-block {
  margin-top: 1rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.16);
}
.lh-pricing-card__price {
  font-family: var(--lh-font-mono, ui-monospace, monospace);
  font-size: 3rem;
  font-weight: 800;
  color: var(--lh-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.lh-pricing-card__price-unit {
  display: inline-block;
  margin-inline-start: 0.4rem;
  font-size: 0.82rem;
  color: rgba(218, 218, 218, 0.5);
  font-weight: 500;
}
.lh-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.lh-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.lh-pricing-card__feature-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(74,222,128,0.15);
  color: #86efac;
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 1px;
}
.lh-pricing-card__cta-wrap {
  /* push CTA to the bottom so it lines up across all 4 cards */
  margin-top: auto;
  padding-top: 1.5rem;
}
.lh-pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f0c63a, #d4af37);
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .15s ease, box-shadow .25s ease;
}
.lh-pricing-card__cta:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 22px -8px rgba(212,175,55,0.65);
}
.lh-pricing-card__cta--secondary {
  background: rgba(255,255,255,0.06);
  color: #fafafa;
  border: 1px solid rgba(255,255,255,0.12);
}

/* --- Comparison table --- */
.lh-compare {
  margin-top: 4rem;
  background: #14141a;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  padding: 1.5rem;
  overflow-x: auto;
}
.lh-compare__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  color: #f4f4f5;
}
.lh-compare table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.lh-compare th,
.lh-compare td {
  padding: 0.85rem 0.6rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lh-compare th {
  font-weight: 700;
  color: var(--lh-gold);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.lh-compare th:first-child,
.lh-compare td:first-child {
  text-align: start;
  color: rgba(218, 218, 218, 0.85);
  font-weight: 500;
}
.lh-compare tr:last-child td { border-bottom: 0; }
.lh-compare__cell-check { color: #86efac; font-weight: 700; }
.lh-compare__cell-cross { color: rgba(255,255,255,0.25); }

/* --- FAQ accordion --- */
.lh-faq {
  margin-top: 4rem;
}
.lh-faq__heading {
  text-align: center;
  margin-bottom: 1.5rem;
}
.lh-faq__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f4f4f5;
}
.lh-faq__sub {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(218,218,218,0.6);
}
.lh-faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.lh-faq__item {
  background: #14141a;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.lh-faq__item summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f4f4f5;
}
.lh-faq__item summary::-webkit-details-marker { display: none; }
.lh-faq__item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--lh-gold);
  transition: transform .2s ease;
}
.lh-faq__item[open] summary::after { transform: rotate(45deg); }
.lh-faq__item[open] {
  border-color: rgba(212, 175, 55, 0.32);
}
.lh-faq__body {
  padding: 0 1.2rem 1.1rem;
  color: rgba(218,218,218,0.75);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* --- Footer CTA --- */
.lh-products-footer-cta {
  margin-top: 4rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(20,20,26,0.95));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  padding: 2.5rem 1.75rem;
  text-align: center;
}
.lh-products-footer-cta__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fafafa;
}
.lh-products-footer-cta__sub {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: rgba(218,218,218,0.7);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.lh-products-footer-cta__buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.lh-products-footer-cta__buttons a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .15s ease;
}
.lh-products-footer-cta__buttons a:hover { transform: translateY(-2px); }
.lh-products-footer-cta__btn--discord {
  background: #5865F2;
  color: white;
}
.lh-products-footer-cta__btn--whatsapp {
  background: rgba(37, 211, 102, 0.18);
  color: #4ade80;
  border: 1px solid rgba(37,211,102,0.4);
}
.lh-products-footer-cta__btn--ticket {
  background: rgba(255,255,255,0.06);
  color: #fafafa;
  border: 1px solid rgba(255,255,255,0.12);
}

/* --- Mobile tweaks --- */
@media (max-width: 640px) {
  .lh-pricing-card { min-height: 0; padding: 24px 20px; }
  .lh-pricing-card--silver { transform: none; }
  .lh-pricing-card--silver:hover { transform: translateY(-6px); }
  .lh-pricing-card__price { font-size: 2.5rem; }
  .lh-compare { padding: 1rem; }
  .lh-compare table { font-size: 0.78rem; min-width: 480px; }
  .lh-products-footer-cta { padding: 1.75rem 1.25rem; }
  .lh-products-footer-cta__title { font-size: 1.2rem; }
}
