.header .left-block .nav-menu a, .header .right-block .nav-menu a {
    font-size: 13px;
}

.has-submenu {
    position: relative;
}

.header  {
    padding: 0;
}

.header .submenu {
    position: absolute;
    /*bottom: -130px;*/
    left: -20px;
    background-color: var(--bg-header);
    padding: 10px 20px 5px;
    display: none;
}

@media (max-width: 1400px) {
    body {
        padding-top: 80px;
    }
}

@media (max-width: 767px) {
    .logo svg {
        height: 45px !important;
    }

    .header .mobile-menu-wrapper {
        top: 75px;
    }
}

.header .menu-button span {
    height: 2px;
}

.header .has-submenu:hover .submenu {
    display: block;
}

.header .submenu li {
    margin-bottom: 10px;
}

.header .buttons-block {
    justify-content: end;
    gap: 10px;
}

.header .user-icon-wrapper {
    height: 30px;
    width: 30px;
}

.button-reservation-white {
    border-radius: 5px;
    font-weight: bold;
    padding: 0 10px;
    height: 34px;
    display: flex;
    font-size: 13px;
    align-items: center;
    border-width: 1.5px;
}

.button-reservation-white span {
    margin-top: 1px;
}

.button-reservation-white:hover {
    background-color: var(--orange) !important;
    color: white;
}

.header .left-block, .header .right-block {
    height: 75px;
}

.header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Products */
.products-section .block-title {
    margin-bottom: 25px;
}

.products-section {
    padding-top: 20px;
    padding-bottom: 15px;
}

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-item {
    background-color: var(--background-card);
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.products-item-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
}

.products-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-item-name {
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 4px;
    text-align: left;
    color: #fff;
}

.products-item-text {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: var(--text-color-body);
    margin-top: 10px;
    margin-bottom: 10px;
    flex: 1;
}

.products-item-price {
    color: var(--orange);
    font-weight: 600;
    font-size: 24px;
    line-height: 27px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-item-text {
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .products {
        grid-template-columns: repeat(1, 1fr);
    }
}

.footer {
    padding-top: 35px;
    padding-bottom: 35px;
}

.footer-inner {
    padding-bottom: 25px;
}

.footer .footer-bottom {
    padding-top: 25px;
}
