:root{
    --purple: #5b2b82;
    --purple-dark: #4a226a;
    --text: #2b2b2b;
    --muted: #666;
    --bg: #ffffff;
    --card-border: #ece6f2;
    --shadow: 0 12px 30px rgba(0,0,0,0.08);
    --radius: 18px;
    --max-width: 1100px;
}

.select-process-section{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 70px 16px 50px;
    background: #fff;
}

.select-process-container{
    width: 100%;
    max-width: var(--max-width);
}

.select-process-header{
    text-align: center;
    margin-bottom: 34px;
}

.select-process-header h1{
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: #590F64;
    font-size: clamp(26px, 2.7vw, 40px);
    line-height: 1.15;
    margin: 0 0 12px;
}

.select-process-header p{
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* ✅ kafelek NIE jest klikany */
.select-option{
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    margin: 22px auto;
    cursor: default; /* ✅ było pointer */
    transition: transform .15s ease, box-shadow .15s ease;
}

.select-option:hover{
    transform: none;
    box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.select-option-left{
    padding: 34px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center; /* ✅ */
}


.select-option-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color:#590F64;

    font-size: clamp(12px, 1.5vw, 25px);

    margin: 0;
    line-height: 1.2;
}

.select-option-desc{
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
    max-width: 520px;
}


.select-option-btn{
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    padding: 10px 16px;
    border-radius: 10px;

    background: #590F64;
    color: #fff;

    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
    transition: background .15s ease, transform .15s ease;
    margin-left: auto;
    margin-right: auto;
}

.select-option-btn:hover{
    background: #2f0f44; /* ✅ hover */
    transform: translateY(-1px);
}


.select-option-right{
    position: relative;
    min-height: 260px;
    background: #f7f3fb;
}

.select-option-right img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display:block;
}

.select-process-footnote{
    text-align: center;
    margin-top: 26px;
    color: #8a8a8a;
    font-size: 13px;
}

@media (max-width: 900px){
    .select-option{
        grid-template-columns: 1fr;
    }
    .select-option-right{
        height: 240px;
        min-height: auto;
    }
    .select-option-left{
        padding: 26px 22px;
    }
    .select-option-btn{
        width: 100%;
        max-width: 260px;
    }
}

