.vxr_63_main_box {
    padding: 100px 0;
    background: #fff;
}

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

.vxr_63_header {
    text-align: center;
    margin-bottom: 50px;
}

.vxr_63_label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.1) 0%, rgba(62, 39, 35, 0.1) 100%);
    color: #5D4037;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vxr_63_title {
    font-size: 42px;
    font-weight: 800;
    color: #3E2723;
    margin: 0 0 15px;
}

.vxr_63_subtitle {
    font-size: 17px;
    color: #6D4C41;
    margin: 0;
}

.vxr_63_grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.vxr_63_accordion_item {
    background: #fff;
    border: 2px solid #F0F0F0;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vxr_63_accordion_item:hover {
    border-color: #E0E0E0;
}

.vxr_63_accordion_item.active {
    border-color: #5D4037;
    box-shadow: 0 10px 40px rgba(62, 39, 35, 0.1);
}

.vxr_63_accordion_header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vxr_63_accordion_header:hover {
    background: #FAFAFA;
}

.vxr_63_accordion_icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(93, 64, 55, 0.1) 0%, rgba(62, 39, 35, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5D4037;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vxr_63_accordion_item.active .vxr_63_accordion_icon {
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    color: #fff;
}

.vxr_63_accordion_header span {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #3E2723;
}

.vxr_63_arrow {
    color: #8D6E63;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.vxr_63_accordion_item.active .vxr_63_arrow {
    transform: rotate(180deg);
}

.vxr_63_accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.vxr_63_accordion_item.active .vxr_63_accordion_content {
    max-height: 800px;
}

.vxr_63_content_inner {
    padding: 0 25px 25px;
}

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

.vxr_63_list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #5D4037;
    line-height: 1.6;
}

.vxr_63_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #5D4037 0%, #3E2723 100%);
    border-radius: 50%;
}

.vxr_63_list li strong {
    color: #3E2723;
}

.vxr_63_note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #F5F5F5;
    border-radius: 12px;
    margin-top: 20px;
}

.vxr_63_note_warning {
    background: rgba(255, 171, 145, 0.1);
    border: 1px solid rgba(255, 171, 145, 0.3);
}

.vxr_63_note_icon {
    color: #5D4037;
    font-size: 20px;
    flex-shrink: 0;
}

.vxr_63_note_text {
    font-size: 14px;
    color: #5D4037;
    line-height: 1.6;
}

.vxr_63_note_text strong {
    display: block;
    margin-bottom: 10px;
    color: #3E2723;
}

.vxr_63_note_text ul {
    margin: 0;
    padding-left: 20px;
}

.vxr_63_note_text ul li {
    margin-bottom: 5px;
}

.vxr_63_note_text ul li::before {
    display: none;
}

.vxr_63_delivery_options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.vxr_63_delivery_card {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.vxr_63_delivery_card:hover {
    background: #F0F0F0;
    transform: translateY(-3px);
}

.vxr_63_delivery_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vxr_63_delivery_icon img {
    max-width: 100%;
    max-height: 100%;
}

.vxr_63_delivery_icon i {
    font-size: 28px;
    color: #5D4037;
}

.vxr_63_delivery_card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #3E2723;
    margin: 0 0 8px;
}

.vxr_63_delivery_card p {
    font-size: 13px;
    color: #8D6E63;
    margin: 0 0 10px;
    line-height: 1.5;
}

.vxr_63_delivery_price {
    display: inline-block;
    padding: 5px 12px;
    background: #E0E0E0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #5D4037;
}

.vxr_63_delivery_price.vxr_63_free {
    background: rgba(76, 175, 80, 0.15);
    color: #2E7D32;
}

.vxr_63_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5D4037;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: gap 0.3s ease;
}

.vxr_63_link:hover {
    gap: 12px;
}

.vxr_63_sidebar {
    position: sticky;
    top: 140px;
}

.vxr_63_contact_card {
    background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
}

.vxr_63_contact_card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px;
}

.vxr_63_contact_row {
    margin-bottom: 15px;
}

.vxr_63_contact_label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.vxr_63_contact_value {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.vxr_63_link_value {
    text-decoration: none;
    transition: color 0.3s ease;
}

.vxr_63_link_value:hover {
    color: #FFAB91;
}

.vxr_63_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.vxr_63_working_hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .vxr_63_grid {
        grid-template-columns: 1fr;
    }
    .vxr_63_sidebar {
        position: static;
    }
    .vxr_63_delivery_options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vxr_63_main_box {
        padding: 60px 0;
    }
    .vxr_63_title {
        font-size: 28px;
    }
    .vxr_63_accordion_header {
        padding: 15px 20px;
    }
    .vxr_63_content_inner {
        padding: 0 20px 20px;
    }
}