.vxr_57_main_box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(62, 39, 35, 0.1);
}

.vxr_57_container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.vxr_57_topbar {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    padding: 8px 0;
}

.vxr_57_topbar .vxr_57_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vxr_57_topbar_info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.vxr_57_topbar_link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.vxr_57_topbar_link:hover {
    color: #FFAB91;
}

.vxr_57_topbar_link i {
    font-size: 12px;
}

.vxr_57_topbar_locations {
    display: flex;
    gap: 20px;
}

.vxr_57_location {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vxr_57_location i {
    color: #FFAB91;
    font-size: 11px;
}

.vxr_57_navbar {
    padding: 15px 0;
    background: #fff;
}

.vxr_57_navbar .vxr_57_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vxr_57_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.vxr_57_logo_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.vxr_57_logo_text {
    display: flex;
    flex-direction: column;
}

.vxr_57_logo_name {
    font-size: 22px;
    font-weight: 700;
    color: #3E2723;
    line-height: 1.2;
}

.vxr_57_logo_tagline {
    font-size: 11px;
    color: #8D6E63;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vxr_57_nav_menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.vxr_57_nav_menu li a {
    color: #3E2723;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.vxr_57_nav_menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5D4037, #8D6E63);
    transition: width 0.3s ease;
}

.vxr_57_nav_menu li a:hover {
    color: #5D4037;
}

.vxr_57_nav_menu li a:hover::after {
    width: 100%;
}

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

.vxr_57_cart_btn {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vxr_57_cart_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.3);
}

.vxr_57_cart_count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #D84315;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vxr_57_burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.vxr_57_burger span {
    width: 25px;
    height: 2px;
    background: #3E2723;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vxr_57_burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.vxr_57_burger.active span:nth-child(2) {
    opacity: 0;
}

.vxr_57_burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.vxr_57_mobile_menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.vxr_57_mobile_menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    top: 120px;
}

.vxr_57_mobile_nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vxr_57_mobile_nav li {
    border-bottom: 1px solid rgba(62, 39, 35, 0.1);
}

.vxr_57_mobile_nav li:last-child {
    border-bottom: none;
}

.vxr_57_mobile_nav li a {
    display: block;
    padding: 15px 0;
    color: #3E2723;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.vxr_57_mobile_nav li a:hover {
    color: #5D4037;
    padding-left: 10px;
}

@media (max-width: 1024px) {
    .vxr_57_nav_menu {
        display: none;
    }
    .vxr_57_burger {
        display: flex;
    }
}

@media (max-width: 768px) {
    .vxr_57_topbar .vxr_57_container {
        justify-content: center;
    }
    .vxr_57_topbar_locations {
        display: none;
    }
    .vxr_57_logo_name {
        font-size: 18px;
    }
    .vxr_57_logo_icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .vxr_57_mobile_menu.active {
        top: 105px;
    }
}