/* ================================================================
   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; }
}
