.vxr_64_main_box {
    background: linear-gradient(135deg, #3E2723 0%, #4E342E 100%);
    padding: 60px 0 0;
}

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

.vxr_64_top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vxr_64_logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.vxr_64_logo_icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 171, 145, 0.2) 0%, rgba(255, 138, 101, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFAB91;
    font-size: 20px;
}

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

.vxr_64_logo_name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.vxr_64_logo_tagline {
    font-size: 10px;
    color: #FFAB91;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vxr_64_brand_desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.vxr_64_nav h4,
.vxr_64_contacts h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
}

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

.vxr_64_nav ul li {
    margin-bottom: 12px;
}

.vxr_64_nav ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.vxr_64_nav ul li a:hover {
    color: #FFAB91;
}

.vxr_64_contact_link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.vxr_64_contact_link:hover {
    color: #FFAB91;
}

.vxr_64_contact_link i {
    width: 16px;
    color: #FFAB91;
}

.vxr_64_socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.vxr_64_socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vxr_64_socials a:hover {
    background: #FFAB91;
    color: #3E2723;
    transform: translateY(-3px);
}

.vxr_64_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.vxr_64_copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

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

.vxr_64_payment_icons i {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.5);
}

.vxr_64_payment_icons img {
    height: 20px;
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .vxr_64_top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .vxr_64_top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .vxr_64_logo {
        justify-content: center;
    }
    .vxr_64_contact_link {
        justify-content: center;
    }
    .vxr_64_socials {
        justify-content: center;
    }
    .vxr_64_bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}