#invoice-fields{
    display:none;
    margin-top:20px;
    gap:20px;
    grid-template-columns:1fr 1fr;
}

.nosework-calendar{

    max-width:1200px;
    margin:auto;
}

.course-button{

    display:block;

    width:100%;

    padding:14px 20px;

    border:none;

    border-radius:12px;

    background:#222;

    color:#fff;

    text-align:center;

    text-decoration:none;

    font-size:1rem;

    font-weight:700;

    line-height:1.4;

    cursor:pointer;

    transition:.2s;

    box-sizing:border-box;

    appearance:none;
}


.course-day-card{

    background:white;
    border-radius:20px;

    padding:30px;

    margin:50px 0 30px;

    text-align:center;

    box-shadow:0 6px 24px rgba(0,0,0,.07);
}

.course-day-weekday{

    text-transform:uppercase;

    letter-spacing:3px;

    color:#888;

    font-size:.9rem;

    font-weight:600;
}

.course-day-number{

    font-size:4rem;

    font-weight:700;

    line-height:1;

    margin:10px 0;
}

.course-day-month{

    font-size:1.2rem;

    color:#666;
}

.course-day-count{

    margin-top:18px;

    display:inline-block;

    background:#F2F5F7;

    padding:8px 18px;

    border-radius:30px;

    font-size:.9rem;
}

.course-day{

    margin:50px 0 25px;
    font-size:2rem;
    font-weight:700;
}
.course-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:30px;
}
.course-card{

    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.25s;
}
.course-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 45px rgba(0,0,0,.15);
}
.course-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;
}
.course-content{

    padding:22px;
}
.course-badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:600;

    margin-bottom:18px;
}
.course-card.nosework .course-badge{

    background:#D6EFFF;

    color:#005EA8;
}
.course-card.zabawy .course-badge{

    background:#DDF7E7;

    color:#167D4B;
}
.course-card.warsztaty .course-badge{

    background:#FFF2D8;

    color:#A85D00;
}
.course-price{

    font-size:2rem;

    font-weight:700;

    margin:20px 0;
}

.course-button:hover{
    background:#060;
    color:#fff;
}

.course-button:visited{
    color:#fff;
}

.booking-form-card .course-button{

    margin-top:30px;
}

.booking-page{

    display:grid;

    grid-template-columns:380px 1fr;

    gap:40px;

    max-width:1200px;

    margin:40px auto;
}


.booking-summary,
.booking-form-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 8px 30px rgba(0,0,0,.08);
}


.booking-summary img{

    width:100%;

    height:240px;

    object-fit:cover;
}


.booking-summary-content{

    padding:24px;
}


.booking-form-card{

    padding:35px;
}


.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}


.form-group{

    display:flex;

    flex-direction:column;
}


.form-group label{

    margin-bottom:8px;

    font-weight:600;
}

.form-group input,
.form-group textarea{

    border:1px solid #ddd;

    border-radius:12px;

    padding:14px;

    font-size:15px;

    transition:.2s;
}


.form-group input:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#005EA8;

    box-shadow:0 0 0 4px rgba(0,94,168,.12);
}


.form-group.full{

    grid-column:1 / -1;
}

.booking-submit{

    width:100%;

    margin-top:25px;

    padding:16px;

    border:none;

    border-radius:12px;

    background:#222;

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;
}

@media (max-width:900px){

    .booking-page{

        grid-template-columns:1fr;
    }

    .form-grid{

        grid-template-columns:1fr;
    }

}