/* ========================================
   MENU PAGE STYLES
   ======================================== */

.menu-header {
    background: linear-gradient(135deg, var(--vv-green) 0%, #4cae4c 100%);
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.menu-header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.menu-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.menu-main-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin: 0;
    flex: 1;
}

.menu-header-nav {
    display: flex;
    gap: 15px;
}

.menu-header-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.menu-header-link:hover {
    background: white;
    color: var(--vv-green);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.menu-section {
    padding: 60px 0 100px;
    background: var(--vv-light-bg);
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--vv-text);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--vv-green);
    display: inline-block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.menu-item {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.menu-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.menu-badge-new {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
}

.menu-badge-special {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

.menu-item-rating {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.rating-star {
    font-size: 14px;
}

.rating-value {
    color: var(--vv-text);
}

.menu-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.menu-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--vv-text);
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 44px;
}

.menu-item-weight {
    font-size: 13px;
    color: var(--vv-text-light);
    margin-bottom: 15px;
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--vv-border);
}

.menu-item-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--vv-green);
}

.menu-btn-cart {
    background: var(--vv-green);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu-btn-cart:hover {
    background: var(--vv-green-hover);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.3);
}

.menu-info-block {
    background: white;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.menu-info-block h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--vv-text);
    margin-bottom: 15px;
}

.menu-info-block p {
    font-size: 15px;
    color: var(--vv-text-light);
    line-height: 1.7;
    margin-bottom: 10px;
}

.menu-info-block p:last-child {
    margin-bottom: 0;
}

/* Реквизиты в футере */
.vv-footer-requisites {
    margin-bottom: 20px;
}

.vv-footer-company-name {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.vv-footer-requisite-item {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 6px;
}

.vv-footer-requisite-item strong {
    color: #ffffff;
    font-weight: 600;
}

.vv-footer-documents {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.vv-footer-doc-link {
    color: var(--vv-green);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.vv-footer-doc-link:hover {
    color: #ffffff;
    padding-left: 8px;
}

/* Responsive */
@media (max-width: 968px) {
    .menu-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .menu-main-title {
        font-size: 28px;
    }

    .menu-header-nav {
        width: 100%;
        justify-content: center;
    }

    .menu-header-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .menu-category-title {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .menu-header {
        padding: 20px 0;
    }

    .menu-logo img {
        height: 40px;
    }

    .menu-main-title {
        font-size: 24px;
    }

    .menu-header-link {
        font-size: 13px;
        padding: 8px 16px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-category-title {
        font-size: 22px;
    }

    .menu-item-name {
        font-size: 15px;
        min-height: auto;
    }

    .menu-item-price {
        font-size: 18px;
    }

    .menu-info-block {
        padding: 20px;
    }

    .menu-info-block h3 {
        font-size: 20px;
    }
}

