/*
 Theme Name:   Neve Child Top X
 Description:  Special pentru liste si comparatii.
 Template:     neve
 Version:      4.0.0
*/

:root {
    --primary: #2563eb;
    --text: #1f2937;
    --bg-gray: #f9fafb;
    --success: #10b981; /* Verde mai vibrant */
    --danger: #ef4444;
    --gold: #f59e0b; /* Pentru stele si badge winner */
    --radius: 12px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* Container Text */
.single-post .neve-main > .container .col-12 { max-width: 780px; margin: 0 auto; }

/* Linkuri */
.entry-content a:not(.btn-aff):not(.sticky-btn) {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
    font-weight: 500;
}
.entry-content a:not(.btn-aff):not(.sticky-btn):hover { background: #eff6ff; border-color: var(--primary); }

/* --- HEADER & DISCLAIMER --- */
.meta-box { font-size: 0.9rem; color: #6b7280; margin-bottom: 10px; }
.affiliate-disclosure {
    font-size: 0.85rem;
    background: #fdf2f8; /* Roz foarte pal */
    color: #be185d;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #fbcfe8;
    margin-bottom: 40px;
}

/* --- QUICK SUMMARY (Inlocuitor TOC) --- */
.quick-summary {
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    border-radius: var(--radius);
    padding: 20px;
    margin: 30px 0;
}
.quick-summary h4 { margin-top: 0; color: #0369a1; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.quick-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e0f2fe; }
.quick-row:last-child { border: none; }
.quick-tag { font-weight: bold; font-size: 0.8rem; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; }
.tag-win { background: var(--gold); color: #fff; }
.tag-budget { background: var(--success); color: #fff; }

/* --- PRODUCT CARD (Design pentru fiecare produs) --- */
.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 25px;
    margin: 50px 0; /* Spatiu mare intre produse */
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.product-card:hover { border-color: var(--primary); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }

/* Titlul produsului in card */
.product-card h2 { 
    margin-top: 0; 
    font-size: 1.5rem; 
    padding-bottom: 15px; 
    border-bottom: 2px solid #f3f4f6;
    margin-bottom: 20px;
}

/* Badge (Eticheta) in coltul cardului */
.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.badge-gold { background: var(--gold); }
.badge-green { background: var(--success); }

/* Buton in card */
.btn-aff {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--danger);
    color: white !important;
    padding: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
    margin-top: 20px;
    transition: 0.2s;
}
.btn-aff:hover { background: #b91c1c; transform: translateY(-2px); }

/* Liste Pro/Contra compacte */
.review-box { display: flex; gap: 15px; margin: 20px 0; flex-wrap: wrap; }
.review-col { flex: 1; min-width: 250px; background: #f9fafb; padding: 15px; border-radius: 8px; }
.review-pros h4, .review-cons h4 { margin: 0 0 10px 0; font-size: 0.9rem; text-transform: uppercase; }
.review-pros h4 { color: var(--success); }
.review-cons h4 { color: var(--danger); }
.review-col ul { list-style: none; padding: 0; margin: 0; }
.review-col li { padding-left: 20px; position: relative; font-size: 0.9rem; margin-bottom: 5px; }
.review-pros li::before { content: "✓"; color: var(--success); position: absolute; left: 0; font-weight: bold; }
.review-cons li::before { content: "✕"; color: var(--danger); position: absolute; left: 0; font-weight: bold; }

/* --- AUTHOR & FOOTER --- */
.author-box-custom {
    display: flex; align-items: center; gap: 15px;
    background: #f3f4f6; padding: 20px; border-radius: 8px; margin-top: 40px;
}
.author-img img { border-radius: 50%; }
.author-info p { margin: 0; font-size: 0.9rem; }

.sticky-footer-cta {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff; padding: 12px 15px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999; display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid #eee;
}
@media (min-width: 769px) { .sticky-footer-cta { display: none; } }
.sticky-footer-cta .text { font-weight: 600; font-size: 0.9rem; line-height: 1.2; width: 60%; }
.sticky-footer-cta .sticky-btn {
    background: var(--gold); color: #fff; padding: 10px 20px; border-radius: 6px;
    font-weight: 700; text-decoration: none; text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* --- ULTIMATE CARD STYLING --- */

/* Layout Flex: Imagine Stânga / Text Dreapta pe Desktop */
.card-layout {
    display: flex;
    flex-direction: column; /* Pe mobil e una sub alta */
    gap: 25px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .card-layout {
        flex-direction: row; /* Pe desktop e stânga-dreapta */
        align-items: start;
    }
    .card-image {
        flex: 0 0 200px; /* Lățime fixă imagine pe desktop */
        text-align: center;
    }
    .card-content {
        flex: 1;
    }
}

/* Stil Imagine */
.card-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 8px;
    object-fit: contain; /* Asigură că poza nu se taie */
}

/* Stil Stele Rating */
.star-rating {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}
.rating-num {
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: normal;
    margin-left: 5px;
}

/* Stil Mini-Specificații (Grid) */
.key-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.key-specs li {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #374151;
    border: 1px solid #e5e7eb;
    display: inline-block;
}

.key-specs strong {
    color: #111827;
}

/* Ajustare titlu în noul layout */
.product-card h2 {
    border-bottom: none; /* Scoatem linia de sub titlu că avem specs */
    padding-bottom: 0;
    margin-bottom: 10px;
    margin-top: 0;
    font-size: 1.4rem;
    line-height: 1.3;
}


/*
 Theme Name:   Neve Child God Mode (White Edition)
 Description:  Design ultra-curat, autoritar, pe fundal alb.
 Template:     neve
 Version:      5.0.0
*/

/* --- GOD MODE WHITE VARIABLES --- */
:root {
    --god-bg: #ffffff;       /* Fundal Alb Pur */
    --god-bg-alt: #f8fafc;   /* Gri foarte deschis pentru contrast */
    --god-card: #ffffff;     /* Carduri albe */
    --god-border: #e2e8f0;   /* Borduri gri subtile */
    --god-accent: #2563eb;   /* Albastru intens (pt contrast pe alb) */
    --god-accent-hover: #1d4ed8;
    --god-gold: #d97706;     /* Auriu mai închis pentru vizibilitate */
    --god-text: #0f172a;     /* Text aproape negru (Slate dark) */
    --god-text-muted: #64748b; /* Text gri secundar */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

body {
    background-color: var(--god-bg);
    color: var(--god-text);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
}

/* 1. HERO SECTION (Clean & Bright) */
.god-hero {
    position: relative;
    padding: 120px 20px 80px 20px;
    text-align: center;
    overflow: hidden;
    background: var(--god-bg);
    border-bottom: 1px solid var(--god-border);
}

/* Glow Effect Subtil (Albastru deschis pe alb) */
.god-bg {
    position: absolute; top: -60%; left: 50%; transform: translateX(-50%);
    width: 120vw; height: 120vh;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.hero-center { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }

.live-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #eff6ff; /* Albastru foarte pal */
    color: var(--god-accent); padding: 6px 16px; border-radius: 30px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 25px; box-shadow: var(--shadow-sm);
}
.blinking-dot {
    width: 8px; height: 8px; background: var(--god-accent); border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }

.god-hero h1 {
    font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 40px; 
    color: var(--god-text); letter-spacing: -0.03em;
}
.god-hero h1 span {
    color: var(--god-accent); /* Accent simplu, puternic */
}
@media(max-width: 768px) { .god-hero h1 { font-size: 2.5rem; } }

/* Search Engine Input (Clean White) */
.god-search {
    position: relative; max-width: 650px; margin: 0 auto 50px auto;
    display: flex; gap: 10px;
}
.god-search input {
    flex: 1; background: #ffffff; border: 2px solid var(--god-border);
    color: var(--god-text); padding: 20px 25px; border-radius: 16px; font-size: 1.1rem;
    transition: 0.3s; outline: none; box-shadow: var(--shadow-sm);
}
.god-search input::placeholder { color: #94a3b8; }
.god-search input:focus {
    border-color: var(--god-accent); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.god-search button {
    background: var(--god-accent); color: white; border: none; padding: 0 40px;
    border-radius: 16px; font-weight: bold; font-size: 1.1rem; cursor: pointer;
    transition: 0.2s; box-shadow: var(--shadow-md);
}
.god-search button:hover { background: var(--god-accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Categories Pills */
.god-cats { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.god-cat-item {
    background: #ffffff; color: var(--god-text); padding: 12px 24px; border-radius: 12px;
    text-decoration: none; font-weight: 600; transition: 0.2s; 
    border: 1px solid var(--god-border); box-shadow: var(--shadow-sm);
    display: flex; align-items: center; gap: 10px;
}
.god-cat-item:hover { 
    background: var(--god-accent); border-color: var(--god-accent); 
    color: white; transform: translateY(-2px); box-shadow: var(--shadow-md);
}

/* 2. THE GRID (Hall of Fame) */
.god-section { padding: 80px 20px; }
.section-head-minimal { text-align: left; margin-bottom: 40px; border-left: 5px solid var(--god-accent); padding-left: 25px; }
.section-head-minimal h2 { font-size: 2.2rem; margin: 0; color: var(--god-text); letter-spacing: -1px; font-weight: 800; }
.sub-head { color: var(--god-text-muted); font-size: 1.1rem; margin-top: 8px; display: block; }

.god-grid {
    display: grid; gap: 25px;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 320px;
}

/* Carduri - Rămân cu text alb pe fundal foto pentru contrast maxim */
.god-card-big, .god-card-std {
    position: relative; border-radius: 24px; overflow: hidden;
    background-size: cover; background-position: center;
    text-decoration: none; color: white; 
    box-shadow: var(--shadow-md); transition: all 0.3s ease;
}

/* Layout Grid */
.god-card-big { grid-column: span 12; }
@media(min-width: 900px) { .god-card-big { grid-column: span 6; grid-row: span 2; } }
.god-card-std { grid-column: span 12; }
@media(min-width: 600px) { .god-card-std { grid-column: span 6; } }
@media(min-width: 900px) { .god-card-std { grid-column: span 3; } }

/* Hover Effects */
.god-card-big:hover, .god-card-std:hover { 
    transform: translateY(-8px); z-index: 2; box-shadow: var(--shadow-lg);
}

/* Overlay Gradient (Mai puternic jos pentru a face textul alb lizibil) */
.card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 50%, transparent);
}
.card-content {
    position: relative; z-index: 2; height: 100%; padding: 30px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.ranking-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--god-accent); color: white; font-weight: 900;
    padding: 6px 12px; border-radius: 8px; font-size: 0.8rem; letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}
.god-card-big .ranking-badge { background: var(--god-gold); color: white; }

.small-label { color: rgba(255,255,255,0.8); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; }
.card-text h3 { margin: 8px 0 0 0; font-size: 1.6rem; line-height: 1.2; font-weight: 800; text-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.god-card-big h3 { font-size: 2.8rem; }

.card-arrow {
    position: absolute; bottom: 30px; right: 30px;
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    transition: 0.3s; font-size: 1.2rem;
}
.god-card-big:hover .card-arrow, .god-card-std:hover .card-arrow { 
    background: white; color: var(--god-accent); transform: scale(1.1);
}

/* 3. NICHE EXPLORER (Clean White Lists) */
.god-section.alt-bg { background: var(--god-bg-alt); } /* Optional: fundal gri alternativ */

.niche-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px;
}
.niche-col {
    background: #ffffff; border: 1px solid var(--god-border);
    border-radius: 24px; padding: 35px; box-shadow: var(--shadow-sm);
    transition: 0.3s;
}
.niche-col:hover { box-shadow: var(--shadow-md); border-color: #cbd5e1; }

.niche-header {
    display: flex; align-items: center; gap: 15px; font-size: 1.4rem; font-weight: 800; 
    color: var(--god-text); margin-bottom: 25px; 
    border-bottom: 2px solid var(--god-bg-alt); padding-bottom: 20px;
}
.niche-icon { font-size: 2rem; }
.niche-list { display: flex; flex-direction: column; gap: 15px; }
.niche-link {
    color: var(--god-text-muted); text-decoration: none; font-size: 1.05rem; transition: 0.2s;
    font-weight: 500; display: block;
}
.niche-link:hover { 
    color: var(--god-accent); transform: translateX(8px); font-weight: 600;
}
.niche-more {
    margin-top: 20px; color: var(--god-accent); font-weight: 800; 
    text-decoration: none; font-size: 0.95rem; display: inline-block;
}
.niche-more:hover { text-decoration: underline; }

/* 4. FOOTER (Clean Gray) */
.seo-power-footer {
    background: var(--god-bg-alt); padding: 100px 20px; text-align: center; 
    color: var(--god-text-muted); border-top: 1px solid var(--god-border);
}
.seo-power-footer h4 { color: var(--god-text); margin-bottom: 15px; font-size: 1.2rem; font-weight: 800; }
.seo-power-footer p { max-width: 700px; margin: 0 auto; font-size: 0.95rem; line-height: 1.8; }


/* Base Setup */
body {
    background-color: var(--god-bg);
    color: var(--god-text);
    font-family: 'Inter', system-ui, sans-serif; /* Ensure you load Inter font */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. HERO SECTION */
.god-hero {
    position: relative;
    padding: 8rem 0 6rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, #1e293b 0%, #0f172a 70%);
}

.live-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.blinking-dot {
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.god-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 24px 0 40px;
    letter-spacing: -0.02em;
}

.god-hero h1 span {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Search Bar */
.god-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 10px;
}

.input-group {
    flex-grow: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    color: var(--god-text-muted);
}

.god-search-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border-radius: 12px;
    border: 2px solid #334155;
    background: #1e293b;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.god-search-wrapper input:focus {
    border-color: var(--god-accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.god-btn-primary {
    padding: 0 24px;
    border-radius: 12px;
    background: var(--god-accent);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.god-btn-primary:hover {
    transform: translateY(-2px);
    background: #2563eb;
}

.quick-pills {
    margin-top: 20px;
    color: var(--god-text-muted);
    font-size: 0.9rem;
}

.quick-pills a {
    color: #cbd5e1;
    text-decoration: none;
    margin-left: 10px;
    border-bottom: 1px dotted #475569;
}

/* 2. BENTO GRID SYSTEM */
.god-section { padding: 4rem 0; }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

/* Main Feature: Spans 2 cols, 2 rows */
.area-main { grid-column: span 2; grid-row: span 2; }
/* Tall Card */
.area-tall { grid-column: span 1; grid-row: span 2; }
/* Standard Card */
.area-std { grid-column: span 1; grid-row: span 1; }

.bento-card {
    position: relative;
    border-radius: var(--god-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--god-shadow);
    border-color: rgba(255,255,255,0.1);
}

.bento-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.bento-card:hover .bento-bg { transform: scale(1.05); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.2));
}

.bento-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.score-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fbbf24;
}

.badge-hot {
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-left: 8px;
}

.bento-title {
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.area-main .bento-title { font-size: 2.2rem; }

.btn-text {
    font-size: 0.9rem;
    color: var(--god-accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-text svg { width: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* 3. CATEGORY PILLS */
.category-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--god-card-bg);
    border-radius: 50px;
    text-decoration: none;
    color: white;
    border: 1px solid #334155;
    transition: all 0.2s;
}

.cat-pill:hover {
    background: #334155;
    border-color: var(--accent);
}

/* 4. NICHE LISTS */
.niche-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.niche-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #334155;
    padding-bottom: 15px;
}

.niche-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.niche-ul li { margin-bottom: 12px; }

.niche-ul a {
    display: flex;
    justify-content: space-between;
    color: #cbd5e1;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}

.niche-ul a:hover { color: var(--god-accent); }
.niche-ul a:hover .link-arrow { transform: translateX(5px); }
.link-arrow { transition: transform 0.2s; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .area-main, .area-tall, .area-std { grid-column: span 1; grid-row: span 1; height: 300px; }
    .god-hero h1 { font-size: 2.5rem; }
    .god-search-wrapper { flex-direction: column; }
    .niche-columns { grid-template-columns: 1fr; }
}

@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }


