/* Grouped product cards */
.sso-grouped-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}

.sso-card {
    display: block;
    width: 220px;
    background: #f0f0f0; /* Off-white */
    border-radius: 12px;
    text-align: center;
    padding: 15px;
    box-shadow: 4px 8px 10px rgba(0,0,0,0.3)!important;
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

.sso-card:hover {
    background: #fff;
    box-shadow: 4px 8px 10px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.sso-card-img {
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
}

.sso-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 5px 0;
    color: #151535; /* Banner Blue */
}

.sso-card-price {
    font-size: 15px;
    font-weight: 600;
    color: #FF6400; /* Main Orange */
}