:root {
    --brand-red: #9e1b11; /* Цвет плашки категорий */
    --text-main: #1a1a1a;
    --text-muted: #6c757d;
}

html {
    scroll-behavior: smooth; /* Плавный скролл для якорей */
    font-family: 'Lora', serif !important;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #F6F6F8; /* Убрали серые поля */
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p, .category-title, .menu-item-title {
    font-family: 'Lora', serif;
}

.fs-25px{
    font-size: 25px !important;
}

.app-container {
    max-width: 480px; /* Имитация мобилки на десктопе */
    margin: 0 auto;
    background-color: #F6F6F8;
    padding-bottom: 60px;
}

/* Шапка и логотип */
.hero-bg img {
    width: 100%;
}

.logo-container {
    width: 140px;
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
    margin: -70px auto 20px auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.logo-container img {
    width: 80%;
    height: auto;
}

/* Разделитель со звездой */
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 20px;
}
.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #9B1507;
}
.separator:not(:empty)::before { margin-right: 15px; }
.separator:not(:empty)::after { margin-left: 15px; }
.separator i {
    color: #888;
    font-size: 1.2rem;
    font-style: normal;
}

/* Навигация */
.anchor-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

/* Заголовок категории */
.category-title {
    background-color: var(--brand-red);
    color: white;
    border-radius: 0 20px 20px 0; /* Плашка прилегает к левому краю */
    display: inline-block;
    padding: 8px 24px 8px 15px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: 0;
}

/* Карточки меню */
.menu-item .image-holder{
    height: 260px;
    background: #9B1507;
}

.image-holder .price{
    text-align: center;
    color: white;
    font-family: 'Lora', serif;
    font-size: 24px;
}

.menu-img {
    width: 100%;
    aspect-ratio: 3/4; /* Вытянутые пропорции как на макете */
    object-fit: cover;
    object-position: center center;
    border-radius: 0 0 60px 60px;
    margin-bottom: 12px;
    height: 200px;
}

.menu-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
    margin-top: 10px;
}

.menu-item-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: #000; /* Под твой стиль */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #333;
    transform: translateY(-3px);
}
