/* Главная страница стили */
body {
    background: #f5f5f5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    transition: margin-left 0.3s;
    font-family: 'Playfair Display', serif;
}

/* HEADER */
header {
    background: #333333;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
    z-index: 3000;
    padding: 0;
}

header .container-fluid {
    height: 100%;
}

header .row {
    height: 100%;
    margin: 0;
}

.header-left-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    width: 260px;
}

.header-left-section .d-flex {
    width: 100%;
    justify-content: center;
    position: relative;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo {
    height: 45px;
}

.header-center-section {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    flex-shrink: 0;
}

.header-nav-section {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
}

.menu-akcii,
.menu-dostavka {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    margin: 0;
    white-space: nowrap;
    padding: 0;
}

/* Стили для поиска */
.search-box-wrapper {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-height: 400px;
    overflow-y: auto;
    z-index: 4000;
    display: none;
    margin-top: 5px;
}

.search-results.active {
    display: block;
}

.search-results-list {
    padding: 10px 0;
}

.search-results-category {
    padding: 8px 15px;
    background: #f5f5f5;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s;
    border-bottom: 1px solid #eee;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9f9f9;
}

.search-result-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.search-result-title mark {
    background: #ffeb3b;
    padding: 0 2px;
    border-radius: 3px;
}

.search-result-price {
    font-family: 'Poiret One', cursive;
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 2px;
}

.search-result-desc {
    font-family: 'Poiret One', cursive;
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-desc mark {
    background: #ffeb3b;
    padding: 0 2px;
    border-radius: 3px;
}

.search-results-empty {
    padding: 30px 20px;
    text-align: center;
    color: #666;
}

.search-results-empty p {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 5px;
}

.search-results-empty small {
    font-family: 'Poiret One', cursive;
    font-size: 14px;
    color: #999;
}

.search-results-more {
    padding: 10px 15px;
    text-align: center;
    font-family: 'Poiret One', cursive;
    font-size: 13px;
    color: #999;
    font-style: italic;
}

/* Анимация для подсветки товара */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Стили для мобильного поиска */
.mobile-search {
    position: relative;
}

.mobile-search .search-results {
    position: fixed;
    top: auto;
    left: 20px;
    right: 20px;
    max-height: 300px;
    z-index: 4500;
}

/* Адаптивность */
@media (max-width: 768px) {
    .search-results {
        max-height: 300px;
    }

    .search-result-item {
        padding: 8px 12px;
    }

    .search-result-img {
        width: 40px;
        height: 40px;
    }

    .search-result-title {
        font-size: 14px;
    }
}

.search-box {
    height: 36px;
    border-radius: 5px;
    border: none;
    padding: 0 15px 0 45px;
    font-family: 'Playfair Display', serif;
    width: 417px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: #666;
}

.header-right-section {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 0 20px;
    flex: 1;
    min-width: 0;
}

.menu-akcii:hover,
.menu-dostavka:hover {
    color: #ddd;
}

/* .search-box-wrapper {
    position: relative;
    display: inline-block;
    margin: 0;
} */

.search-box {
    height: 36px;
    border-radius: 5px;
    border: none;
    padding: 0 15px 0 45px;
    font-family: 'Playfair Display', serif;
    width: 417px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: #666;
}

.btn-reserve-table {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    margin-right: 20px;
    transition: all 0.3s;
}

.btn-reserve-table:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-fav,
.icon-user {
    cursor: pointer;
    display: flex;
    align-items: center;
}


.icon-fav img,
.icon-user img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.favorites-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-family: 'Poiret One', cursive;
}

.cart {
    color: white;
    font-size: 16px;
    font-family: 'Poiret One', cursive;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #555;
    padding: 5px 15px;
    border-radius: 4px;
    white-space: nowrap;
}

.cart-badge {
    background: #ff6b6b;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    display: none;
}

/* Адаптив шапки */
@media (max-width: 767px) {
    header {
        height: 60px;
    }

    .header-left-section {
        width: auto;
        padding: 0 10px;
        flex: 0 0 auto;
    }

    .header-center-section {
        padding: 0 10px;
        flex: 0 0 auto;
    }

    .header-right-section {
        padding: 0 10px;
        flex: 1;
    }

    .logo {
        height: 35px;
    }

    .logo-container {
        justify-content: center;
    }

    .menu-akcii,
    .menu-dostavka {
        font-size: 16px;
    }

    .header-nav-section {
        gap: 15px;
    }

    .search-box {
        width: 150px;
        height: 32px;
        font-size: 14px;
    }

    .btn-reserve-table {
        font-size: 14px;
        padding: 8px 12px;
        margin-right: 10px;
    }

    .header-right {
        gap: 10px;
    }

    .cart {
        font-size: 14px;
        padding: 5px 10px;
    }

    .icon-fav img,
    .icon-user img {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    header {
        height: 65px;
    }

    .header-left-section {
        width: auto;
        padding: 0 15px;
        flex: 0 0 auto;
    }

    .header-center-section {
        padding: 0 15px;
        flex: 0 0 auto;
    }

    .header-right-section {
        padding: 0 15px;
        flex: 1;
        min-width: 0;
    }

    .logo {
        height: 40px;
    }

    .menu-akcii,
    .menu-dostavka {
        font-size: 16px;
        padding: 0;
    }

    .header-nav-section {
        gap: 15px;
    }

    .search-box {
        width: 200px;
        height: 35px;
    }

    .btn-reserve-table {
        font-size: 14px;
        padding: 8px 15px;
        margin-right: 15px;
    }

    .header-right {
        gap: 15px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    header {
        height: 65px;
    }

    .header-left-section {
        width: 260px;
        padding: 0;
        flex: 0 0 260px;
    }

    .header-center-section {
        padding: 0 20px;
        flex: 0 0 auto;
    }

    .header-right-section {
        padding: 0 20px;
        flex: 1;
        min-width: 0;
    }

    .logo {
        height: 40px;
    }

    .menu-akcii,
    .menu-dostavka {
        font-size: 18px;
        padding: 0;
    }

    .header-nav-section {
        gap: 20px;
    }

    .search-box {
        width: 250px;
        height: 35px;
    }

    .btn-reserve-table {
        font-size: 15px;
        padding: 9px 18px;
        margin-right: 15px;
    }

    .header-right {
        gap: 15px;
    }
}

@media (min-width: 1200px) {
    .header-left-section {
        width: 260px;
        padding: 0;
        flex: 0 0 260px;
    }

    .header-center-section {
        padding: 0 30px;
        flex: 0 0 auto;
    }

    .header-right-section {
        padding: 0 30px;
        flex: 1;
        min-width: 0;
    }

    .logo-container {
        justify-content: center;
    }

    .header-nav-section {
        gap: 25px;
    }
}

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 260px;
    height: calc(100vh - 70px);
    background: #252222;
    color: white;
    overflow-y: auto;
    z-index: 2000;
    transition: all 0.3s ease;
    transform: translateX(0);
}

#sidebar.collapsed {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#sidebar.collapsed .sidebar-header,
#sidebar.collapsed .sidebar-links {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
}

.sidebar-collapsed-toggle {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    width: 100%;
    padding: 10px 0;
}

#sidebar.collapsed .sidebar-collapsed-toggle {
    opacity: 1;
    visibility: visible;
}

