/* ── Wrapper pagină selecție ─────────────────────────────────────────────── */
.cftn-select-wrap {
    max-width: 620px;
    margin: 40px auto;
    padding: 0 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.cftn-select-title {
    font-size: 26px;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.cftn-select-subtitle {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 28px;
}

/* ── Carduri produse ─────────────────────────────────────────────────────── */
.cftn-products {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 0 28px;
}

.cftn-product-card {
    cursor: pointer;
    flex: 1;
    min-width: 130px;
    max-width: 180px;
    position: relative;
}

.cftn-product-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cftn-product-inner {
    border: 3px solid #dddddd;
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    background: #fff;
    user-select: none;
}

.cftn-product-card:hover .cftn-product-inner {
    border-color: #e91e63;
    background: #fff8fb;
    transform: translateY(-3px);
}

.cftn-product-card input[type="radio"]:checked + .cftn-product-inner {
    border-color: #e91e63;
    background: #fff0f6;
    box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.15);
}

.cftn-product-icon {
    display: block;
    font-size: 44px;
    margin-bottom: 12px;
}

.cftn-product-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}

/* ── Buton confirmare ────────────────────────────────────────────────────── */
.cftn-btn-confirm {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    padding: 16px;
    background: #e91e63;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.15s;
}

.cftn-btn-confirm:hover {
    background: #c2185b;
    transform: translateY(-2px);
}

/* ── Notă de subsol ──────────────────────────────────────────────────────── */
.cftn-select-note {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin: 0;
}

/* ── Mesaj eroare ────────────────────────────────────────────────────────── */
.cftn-error {
    background: #fff0f0;
    border-left: 4px solid #d63638;
    color: #d63638;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* ── Cutie mesaj generic (confirmare / eroare) ───────────────────────────── */
.cftn-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .cftn-products {
        flex-direction: column;
        align-items: center;
    }
    .cftn-product-card {
        width: 80%;
        max-width: 100%;
    }
}
