/* ================================================================
   GamePC GPU Pages - Frontend Styles v1.1.0
   ================================================================ */

/* GPU Hero Section */
.gpcd-gpu-hero {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.05) 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
    margin-bottom: 40px;
}

/* Breadcrumbs */
.gpcd-breadcrumbs { font-size: 0.9rem; color: #999; margin-bottom: 20px; }
.gpcd-breadcrumbs a { color: #ccc !important; text-decoration: none; }
.gpcd-breadcrumbs a:hover { color: #ff0000 !important; }
.gpcd-breadcrumbs .sep { margin: 0 10px; opacity: 0.5; }

/* GPU Hero Title */
.gpcd-gpu-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* GPU Meta Info */
.gpcd-gpu-meta { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.gpcd-meta-item { color: #999; font-size: 1rem; }
.gpcd-meta-item strong { color: #ff0000; font-size: 1.2rem; }

/* Intro Text */
.gpcd-intro-text { max-width: 800px; margin: 0 auto; color: #cccccc; line-height: 1.8; font-size: 1.05rem; }
.gpcd-intro-text p { margin-bottom: 15px; }

/* ================================================================
   INTRO BOX STYLING — gebruikt door de html editor
   ================================================================ */

.gpu-intro-box {
    background: #0f0f0f;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    padding: 30px;
    color: #cccccc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

.gpu-intro-box h2 {
    color: #ff0000;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 12px;
    margin-top: 0;
}

.gpu-intro-box p {
    color: #cccccc;
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 14px;
}

.gpu-intro-box p strong { color: #ffffff; }

.gpu-intro-box a {
    color: #ff0000;
    font-weight: 600;
    text-decoration: none;
}

.gpu-intro-box a:hover { text-decoration: underline; }

/* Feature Grid */
.gpu-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 22px 0;
}

.gpu-feature {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 18px;
}

.gpu-feature h3 {
    color: #ff0000;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 0;
}

.gpu-feature p {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0;
}

/* Links sectie */
.gpu-links {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 0, 0, 0.15);
}

.gpu-links h3 {
    color: #888;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
    margin-top: 0;
}

.gpu-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gpu-links ul li {
    padding-left: 14px;
    position: relative;
    font-size: 0.88rem;
}

.gpu-links ul li::before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: 700;
}

.gpu-links ul li a { color: #aaaaaa; text-decoration: none; }
.gpu-links ul li a:hover { color: #ff0000; }

/* Noot onderaan */
.gpu-note {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ff0000;
    border-radius: 4px;
    padding: 14px 18px;
    margin-top: 20px;
    font-size: 0.88rem;
    color: #999999;
    line-height: 1.7;
}

.gpu-note a { color: #ff0000; font-weight: 600; }

/* ================================================================
   PRODUCT CARDS
   ================================================================ */

.gpcd-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

@media (min-width: 769px) { .gpcd-products-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .gpcd-products-grid { grid-template-columns: repeat(3, 1fr); } }

.gpcd-product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.gpcd-product-card:hover {
    border-color: #ff0000;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3), 0 0 40px rgba(255, 0, 0, 0.1);
}

.gpcd-product-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gpcd-product-image-wrapper a { display: block; width: 100%; height: 100%; }
.gpcd-product-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.gpcd-product-card:hover .gpcd-product-image { transform: scale(1.1) rotate(2deg); }
.gpcd-no-image { display: flex; align-items: center; justify-content: center; background: rgba(255, 0, 0, 0.1); color: #666; font-size: 0.9rem; }

.gpcd-product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.gpcd-product-body { padding: 1.5rem; }

.gpcd-product-name { font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700; }
.gpcd-product-name a { color: #fff !important; text-decoration: none; transition: color 0.3s ease; }
.gpcd-product-name a:hover { color: #ff0000 !important; }

.gpcd-product-specs { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.gpcd-spec-item { font-size: 0.9rem; color: #999; display: flex; align-items: center; gap: 0.6rem; }
.gpcd-spec-icon { color: #ff0000; width: 18px; height: 18px; flex-shrink: 0; }
.gpcd-spec-value { flex: 1; }

.gpcd-fps-display {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.gpcd-fps-item { flex: 1; text-align: center; }
.gpcd-fps-value { font-size: 1.4rem; font-weight: 800; background: linear-gradient(135deg, #ff0000, #cc0000); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.gpcd-fps-label { font-size: 0.7rem; color: #999; display: block; margin-top: 0.25rem; }
.gpcd-fps-game { font-size: 0.8rem; color: #ff0000; display: block; margin-top: 0.3rem; font-weight: 600; }

.gpcd-product-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.gpcd-badge { background: rgba(255, 0, 0, 0.15); color: #ff0000; padding: 0.35rem 0.75rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; border: 1px solid rgba(255, 0, 0, 0.3); }

.gpcd-product-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid rgba(255, 0, 0, 0.2); }
.gpcd-product-price { font-size: 1.75rem; background: linear-gradient(135deg, #ff0000, #cc0000); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; }
.gpcd-product-price .woocommerce-Price-amount { background: linear-gradient(135deg, #ff0000, #cc0000); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.gpcd-btn { display: inline-block; padding: 0.65rem 1.25rem; border-radius: 8px; font-size: 0.9rem; font-weight: 700; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; }
.gpcd-btn-primary { background: rgba(255, 0, 0, 0.2); color: #ff0000 !important; border: 1px solid #ff0000; }
.gpcd-btn-primary:hover { background: #ff0000; color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 0, 0, 0.3); }

.gpcd-no-products { text-align: center; padding: 80px 20px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 0, 0, 0.2); border-radius: 16px; margin: 40px auto; max-width: 600px; }
.gpcd-no-products p { color: #999; font-size: 1.1rem; margin-bottom: 20px; }
.gpcd-no-products .button { background: #ff0000; color: #ffffff; padding: 12px 30px; border-radius: 8px; text-decoration: none; display: inline-block; font-weight: 600; }
.gpcd-no-products .button:hover { background: #cc0000; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 768px) {
    .gpcd-gpu-hero { padding: 30px 15px; }
    .gpcd-gpu-meta { flex-direction: column; gap: 15px; }
    .gpcd-products-grid { padding: 0 15px; }
    .gpcd-product-card { max-width: 100%; }
    .gpu-features { grid-template-columns: 1fr; }
    .gpu-links ul { flex-direction: column; }
}


/* ================================================================
   Outro block — tekst onder productgrid
   ================================================================ */

.gpcd-outro-block {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.gpcd-outro-h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.gpcd-outro-text {
    color: #cccccc !important;
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.gpcd-outro-text p {
    margin-bottom: 16px;
}

.gpcd-outro-text p:last-child {
    margin-bottom: 0;
}

/* Fix paragraph spacing in intro and outro text blocks */
.gpcd-intro-text p {
    margin-bottom: 14px;
}

.gpcd-intro-text p:last-child {
    margin-bottom: 0;
}


/* ================================================================
   AEO CONTENT SECTIES — GPU Pages Manager v2.0
   ================================================================ */

.gpcd-aeo-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Sectie container ───────────────────────────────────────── */
.gpcd-aeo-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.gpcd-aeo-section-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    margin-top: 0;
}

.gpcd-aeo-section-intro {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 760px;
}

/* ── CPU-advies grid ─────────────────────────────────────────── */
.gpcd-cpu-advice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gpcd-cpu-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    padding: 20px;
    border-top: 3px solid rgba(255,255,255,.15);
}
.gpcd-cpu-card.cpu-basis { border-top-color: #2271b1; }
.gpcd-cpu-card.cpu-multi { border-top-color: #00a32a; }
.gpcd-cpu-card.cpu-x3d   { border-top-color: #dc143c; }

.gpcd-cpu-card-icon { font-size: 22px; margin-bottom: 8px; }

.gpcd-cpu-card-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888;
    margin-bottom: 10px;
}
.gpcd-cpu-card.cpu-basis .gpcd-cpu-card-label { color: #5b9bd5; }
.gpcd-cpu-card.cpu-multi .gpcd-cpu-card-label { color: #4caf50; }
.gpcd-cpu-card.cpu-x3d   .gpcd-cpu-card-label { color: #dc143c; }

.gpcd-cpu-card-text {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ── Benchmarks tabel ────────────────────────────────────────── */
.gpcd-bench-table-wrap { overflow-x: auto; }

.gpcd-bench-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.gpcd-bench-table thead tr {
    background: rgba(220,20,60,.1);
    border-bottom: 2px solid rgba(220,20,60,.3);
}

.gpcd-bench-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    color: #dc143c;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.gpcd-bench-table td {
    padding: 11px 14px;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,.05);
    vertical-align: middle;
}

.gpcd-bench-table tbody tr:hover td {
    background: rgba(255,255,255,.02);
}

.gpcd-bench-game {
    font-weight: 700;
    color: #fff;
}

.gpcd-bench-fps {
    font-weight: 800;
    color: #dc143c;
    font-size: 1rem;
}

.gpcd-bench-settings {
    color: #777;
    font-size: 0.82rem;
    font-style: italic;
}

/* ── GPU Vergelijking ────────────────────────────────────────── */
.gpcd-comp-table-wrap { overflow-x: auto; margin-bottom: 16px; }

.gpcd-comp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.gpcd-comp-table thead tr {
    background: rgba(255,255,255,.04);
    border-bottom: 2px solid rgba(255,255,255,.1);
}

.gpcd-comp-table th {
    padding: 11px 16px;
    text-align: left;
    font-weight: 700;
    color: #fff;
    font-size: 0.85rem;
}
.gpcd-comp-table th.col-our    { color: #dc143c; }
.gpcd-comp-table th.col-aspect { color: #888; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .05em; }

.gpcd-comp-table td {
    padding: 10px 16px;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,.05);
    vertical-align: middle;
}

.gpcd-comp-table tbody tr:hover td {
    background: rgba(255,255,255,.02);
}

.gpcd-comp-aspect {
    color: #aaa;
    font-size: 0.88rem;
}

.gpcd-comp-verdict {
    background: rgba(220,20,60,.07);
    border: 1px solid rgba(220,20,60,.2);
    border-radius: 8px;
    padding: 14px 18px;
    color: #ccc;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-top: 12px;
}
.gpcd-comp-verdict::before {
    content: "Conclusie: ";
    font-weight: 700;
    color: #dc143c;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.gpcd-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gpcd-faq-entry {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    overflow: hidden;
}

.gpcd-faq-entry-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    gap: 12px;
    transition: background .2s;
}
.gpcd-faq-entry-q:hover { background: rgba(220,20,60,.06); }

.gpcd-faq-entry-q::after {
    content: "+";
    font-size: 1.2rem;
    color: #dc143c;
    flex-shrink: 0;
    line-height: 1;
    transition: transform .2s;
}
.gpcd-faq-entry.is-open .gpcd-faq-entry-q::after {
    transform: rotate(45deg);
}

.gpcd-faq-entry-a {
    display: none;
    padding: 0 18px 16px;
    color: #aaa;
    font-size: 0.92rem;
    line-height: 1.8;
    border-top: 1px solid rgba(255,255,255,.06);
}
.gpcd-faq-entry.is-open .gpcd-faq-entry-a { display: block; }

/* ── Responsive AEO ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .gpcd-cpu-advice-grid { grid-template-columns: 1fr; }
    .gpcd-bench-table th,
    .gpcd-bench-table td,
    .gpcd-comp-table  th,
    .gpcd-comp-table  td  { padding: 8px 10px; }
}
