/*
 * Outdoor — Box styles
 * Component styles for pricing and promo boxes.
 */
 .bg-verde-chiaro{
    background-color: #6da938;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.bg-verde-scuro{
    background-color: #007d33;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0px;
}
.smart-plan-card {
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    background-color: var(--v-chiaro);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.smart-plan-card--annual {
    border-top-right-radius: 38px;
}

.smart-plan-card--smart {
    border-radius: 28px 0px 12px 12px;
    background-color: var(--verde-chiaro);
}
.smart-plan-card--365{
    border-radius: 0px 28px 12px 12px;
    background-color: var(--verde-chiaro);
}

.smart-plan-card--daily {
    border-radius: 28px 28px 12px 12px;
    background-color: var(--verde-scuro);
}

.smart-plan-card__topbar {
    min-height: 14px;
    background-color: var(--verde-scuro);
}

.smart-plan-card__body {
    padding: 8px 32px 25px;
    text-align: center;
    color: var(--text-bianco);
}

.smart-plan-card__title {
    margin: 0;
    color: var(--text-bianco);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.05;
}

.smart-plan-card__eyebrow {
    margin-top: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.1;
}

.smart-plan-card__subtitle {
    margin-top: 4px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.smart-plan-card__divider {
    width: 100%;
    height: 2px;
    margin: 10px 0 10px;
    background-color: rgba(255, 255, 255, 0.75);
}

.smart-plan-card__features {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.smart-plan-card__note {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.35;
}

.smart-plan-card__price-wrap {
    margin-top: 14px;
}

.smart-plan-card__price {
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.smart-plan-card__price-note {
    margin-top: 6px;
    font-size: 0.95rem;
    line-height: 1.25;
}

.smart-plan-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    margin-top: 26px;
    padding: 14px 26px;
    border-radius: 10px;
    background-color: #FFB800;
    color: var(--verde-bianco);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
}

.daily-plan-wrap {
    margin-top: 18px;
}

.daily-plan-links {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.daily-plan-links a {
    color: var(--grigio-scuro);
    font-size: 0.95rem;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .smart-plan-card__body {
        padding: 24px 20px 28px;
    }

    .smart-plan-card__button {
        width: 100%;
        min-width: 0;
    }

    .daily-plan-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