.menu-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 5px;
}

.arrow-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

#sidebar .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 10;
    display: block;
    font-family: 'Playfair Display', serif;
    background: none;
    border: none;
}

#sidebar.collapsed .close-btn {
    opacity: 0;
    pointer-events: none;
}

.sidebar-header {
    position: relative;
    padding-top: 50px;
    margin-bottom: 20px;
}

#sidebar h4 a {
    text-align: center;
    margin: 0;
    font-size: 20px;
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    color: white;
    text-decoration: none;
}

#sidebar a {
    display: block;
    padding: 12px 25px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #3a3737;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    transition: background 0.3s;
}

#sidebar a:hover {
    background: #3a3737;
}

@media (max-width: 1199px) {
    #sidebar {
        left: -260px;
        top: 0;
        height: 100vh;
        padding-top: 70px;
    }

    #sidebar.active {
        left: 0;
    }

    #sidebar.collapsed {
        width: 60px;
        left: -60px;
    }

    #sidebar.collapsed.active {
        left: 0;
    }

    .sidebar-collapsed-toggle {
        top: 100px;
    }
}

@media (min-width: 1200px) {
    #sidebar {
        top: 70px;
        height: calc(100vh - 70px);
    }

    body.sidebar-expanded .content-wrapper {
        margin-left: 260px;
    }

    body.sidebar-collapsed .content-wrapper {
        margin-left: 80px;
    }
}

/* CONTENT */
.content-wrapper {
    margin-top: 70px;
    padding: 30px;
    transition: margin-left 0.3s ease;
    min-height: calc(100vh - 70px);
}

