/* =====================================================
   Giant Product Card – Hooijmans Compact Theme
   Zwart / donkergrijs + felgroen accent
   ===================================================== */

:root {
    --gpc-green:      #52cb51;
    --gpc-green-dark: #3ea83d;
    --gpc-black:      #0d0d0d;
    --gpc-dark:       #1a1a1a;
    --gpc-card-bg:    #5a5a5a;
    --gpc-border:     #484848;
    --gpc-text:       #ffffff;
    --gpc-muted:      #cccccc;
    --gpc-white:      #ffffff;
}

/* ── Grid layout ────────────────────────────────────── */
.gpc-grid {
    display: grid;
    gap: 24px;
    width: 100%;
}

.gpc-cols-1 { grid-template-columns: repeat(1, 1fr); }
.gpc-cols-2 { grid-template-columns: repeat(2, 1fr); }
.gpc-cols-3 { grid-template-columns: repeat(3, 1fr); }
.gpc-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gpc-cols-5 { grid-template-columns: repeat(5, 1fr); }
.gpc-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 900px) {
    .gpc-cols-3,
    .gpc-cols-4,
    .gpc-cols-5,
    .gpc-cols-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .gpc-grid { grid-template-columns: 1fr !important; }
}

/* ── Card ───────────────────────────────────────────── */
.gpc-card {
    display: flex;
    flex-direction: column;
    background: var(--gpc-card-bg);
    border: 1px solid var(--gpc-border);
    border-radius: 4px;
    overflow: hidden;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    position: relative;
}

/* geen hover lijn */

.gpc-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ── Image ──────────────────────────────────────────── */
.gpc-image-wrap {
    background-color: #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--gpc-border);
    box-sizing: border-box;
}

.gpc-product-image,
.gpc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: none;
}

/* ── Body ───────────────────────────────────────────── */
.gpc-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* ── Badge ──────────────────────────────────────────── */
.gpc-badge {
    display: inline-block;
    background-color: var(--gpc-green);
    color: var(--gpc-black);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    align-self: flex-start;
}

/* ── Title ──────────────────────────────────────────── */
.gpc-title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ── Specs ──────────────────────────────────────────── */
.gpc-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
}

.gpc-spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gpc-text);
}

.gpc-spec-icon {
    color: var(--gpc-green);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.gpc-spec-value {
    font-weight: 600;
}

/* ── Description ────────────────────────────────────── */
.gpc-description {
    font-size: 13.5px;
    color: var(--gpc-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Pricing ────────────────────────────────────────── */
.gpc-pricing {
    border-top: 1px solid var(--gpc-border);
    padding-top: 14px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gpc-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.gpc-price-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gpc-green);
    line-height: 1;
    letter-spacing: -0.02em;
}

.gpc-price-period {
    font-size: 12px;
    color: var(--gpc-muted);
    font-weight: 500;
}

.gpc-price-note {
    font-size: 11px;
    color: #555;
    margin: 2px 0 0;
}

/* ── CTA link ───────────────────────────────────────── */
.gpc-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gpc-green);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.gpc-cta-link:hover {
    color: var(--gpc-green-dark);
    gap: 10px;
}

/* ── Empty state ────────────────────────────────────── */
.gpc-empty {
    font-size: 14px;
    color: var(--gpc-muted);
    padding: 16px;
    border: 1px dashed var(--gpc-border);
    border-radius: 4px;
    background: var(--gpc-card-bg);
}
