.order-form {
    max-width: 850px;
    margin: auto;
}

.form-section {
    background: #fff;
    padding: 28px;
    margin-bottom: 28px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .form-section h2 {
        margin-top: 0;
    }

.field {
    margin-bottom: 22px;
}

    .field label {
        display: block;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .field small {
        display: block;
        opacity: .75;
        margin-top: 4px;
    }

select {
    width: 160px;
    padding: 10px;
    font-size: 1rem;
}

.checkbox-list {
    display: grid;
    gap: 14px;
}

    .checkbox-list label {
        display: flex;
        gap: 10px;
        align-items: center;
        font-weight: normal;
    }

.summary {
    background: linear-gradient(#444, #111);
    color: white;
    border-radius: 12px;
    padding: 28px;
}

    .summary ul {
        padding-left: 18px;
    }

    .summary li {
        margin: 8px 0;
    }


.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option {
    padding: 18px 22px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #fafafa;
    transition: .2s;
}

    .option:hover {
        border-color: #b30000;
        background: #fff;
    }

    .option label {
        display: flex;
        align-items: center;
        gap: .8rem;
        cursor: pointer;
        font-weight: 600;
        font-size: 1.05rem;
    }

    .option input[type="checkbox"] {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .option small {
        display: block;
        margin-top: .6rem;
        margin-left: calc(20px + .8rem);
        line-height: 1.55;
        color: #666;
    }

textarea {
    width: 100%;
    font-size: 1rem;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.field input[type="email"], .field input[type="text"] {
    width: 100%;
    max-width: 420px;
    padding: 12px 14px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.field input[type="text"] {
    max-width: 200px;
    text-align: center;
}

    .field input[type="email"]:focus, .field input[type="text"]:focus, textarea:focus {
        outline: none;
        border-color: #2f6fed;
        box-shadow: 0 0 0 3px rgba(47,111,237,.15);
    }


    .btn {
        color: #000;
        background: #6cef20;
    }

        .btn:hover {
            box-shadow: 0px 0px 20px #6cef20;
        }

.orderbtn {
    font-weight: bold;
    color: #fff;
    background: rgb(222, 55, 40);
}
    .orderbtn:hover {
        box-shadow: 0px 0px 20px rgb(222, 55, 40);
    }