:root {
    --pcp-primary: var(--primary-color, #9e1b1e);
    --pcp-text-dark: #222222;
    --pcp-text-body: #444444;
    --pcp-border: #d9d9d9;
    --pcp-bg: #ffffff;
    --pcp-card-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ── Section wrapper ── */
.pcp-section {
    font-family: inherit;
    background: var(--pcp-bg);
}

/* ── Page Header ── */
.pcp-header {
    text-align: center;
    margin-bottom: 20px;
}

.pcp-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--pcp-text-dark);
    letter-spacing: 2px;
    margin: 0 0 14px;
    line-height: 1.2;
}

.pcp-title-divider {
    height: 4px;
    width: 70px;
    background-color: var(--pcp-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Description text ── */
.pcp-description {
    margin: 0 auto 40px;
    text-align: center;
    color: var(--pcp-text-body);
    font-size: 14.5px;
    line-height: 1.75;
}

.pcp-description p {
    margin-bottom: 10px;
}

.pcp-description p:last-child {
    margin-bottom: 0;
}

.pcp-description a {
    color: var(--pcp-primary);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.25s ease;
}

.pcp-description a:hover {
    color: var(--pcp-text-dark);
    text-decoration: underline;
}

/* ── Series group ── */
.pcp-series {
    margin-bottom: 50px;
}

.pcp-series:last-child {
    margin-bottom: 0;
}

/* ── Series divider (line — logo/name — line) ── */
.pcp-series-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 36px;
}

.pcp-series-line {
    flex: 1;
    height: 1px;
    background: var(--pcp-border);
}

.pcp-series-label-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pcp-series-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

.pcp-series-name {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pcp-text-dark);
    letter-spacing: 2px;
    white-space: nowrap;
    font-style: italic;
}

/* ── Product cards grid ── */
.pcp-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}

.pcp-products--two .pcp-card {
    max-width: 380px;
    flex: 0 1 380px;
}

.pcp-products--multi .pcp-card {
    max-width: 300px;
    flex: 0 1 300px;
}

/* ── Single product card ── */
.pcp-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pcp-card__img-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 18px;
    box-shadow: var(--pcp-card-shadow);
    transition: box-shadow 0.3s ease;
}

.pcp-card__img-link:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pcp-card__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
}

.pcp-card__img-link:hover .pcp-card__img {
    transform: scale(1.04);
}

.pcp-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--pcp-primary);
    margin: 0 0 6px;
    line-height: 1.3;
}

.pcp-card__name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.pcp-card__name a:hover {
    color: var(--pcp-text-dark);
}

.pcp-card__desc {
    font-size: 15px;
    color: var(--pcp-text-dark);
    margin: 0 0 14px;
    line-height: 1.5;
}

/* Details button */
.pcp-card__btn {
    display: inline-block;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    background-color: var(--pcp-primary);
    border: 2px solid var(--pcp-primary);
    border-radius: 3px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.pcp-card__btn:hover {
    background-color: transparent;
    color: var(--pcp-primary);
}

/* ── Responsive ── */
@media (max-width: 1199px) {
    .pcp-title {
        font-size: 30px;
    }

    .pcp-series-name {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .pcp-section {
        padding: 40px 0 50px;
    }

    .pcp-title {
        font-size: 26px;
    }

    .pcp-products {
        gap: 28px;
    }

    .pcp-products--two .pcp-card,
    .pcp-products--multi .pcp-card {
        max-width: 340px;
        flex: 0 1 340px;
    }
}

@media (max-width: 767px) {
    .pcp-products {
        flex-direction: column;
        align-items: center;
    }

    .pcp-products--two .pcp-card,
    .pcp-products--multi .pcp-card {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .pcp-series-divider {
        gap: 12px;
    }

    .pcp-series-logo {
        max-height: 36px;
    }

    .pcp-series-name {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .pcp-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .pcp-description {
        font-size: 13px;
    }
}
