h3,
span, label {
    font-size: var(--fs-sm);
    color: var(--cl-secondary-green);
    font-weight: normal;
}

header {
    padding: 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

header .icon img {
    width: 20px;
    height: auto;
}

header .brand-logo img {
    max-width: 80px;
    height: auto;
}

.sub-header {
    margin-block: .5rem;
    background-color: var(--cl-primary);
    width: 60%;
    margin-inline: auto;
    padding: .75rem 1rem;
    border-radius: 99rem;
}

.buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.btn-sm {
    padding: .5rem 1rem;
}


.form-container {
    width: 100%;
    max-width: 500px;
    padding: 10px 30px ;
    border-radius: 12px;
    display: flex
;
    flex-direction: column;
    gap: .75rem;
}


label {
    display: block;
    font-weight: bold;
    margin-bottom: 6px;
    margin-right: 10px;
}

 input {
     width: 225px;
    background: transparent !important;
    border: none;
    outline: none;

}

.reserve-image {
    margin: 40px auto 40px auto;

}
.reserve-image img {
    max-width: 70%;
    height: auto;
    display: block;
    margin: 30px auto 30px auto;
}

.reserve-title {
    text-align: center;
}
.field{
    margin-bottom: 20px;
    background-color: var(--cl-primary);
    border-radius: 40px;
    display: flex
;
    justify-content: space-around;
    align-items: center;
    height: 50px;
}
.count-line{
    border:  1px solid #1E3932;
    width: 55px;
}
.item-count input {
}

.counter-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--cl-secondary);
    border-radius: 40px;
    padding: 5px;

}

.counter-wrapper button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: none;
    background-color:  var(--cl-secondary-green);
    display: flex
;
    align-items: center;
    justify-content: center;
    text-align: center
}

.counter-wrapper .item-count {
    width: 25px;
    height: 25px;
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--cl-bg-primary);
    border: none;
    background-color: transparent;
    -moz-appearance: textfield;
}
.counter-wrapper .item-count::-webkit-outer-spin-button,
.counter-wrapper .item-count::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.increase-btn img , .decrease-btn img{
    width: 20px;
}


.datetime {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}
.reservation-date,.reservation-time{
    width: 50%;
}
.reservation-date input ,.reservation-time input{
    width: 100%;
    text-align: center;
}
.datetime .field {
    flex: 1;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 9999s ease-in-out 0s;
}

.field textarea {
    width: 100%;
    height: 60px;
    background-color: #f4e8d2;
    border: none;
    border-radius: 40px;
    padding: 10px;
    font-size: 14px;
    resize: none;
    outline: none;

}

.field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 6px;
    background: var(--cl-secondary);
    border: none;
    border-radius: 40PX;
    color: var(--cl-bg-primary);
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: background 0.3s;
}

.text{
    text-align: center;
    font-size: 12px;
    display: block;
    margin-bottom: 20px;
}

input[type="date"], input[type="time"] {
    text-align: center;
}


label {
    white-space: nowrap;
    font-size: calc(var(--fs-sm) - .2rem);
}
