﻿/* Așezare în linie */
.radio-3d {
    display: inline-flex !important;
    align-items: center;
    margin-right: 30px; /* distanță între ele */
}

/* Ascundem radio-ul default */
.radio3d-input {
    display: none;
}

.radio-3d label {
    position: relative;
    cursor: pointer;
    padding-left: 38px;
    font-size: 1.1rem;
    user-select: none;
    white-space: nowrap;
}

    /* Cerc exterior 3D */
    .radio-3d label::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: linear-gradient(145deg, #ffffff, #d0d0d0);
        border: 2px solid #8e8e8e;
        box-shadow: inset 2px 2px 4px rgba(0,0,0,0.25), inset -2px -2px 4px rgba(255,255,255,0.9);
        transition: all 0.25s ease;
    }

    /* Bila simplă (fără glow) */
    .radio-3d label::after {
        content: "";
        position: absolute;
        left: 7px;
        top: 12px;
        width: 12px;
        height: 12px;
        background: #4a90e2;
        border-radius: 50%;
        transform: scale(0);
        opacity: 0;
        transition: all 0.25s cubic-bezier(.26,1.5,.48,1.1);
    }

/* Selectat */
.radio3d-input:checked + label::after {
    transform: scale(1);
    opacity: 1;
}

.radio3d-input:checked + label::before {
    border-color: #4a90e2;
    background: linear-gradient(145deg, #f0f0f0, #bdbdbd);
}
