.custom-pc-sec {
    padding: 80px 0 0 0;
    background-color: #07080E;
}

.cpc-header {
    text-align: center;
    margin-bottom: 50px;
}

.cpc-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px 0;
}

.cpc-subtitle {
    font-size: 1.1rem;
    color: #a1a1aa;
    margin: 0;
}

.cpc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.cpc-card {
    position: relative;
    border: 1px solid #23262f;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000;
    transition: transform 0.3s, border-color 0.3s;
    display: block;
    text-decoration: none;
}

.cpc-card:hover {
    transform: translateY(-4px);
    border-color: #52525b;
}

.cpc-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
}

.cpc-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cpc-card:hover .cpc-img {
    transform: scale(1.05);
}

.cpc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 60%, transparent 100%);
    text-align: left;
    box-sizing: border-box;
}

.cpc-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.cpc-spec {
    font-size: 0.85rem;
    color: #a1a1aa;
    margin-bottom: 6px;
}

.cpc-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cpc-price-old {
    font-size: 0.85rem;
    color: #6b7280;
    text-decoration: line-through;
}

.cpc-price-new {
    font-size: 1.2rem;
    font-weight: 800;
    color: #facc15;
}

/* Consult Banner */
.cpc-banner {
    background-color: #7b1320;
    border-radius: 8px;
    padding: 24px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cpc-banner-text {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
}

.cpc-banner-btn {
    background-color: #fff;
    color: #7b1320;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 0.2s;
}

.cpc-banner-btn:hover {
    background-color: #fce4e4;
}

/* Responsive */
@media (max-width: 1024px) {
    .cpc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cpc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cpc-title {
        font-size: 28px;
    }

    .cpc-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cpc-banner-btn {
        width: 100%;
    }

    .cpc-info {
        padding: 14px !important;
    }

    .cpc-name {
        font-size: 15px !important;
        margin-bottom: 2px !important;
    }

    .cpc-spec,
    .cpc-price-old {
        font-size: 12px !important;
    }

    .cpc-price-new {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .cpc-grid {
        grid-template-columns: 1fr;
    }
}