.avg-number,
.menu-rating {
    font-size: 22px
}

.container h2,
.header-bg,
.modal-star {
    position: relative
}

.modal-star,
.star-rating {
    user-select: none;
    cursor: pointer
}

.btn,
.close-btn,
.modal-star,
.review-count,
.star-rating {
    cursor: pointer
}

.header-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45)
}

.menu-container h3 {
    margin: 15px 0 25px;
    font-family: "Trueno Bold" !important;
    font-size: 22px;
    color: #494949
}

.container h2 {
    color: #f1c778;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
    font-size: 40px;
    padding: 0 0 10px
}

@media (max-width:768px) {
    .header-bg {
        height: 150px !important
    }

    .container h2 {
        font-size: 28px
    }
}

.menu-container {
    padding: 0 15px
}

.menu-info h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: inherit;
    font-family: Trueno, sans-serif;
    margin: 0 0 10px;
    outline: 0;
    padding: 10px 0
}

.menu-info p {
    font-size: 17px;
    color: #404040;
    font-family: 'HelveticaNeue Roman';
    margin-bottom: 10px;
    margin-top: 0
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 27px;
    margin: 0 auto
}

.menu-box {
    border: 1px solid #d7d5d5;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    height: fit-content
}

@media (max-width:1250px) {
    .menu-box {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:576px) {
    .menu-items {
        grid-template-columns: repeat(1, 1fr)
    }

    .menu-box {
        max-width: 100%;
        width: 100%;
        height: auto
    }
}

.menu-info {
    padding: 15px
}

.review-count {
    text-decoration: underline
}

.reviews-con {
    display: flex;
    align-items: center
}

.menu-rating {
    margin: 0 5px 0 0 !important
}

.leave-review-btn,
.leave-review-btn:hover {
    background: 0 0;
    text-decoration: underline;
    padding-left: 20px;
    color: #404040
}

.stars-display {
    font-size: 1.5em;
    font-family: Arial, sans-serif;
    letter-spacing: 3px;
    line-height: 1;
    color: #ddd;
    background: linear-gradient(90deg, gold var(--fill-percent), #ddd var(--fill-percent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #777
}

.stars-con {
    width: fit-content;
    height: fit-content
}

.star-rating {
    display: inline-flex;
    gap: 0
}

.modal-star {
    display: inline-block;
    color: #aaa;
    transition: color .1s;
    margin-right: 2px
}

.modal-star::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    color: gold;
    width: var(--star-fill-width, 0%);
    overflow: hidden;
    white-space: nowrap;
    transition: width .15s
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.modal-content {
    background: #fff;
    padding: 3px;
    border-radius: 4px;
    height: auto;
    width: 350px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: 700;
    padding: .4em 1em;
    position: relative
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 400
}

#rating-text,
.btn,
.close-btn,
.rating-text {
    font-weight: 700
}

.close-btn {
    font-size: 24px;
    color: #888
}

.form-group {
    margin-bottom: 15px
}

.form-group label {
    display: block;
    font-size: .9em;
    margin-bottom: 5px;
    font-weight: 700
}

input[type=text],
textarea {
    width: calc(100% - 20px);
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1em
}

textarea {
    resize: vertical;
    height: 80px
}

.rating-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px
}

.star-rating {
    display: flex;
    font-size: 2.2em;
    line-height: 1;
    color: #ccc;
    margin-bottom: 5px
}

.modal-star.rated {
    color: gold
}

.rating-text {
    font-size: .9em;
    color: #999
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 3px;
    text-transform: uppercase
}

.submit-btn {
    background-color: #d9534f;
    color: #fff
}

.cancel-btn {
    background-color: #333;
    color: #fff
}

#rating-text {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    width: fit-content
}

.rating-group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center
}

#review-form {
    padding: 17px
}
div.modal-reviews-content.review-modal-con{
    width: 600px !important;
    background: #fff;
    padding: 3px;
    border-radius: 4px;
    height: auto;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

#all-reviews-content{
	padding: 0.5em calc(1em + 30px);	
}
div.modal-reviews-content.review-modal-con .single-review{
	margin-bottom: 1.5rem !important;
	border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
	padding: 1.25rem;
}

div.modal-reviews-content.review-modal-con .single-review h5{
	font-weight: bold;
    line-height: 1.1;
    color: #333333;
    font-family: Trueno Bold;
    margin: 0 0 10px;
    outline: none;
    padding: 10px 0;
	font-size: 24px;
}
.stars-review-display{
	font-size: 39px;
}
body.popup-open {
    position: fixed;
    width: 100%
}