@media (min-width: 1200px) {
    .content-wrapper {
        margin-left: 260px;
    }
}

@media (max-width: 1199px) {
    .content-wrapper {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .content-wrapper {
        padding: 15px;
        margin-top: 60px;
    }
}

/* ТОВАРЫ НА ГЛАВНОЙ */
h3.mt-5.mb-4.text-center {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #333;
    margin: 40px 0 30px;
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.card-body p {
    font-family: 'Poiret One', cursive;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* FOOTER - ИСПРАВЛЕННЫЙ */
footer {
    background: white;
    padding: 40px 20px;
    margin-top: 60px;
    position: relative;
    z-index: 1000; /* Выше сайдбара */
    width: 100%;
    margin-left: 0; /* Сброс отступа сайдбара */
}

/* Удалите старые медиа-запросы для футера и замените на эти: */

/* Для всех экранов */
footer {
    margin-left: 0 !important; /* Футер всегда на всю ширину */
    clear: both;
}

/* На десктопе (1200px+) */
@media (min-width: 1200px) {
    body.sidebar-expanded footer {
        margin-left: 260px !important;
        width: calc(100% - 260px) !important;
        transition: margin-left 0.3s ease, width 0.3s ease;
    }

    body.sidebar-collapsed footer {
        margin-left: 60px !important;
        width: calc(100% - 60px) !important;
        transition: margin-left 0.3s ease, width 0.3s ease;
    }
}

/* На планшетах и мобильных (<1200px) */
@media (max-width: 1199px) {
    footer {
        margin-left: 0 !important;
        width: 100% !important;
        transition: margin-left 0.3s ease, width 0.3s ease;
    }

    #sidebar.expanded ~ footer {
        margin-left: 0 !important;
        width: 100% !important;
    }

    /* На маленьких экранах */
    @media (max-width: 767px) {
        footer {
            margin-left: 0 !important;
            width: 100% !important;
        }

        #sidebar.expanded ~ footer {
            margin-left: 0 !important;
            width: 100% !important;
        }
    }
}

/* Стили содержимого футера */
footer h5 {
    font-family: 'Advent Pro', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

footer p {
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

footer .text-center.text-secondary {
    font-family: 'Advent Pro', sans-serif;
    margin-top: 30px;
}

footer h5.footer-logo-title {
    display: flex;
    align-items: center;
    gap: 6px;
}

footer h5.footer-logo-title img {
    height: 30px;
}

@media (max-width: 767px) {
    footer {
        padding: 20px 15px;
        margin-top: 40px;
    }

    footer .row {
        flex-direction: column;
    }

    footer .col-md-4 {
        margin-bottom: 30px;
    }
}

/* МОДАЛКА ТОВАРА */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.modal-content {
    position: relative;
    width: 850px;
    max-width: 95%;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin: 80px auto;
    z-index: 10000;
}

.modal-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.modal-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.modal-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.modal-top h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.modal-desc {
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.modal-divider {
    border: none;
    border-top: 2px solid #eee;
    margin: 20px 0;
}

.modal-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-top: auto;
    flex-wrap: wrap;
}

.modal-bottom-left h5 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.modal-price-box {
    font-family: 'Poiret One', cursive;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.modal-bottom-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.modal-qty-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-qty {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 8px;
}

.modal-qty button {
    width: 35px;
    height: 35px;
    font-size: 22px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-qty button:hover {
    background: #eee;
}

.modal-qty span {
    font-family: 'Poiret One', cursive;
    font-size: 18px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.modal-add-btn {
    background: #333;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-family: 'Poiret One', cursive;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-add-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover {
    background: #f5f5f5;
    color: #333;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        margin: 40px auto;
    }

    .modal-body {
        flex-direction: column;
        gap: 20px;
    }

    .modal-img {
        max-width: 100%;
    }

    .modal-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .modal-qty-section {
        justify-content: space-between;
    }

    .modal-add-btn {
        padding: 12px 20px;
    }
}

/* КОРЗИНА */
.cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2499;
}

.cart-overlay.active {
    display: block;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 70px;
    right: 30px;
    width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2500;
    overflow: hidden;
}

.cart-modal.active {
    display: block;
}

.cart-header {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.item-price {
    font-family: 'Poiret One', cursive;
    font-size: 14px;
    color: #666;
}

.item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 15px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: #e9e9e9;
}

.item-qty span {
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 60px;
    text-align: right;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    margin-left: 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.remove-item:hover {
    background: #ffeaea;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.cart-empty p {
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    margin: 0;
}

.cart-total {
    background: #f9f9f9;
    padding: 20px;
    border-top: 1px solid #eee;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    color: #666;
}

.total-row.delivery {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.total-row.final {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.free-delivery {
    color: #28a745;
    font-weight: 600;
}

.cart-actions {
    display: flex;
    gap: 10px;
}

.cart-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-cart {
    background: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
}

.clear-cart:hover {
    background: #e9ecef;
}

.checkout-btn {
    background: #333;
    color: white;
}

.checkout-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

@media (max-width: 1199px) {
    .cart-modal {
        top: 65px;
        right: 20px;
        width: 350px;
    }
}

@media (max-width: 767px) {
    .cart-modal {
        top: 60px;
        right: 15px;
        left: 15px;
        width: auto;
    }
}


/* МОБИЛЬНОЕ МЕНЮ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3500;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 4000;
    transition: right 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-mobile-menu:hover {
    background: #f5f5f5;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-search {
    position: relative;
    margin-bottom: 10px;
}

.mobile-search input {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 15px 0 40px;
    font-family: 'Playfair Display', serif;
}

.mobile-search .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #666;
}

.mobile-btn-reserve {
    width: 100%;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-btn-reserve:hover {
    background: #ff5252;
}

.mobile-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 5px;
    font-family: 'Poiret One', cursive;
    font-size: 16px;
}

body.mobile-menu-open {
    overflow: hidden;
}

/* ОСНОВНЫЕ СТИЛИ ШАПКИ ДЛЯ ВСЕХ ЭКРАНОВ */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

/* Для десктопа (1200px и больше) */
@media (min-width: 1200px) {
    .header-left-section {
        width: 260px;
        flex: 0 0 260px;
    }

    .header-center-section {
        flex: 1;
        padding: 0 30px;
    }

    .header-right-section {
        flex: 0 0 auto;
        padding: 0 30px;
    }

    .header-nav-section {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .main-links {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .desktop-search {
        display: block !important;
        flex: 1;
        max-width: 417px;
        margin: 0 25px;
    }

    .search-box-wrapper {
        display: block !important;
        width: 100%;
    }

    .search-box {
        width: 100% !important;
        height: 36px;
    }

    .header-icons {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .btn-reserve-table {
        display: inline-block !important;
        margin-right: 20px;
    }

    .cart {
        display: flex !important;
    }

    .burger-menu {
        display: none !important;
    }
}

/* Для средних экранов (768px-1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .header-left-section {
        flex: 0 0 auto;
        padding-left: 20px;
    }

    .header-center-section {
        flex: 1;
        padding: 0 20px;
    }

    .header-right-section {
        flex: 0 0 auto;
        padding-right: 20px;
    }

    .header-nav-section {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .main-links {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-right: 20px;
    }

    .desktop-search {
        display: none !important;
    }

    .header-icons {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .burger-menu {
        display: flex !important;
        margin-left: 15px;
    }

    .menu-akcii,
    .menu-dostavka {
        font-size: 18px;
    }

    .logo {
        height: 40px;
    }
}

/* Для маленьких экранов (до 767px) */
@media (max-width: 767px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    header {
        height: 60px;
    }

    .header-left-section {
        flex: 1;
        padding-left: 15px;
    }

    .header-center-section {
        flex: 0 0 auto;
        padding: 0 15px;
    }

    .header-right-section {
        flex: 0 0 auto;
        padding-right: 15px;
    }

    .header-nav-section {
        display: flex !important;
        align-items: center;
    }

    .main-links {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-right: 10px;
    }

    .desktop-search {
        display: none !important;
    }

    .header-icons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .burger-menu {
        display: flex !important;
        margin-left: 10px;
    }

    .menu-akcii,
    .menu-dostavka {
        font-size: 16px;
    }

    .logo {
        height: 35px;
    }

    .icon-fav img,
    .icon-user img {
        width: 20px;
        height: 20px;
    }
}

/* МОБИЛЬНОЕ МЕНЮ */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.burger-menu span {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s;
    display: block;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3500;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 320px;
    height: 100%;
    background: white;
    z-index: 4000;
    transition: right 0.3s;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-mobile-menu:hover {
    background: #f5f5f5;
}

.mobile-menu-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-search {
    position: relative;
}

.mobile-search input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 15px 0 45px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

.mobile-search .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666;
    pointer-events: none;
}

.mobile-btn-reserve {
    width: 100%;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.mobile-btn-reserve:hover {
    background: #ff5252;
}

.mobile-cart-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.mobile-cart-section:hover {
    background: #e9ecef;
    border-color: #ddd;
}

.mobile-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-cart span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #333;
}

.mobile-cart-total {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-cart-total span:first-child {
    font-family: 'Poiret One', cursive;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.mobile-cart-total .cart-badge {
    background: #ff6b6b;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 20px;
    text-align: center;
    display: none;
}

.mobile-additional-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mobile-additional-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s;
}

.mobile-additional-links a:hover {
    background: #f5f5f5;
    color: #ff6b6b;
}

.mobile-additional-links a i {
    width: 20px;
    text-align: center;
}

body.mobile-menu-open {
    overflow: hidden;
}


/* MOBILE: сайдбар скрыт за экраном, открывается FAB-кнопкой снизу */
@media (max-width: 1199px) {
    #sidebar {
        left: -260px !important;
        transform: translateX(0) !important;
        width: 260px !important;
        top: 0;
        height: 100vh;
        padding-top: 70px;
        z-index: 2500;
        transition: left 0.3s ease;
    }

    #sidebar.active {
        left: 0 !important;
    }

    #sidebar.collapsed {
        width: 260px !important;
        left: -260px !important;
    }

    #sidebar.collapsed .sidebar-header,
    #sidebar.collapsed .sidebar-links,
    #sidebar.collapsed .close-btn {
        opacity: 1;
        visibility: visible;
        height: auto;
        overflow: visible;
    }

    .sidebar-collapsed-toggle {
        display: none !important;
    }

    .content-wrapper {
        margin-left: 0 !important;
        padding-bottom: 90px;
    }

    body.sidebar-active {
        overflow: hidden;
    }

    body.sidebar-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2400;
    }
}

@media (max-width: 767px) {
    #sidebar {
        padding-top: 60px;
    }
}

/* MOBILE: упрощённая шапка */
@media (max-width: 1199px) {
    header .row {
        flex-wrap: nowrap;
    }

    .main-links {
        display: none !important;
    }

    .header-left-section {
        width: auto !important;
        flex: 0 0 auto;
    }

    .header-center-section {
        flex: 1;
        justify-content: flex-end;
        padding: 0 10px;
    }

    .header-nav-section {
        justify-content: flex-end;
        width: 100%;
    }

    .header-right-section {
        flex: 0 0 auto;
        padding: 0 10px;
    }
}


/* Кнопка открытия сайдбара на мобильных */
.mobile-sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #252222;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    z-index: 1800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.mobile-sidebar-toggle .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
}

.mobile-sidebar-toggle .menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
}


@media (max-width: 1199px) {
    .mobile-sidebar-toggle {
        display: flex;
    }
}

@media (min-width: 1200px) {
    .mobile-sidebar-toggle {
        display: none;
    }
}


/* Swiper карусель с эффектом coverflow */
.promoSwiper {
    width: 100%;
    padding: 60px 0 80px;
    overflow: hidden;
    margin: 20px 0 30px;
}

.promoSwiper .swiper-wrapper {
    padding: 20px 0;
    align-items: center;
}

.promoSwiper .swiper-slide {
    width: 500px;
    height: 350px;
    transition: all 0.5s ease;
    opacity: 0.3;
    transform: scale(0.8) translateX(-50px);
    filter: blur(3px) brightness(0.7);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.promoSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Центральный (активный) слайд */
.promoSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1) translateX(0);
    filter: blur(0) brightness(1);
    z-index: 20;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Слайды слева и справа от центрального */
.promoSwiper .swiper-slide-next,
.promoSwiper .swiper-slide-prev {
    opacity: 0.6;
    transform: scale(0.9) translateX(0);
    filter: blur(1px) brightness(0.8);
    z-index: 10;
}

/* Стрелки навигации */
.promoSwiper .swiper-button-next,
.promoSwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.promoSwiper .swiper-button-next:hover,
.promoSwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.promoSwiper .swiper-button-next:after,
.promoSwiper .swiper-button-prev:after {
    font-size: 22px;
    font-weight: bold;
}

/* Пагинация (индикаторы) */
.promoSwiper .swiper-pagination {
    bottom: 10px;
}

.promoSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.promoSwiper .swiper-pagination-bullet-active {
    background: #ff6b6b;
    transform: scale(1.2);
    width: 30px;
    border-radius: 6px;
}

.promoSwiper .swiper-pagination-bullet:hover {
    background: #ff6b6b;
    opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .promoSwiper .swiper-slide {
        width: 450px;
        height: 300px;
    }

    .promoSwiper .swiper-slide-active {
        transform: scale(1.05);
    }
}

@media (max-width: 992px) {
    .promoSwiper .swiper-slide {
        width: 380px;
        height: 260px;
    }

    .promoSwiper .swiper-button-next,
    .promoSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .promoSwiper .swiper-button-next:after,
    .promoSwiper .swiper-button-prev:after {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .promoSwiper {
        padding: 40px 0 60px;
    }

    .promoSwiper .swiper-slide {
        width: 300px;
        height: 220px;
    }

    .promoSwiper .swiper-slide-active {
        transform: scale(1);
    }

    .promoSwiper .swiper-button-next,
    .promoSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .promoSwiper .swiper-button-next:after,
    .promoSwiper .swiper-button-prev:after {
        font-size: 18px;
    }

    .promoSwiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .promoSwiper .swiper-pagination-bullet-active {
        width: 25px;
    }
}

@media (max-width: 576px) {
    .promoSwiper .swiper-slide {
        width: 260px;
        height: 180px;
    }

    .promoSwiper .swiper-button-next,
    .promoSwiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 420px) {
    .promoSwiper .swiper-slide {
        width: 220px;
        height: 160px;
    }
}

@media (max-width: 360px) {
    .promoSwiper .swiper-slide {
        width: 190px;
        height: 140px;
    }
}


.icon-user {
    position: relative;
    cursor: pointer;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    display: none;
    z-index: 4000;
    margin-top: 10px;
}

.user-dropdown.active {
    display: block;
}

.user-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-family: 'Poiret One', cursive;
    transition: background 0.3s;
    border-bottom: 1px solid #eee;
}

.user-dropdown a:last-child {
    border-bottom: none;
}

.user-dropdown a:hover {
    background: #f5f5f5;
    color: #ff6b6b;
}


/* Стили для счетчика категорий в сайдбаре */
.sidebar-link {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-family: 'Poiret One', cursive;
}

#sidebar.collapsed .category-count {
    display: none;
}


/* Мобильное меню - улучшенные стили */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: white;
    z-index: 4000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo img {
    height: 35px;
}

.close-mobile-menu {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-mobile-menu:hover {
    background: #f5f5f5;
}

.mobile-menu-content {
    padding: 20px;
}

/* Поиск в мобильном меню */
.mobile-search {
    position: relative;
    margin-bottom: 25px;
}

.mobile-search input {
    width: 100%;
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 15px 0 45px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.3s;
}

.mobile-search input:focus {
    outline: none;
    border-color: #ff6b6b;
    background: white;
}

.mobile-search .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #999;
}

/* Навигационные ссылки */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #333;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s;
}

.mobile-nav-link i {
    width: 24px;
    color: #666;
    font-size: 18px;
}

.mobile-nav-link:hover {
    background: #f5f5f5;
    color: #ff6b6b;
}

.mobile-nav-link:hover i {
    color: #ff6b6b;
}

.mobile-cart-value {
    margin-left: auto;
    font-family: 'Poiret One', cursive;
    font-weight: 600;
    color: #ff6b6b;
}

/* Кнопка бронирования */
.mobile-btn-reserve {
    width: 100%;
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.mobile-btn-reserve:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Разделитель */
.mobile-divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

/* Категории */
.mobile-categories-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    padding: 0 4px;
}

.mobile-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #555;
    text-decoration: none;
    font-family: 'Poiret One', cursive;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-category-link:hover {
    background: #f5f5f5;
    color: #ff6b6b;
}

.mobile-category-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
}

/* Секция пользователя */
.mobile-user-section {
    margin-top: 5px;
}

.mobile-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
}

.mobile-user-info i {
    font-size: 28px;
    color: #ff6b6b;
}

.mobile-user-info span {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.mobile-user-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-user-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #555;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.mobile-user-link i {
    width: 24px;
    color: #999;
    font-size: 18px;
}

.mobile-user-link:hover {
    background: #f5f5f5;
    color: #ff6b6b;
}

.mobile-user-link:hover i {
    color: #ff6b6b;
}

/* Кнопки авторизации */
.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-login-btn,
.mobile-register-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-login-btn {
    background: #333;
    color: white;
}

.mobile-login-btn:hover {
    background: #ff6b6b;
    color: white;
}

.mobile-register-btn {
    background: #f5f5f5;
    color: #333;
}

.mobile-register-btn:hover {
    background: #e0e0e0;
}
