h4{
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
}
h3{
    font-size: 20px;
}
p{
    padding: 3px 10px;
}
body{
    justify-content: start;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

#popup p {
    font-size: 20px;
    margin-top: -30px;
    margin-bottom: 20px;
}

.item-image{
    display: block;
    background-image: url(../../images/menu-items/01_generaltsochicken.webp);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
}
/*--Item Descri[tion--*/
.item-description{
    background-color: var(--light-blue);
    border-radius: 20px;
    margin-bottom:24px;
    margin-top: -20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 0px;
    padding-bottom: 16px;
    position: relative;
    z-index: 2;
    
}
.item-description *{
    margin: 10px 20px;;
}

.item-description div{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

h1{
    padding: 8px;
    text-align: left;
}

.back-icon{
    display: none;
}

/*--Add On Div--*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.additional-selectors{
    background-color: var(--dark-blue);
    color: var(--background);
    padding: 25px;
    margin: auto;
    height: fit-content;
    border-radius: 12px;
    width: 85vw;
    max-width: 400px;
}

.form-group {
    display: block;
    margin-bottom: 15px;
    margin-top: 15px;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content:'';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
}

.form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#add-note{
    width: 100%;
    border-radius: 12px;
    height: 36px;
    padding: 10px;
    border: none;
    justify-self: center;
}


/*--Bottom Div--*/
.checkout-selection{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    margin: 20px 30px;
    padding-bottom: 10px;
}

.checkout-selection p{
    font-size: 20px;
}

/*Pop Up*/
#popup {
    display: none;
}

.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    backdrop-filter: blur(4px); 
}


.popup-content {
    background: var(--background);
    border-radius: 12px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    margin: 16px 8px;
    cursor: pointer;
}

.popup-content img{
    max-width: 80%;
}

.popup-content .btn{
    width: 80%;
}


@media screen and (max-width: 430px) {
    .popup {
        width: 100%;
    }
}
