/* 🧩 Card Abbonamento - Wrapper custom */
.ctsm-custom-card {
    background: #f1f9ff;
    border: 2px solid #0073aa;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 300px;
    position: relative;
    transition: all 0.3s ease;
}

.ctsm-custom-card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* 🧾 Nome Abbonamento */
.ctsm-custom-card .ctsm-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #111;
}

/* 🧠 Descrizione breve */
.ctsm-custom-card .ctsm-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

/* 💶 Prezzo */
.ctsm-custom-card .ctsm-price {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 20px;
}

/* 💳 Bottone personalizzato */
.ctsm-custom-card .ctsm-sub-btn {
    background: #0073aa;
    color: #fff !important;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.ctsm-custom-card .ctsm-sub-btn:hover {
    background-color: #005177;
    color: #fff;
}

/* 🔕 Nascondi link immagine & titolo */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    pointer-events: none;
    cursor: default;
}
