﻿/* Card layout base */
.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .price-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

/* Banda superiore con evidenziazione */
.price-banner {
    background: linear-gradient(135deg, #153453, #020e1f);
    padding: 16px;
}

    .price-banner h5 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 4px;
    }

    .price-banner h3 {
        font-size: 1.8rem;
        font-weight: 700;
    }

    .price-banner span {
        font-size: 0.85rem;
        color: #e6ffe6;
    }

/* Corpo del contenuto */
.price-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

    .price-body p {
        font-size: 0.95rem;
        color: #444;
        flex-grow: 1;
    }

    .price-body button {
        font-size: 1.05rem;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
    }
