/* Digital Services Hub Custom Styling */
.dsh-services-wrapper {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.dsh-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid #edf2f7;
    background-color: #ffffff;
}

.dsh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
}

.dsh-card-img-wrap {
    height: 200px;
    overflow: hidden;
    background-color: #f8fafc;
}

.dsh-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.dsh-card:hover .dsh-card-img {
    transform: scale(1.05);
}

.dsh-add-to-cart-btn {
    transition: all 0.2s ease;
}

.dsh-add-to-cart-btn:hover {
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.35);
}

/* Checkout & Gateway Modal Styling */
.dsh-gateway-card {
    transition: all 0.2s ease-in-out;
    background: #ffffff;
    cursor: pointer;
}

.dsh-gateway-card:hover {
    background-color: #f8fafc;
    border-color: #0d6efd !important;
}

.dsh-gateway-card.active {
    background-color: #f0f7ff;
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 1px #0d6efd;
}

.dsh-gateway-card input[type="radio"] {
    cursor: pointer;
}