.prs-brand-product-block {
    margin: 40px auto;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    max-width: 1200px;
    text-align: center;
}

.prs-brand-product-heading {
    font-size: 22px;
    color: #fff;
    margin-bottom: 20px;
}

.prs-brand-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.prs-brand-product-card {
    width: 160px;
    background: #282828;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #eee;
    transition: background 0.2s;
}

.prs-brand-product-card:hover {
    background: #333;
}

.prs-brand-product-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.prs-brand-product-title {
    font-size: 14px;
    font-weight: bold;
}

.prs-brand-product-footer {
    margin-top: 20px;
}
a.prs-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #2a2a2a;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #2a2a2a;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    margin-top: 10px;
}

a.prs-btn:hover {
    background-color: #fff;
    color: #2a2a2a;
}