

/* Start:/local/templates/lr-service/css/modal.css?177919921321020*/
/* Модальные окна */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay[style*="display: none"] {
    pointer-events: none;
    visibility: hidden;
}

.modal {
    background: var(--color-background-service);
    max-width: 90vw;
    max-height: 98vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 500px;

    max-width: 90vw;
    max-height: 98vh;
    overflow-y: overlay;          /* ← ЭТО ГЛАВНОЕ */
    scrollbar-width: none;        /* Firefox — полностью скрыть */
    -ms-overflow-style: none;     /* IE */
}

.modal::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* На всякий пожарный */
.modal::-webkit-scrollbar-track,
.modal::-webkit-scrollbar-thumb,
.modal::-webkit-scrollbar-button,
.modal::-webkit-scrollbar-corner {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: var(--color-dark);
    transition: color 0.3s ease;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--color-text, #333);
}

.modal-content {
    padding: 61px 79px 80px 79px ;
    position: relative;
    overflow: hidden;
}

/* Формы в модальных окнах */
.modal-form {
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.modal-title {
    margin: 0 0 36px 0;
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.modal-subtitle {
    margin: -20px 0 40px 0;
    color: #000;
    font-size: 17px;
}

/* Поля формы */
.form-group {
    margin-bottom: 11px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--color-text, #333);
}

.form-input {
    width: 100%;
    padding: 32px 30px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    font-size: 17px;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--color-primary, #4CAF50);
}

.form-input.error {
    border-color: #ff4444;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 2px;
}

/* Кастомный квадратный чекбокс (подходит для разметки: <input id="x" type="checkbox"> <label for="x">...</label>) */
.form-checkbox {
    position: relative;
}

.form-checkbox input[type="checkbox"] {
    /* Скрываем нативный чекбокс, но оставляем доступность */
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox label {
    position: relative;
    padding-left: 60px; /* место под квадрат */
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.form-checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    background: var(--color-white, #fff);
    box-sizing: border-box;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.12s ease;
}
.form-checkbox.personal label {
    padding-left: 45px;
}
.form-checkbox.personal label::before {
    width: 24px;
    height: 25px;
    border: 1px solid rgba(0, 0, 0, 0.23);
}

.form-checkbox input[type="checkbox"]:focus + label::before {
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.12);
}

/* Галочка */
.form-checkbox label::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 45%;
    transform: translateY(-50%) rotate(45deg) scale(0.8);
    width: 8px;
    height: 13px;
    border: solid var(--color-white, #fff);
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.form-checkbox input[type="checkbox"]:checked + label::before {
    background: var(--color-primary, #4CAF50);
    border-color: var(--color-primary, #4CAF50);
}

.form-checkbox input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: translateY(-50%) rotate(45deg) scale(1);
}

/* disabled / error states */
.form-checkbox input[type="checkbox"]:disabled + label {
    cursor: not-allowed;
    opacity: 0.7;
}

.form-checkbox input[type="checkbox"]:disabled + label::before {
    background: #f5f5f5;
    border-color: #ddd;
}

.form-checkbox input[type="checkbox"].error + label::before,
.form-checkbox input[type="checkbox"] + label.error::before {
    border-color: #ff4444;
}

/* Поддержка старой разметки где чекбокс остаётся видимым: обеспечим аккуратный внешний вид */
.form-checkbox input[type="checkbox"].native-visible {
    position: static;
    opacity: 1;
    width: 18px;
    height: 18px;
    margin: 0 8px 0 0;
    vertical-align: middle;
}

.form-checkbox label {
    font-size: 12px;
    color: #000;
}

.form-checkbox a,
.form-checkbox a:hover,
.form-checkbox a:visited {
    color: #4CAF50 !important;
    text-decoration: underline;
}

/* Кнопки */
.form-button {
    width: 100%;
    padding: 29px 0;
    background: var(--color-primary, #4CAF50);
    color: var(--color-white, #fff);
    border: none;
    border-radius: var(--border-radius, 8px);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-button:hover {
    background: var(--color-primary-hover, #45a049);
}

.form-button:disabled {
    background: var(--color-text-lighter, #ccc);
    cursor: not-allowed;
}

/* Ошибки полей */
.field-error {
    color: #ff4444;
    font-size: 12px;
    margin-top: 5px;
}

/* ================= file upload styles ================= */
.file-upload-wrapper {
    width: 100%;
}

.file-input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-display {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.file-preview {
    width: 100%;
    min-height: 200px;
    border: 2px dashed rgba(0, 0, 0, 0.13);
    border-radius: var(--border-radius, 8px);
    background: var(--color-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s ease;
}

.file-preview:empty {
    display: none;
}

.file-preview img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--color-white, #fff);
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: var(--border-radius, 8px);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text, #333);
}

.file-upload-label:hover {
    background: var(--color-background, #f8f9fa);
    border-color: var(--color-primary, #4CAF50);
}

.file-upload-label .icon-upload {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.file-upload-text {
    user-select: none;
}

.file-input:focus + .file-upload-display .file-upload-label {
    outline: 2px solid var(--color-primary, #4CAF50);
    outline-offset: 2px;
}

.file-preview.has-image {
    display: flex;
    border-style: solid;
    border-color: var(--color-primary, #4CAF50);
}

/* Адаптивность для file upload */
@media (max-width: 576px) {
    .file-preview {
        min-height: 150px;
    }
    
    .file-preview img {
        max-height: 150px;
    }
    
    .file-upload-label {
        padding: 12px 16px;
        font-size: 14px;
    }
}
/* ================= end file upload styles ================= */

/* Ссылки в формах */
.form-link-right {
    text-align: right;
    margin-top: 8px;
}

.form-link-center {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.forgot-password-link,
.register-link,
.auth-link {
    color: #000;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px dotted #000;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.forgot-password-link:hover,
.register-link:hover,
.auth-link:hover {
    opacity: 0.7;
}

/* Уведомления */
.modal-notification {
    padding: 15px;
    border-radius: var(--border-radius-small, 4px);
    margin-bottom: 20px;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 390px;
    width: 100%;
    line-height: 1.4;
    box-sizing: border-box;
    hyphens: auto;
}

/* Ограничиваем ширину уведомлений в модальных формах */
.modal-form .modal-notification {
    max-width: 400px;
    width: auto;
}

/* Дополнительная защита от растягивания */
.modal-notification * {
    word-break: break-word;
    overflow-wrap: break-word;
}

.modal-notification--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modal-notification--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Лоадер */
.modal-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--color-border, #e5e5e5);
    border-top: 3px solid var(--color-primary, #4CAF50);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 576px) {
    .modal {
        max-width: 95vw;
        margin: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 20px;
    }
}

/* Модальное окно успеха */
.modal-success {
    max-width: 400px;
    width: 90vw;
}

.modal-success .modal-content {
    padding: 40px 30px;
    text-align: center;
}

.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(9, 136, 47, 0.1);
    animation: successPulse 0.6s ease-out;
}

.success-icon svg {
    animation: successCheck 0.8s ease-out 0.2s both;
}

.success-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark, #1E1E1E);
    line-height: 1.4;
    text-align: center;
    max-width: 300px;
}

/* Анимации для модального окна успеха */
@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successCheck {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Адаптивность для модального окна успеха */
@media (max-width: 576px) {
    .modal-success .modal-content {
        padding: 30px 20px;
    }
    
    .success-icon {
        width: 56px;
        height: 56px;
    }
    
    .success-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .success-title {
        font-size: 16px;
        max-width: 250px;
    }
}

/* ================= basket added modal styles ================= */
.modal-basket-added {
    max-width: 600px;
    width: 90vw;
}

.modal-basket-added .modal-content {
    padding: 50px 40px;
    text-align: center;
}

.basket-added-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.basket-added-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(9, 136, 47, 0.1);
    animation: successPulse 0.6s ease-out;
}

.basket-added-icon svg {
    animation: successCheck 0.8s ease-out 0.2s both;
}

.basket-added-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark, #1E1E1E);
    line-height: 1.4;
    text-align: center;
}

.basket-added-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    max-width: 450px;
}

.btn-continue-shopping,
.btn-go-to-basket {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
    white-space: nowrap;
}

.btn-continue-shopping {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-continue-shopping:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-go-to-basket {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-go-to-basket:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    box-shadow: 0 4px 12px rgba(9, 136, 47, 0.2);
}

/* Адаптивность для модального окна корзины */
@media (max-width: 576px) {
    .modal-basket-added {
        max-width: 95vw;
    }
    
    .modal-basket-added .modal-content {
        padding: 35px 25px;
    }
    
    .basket-added-icon {
        width: 56px;
        height: 56px;
    }
    
    .basket-added-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .basket-added-title {
        font-size: 18px;
    }
    
    .basket-added-actions {
        flex-direction: column;
        max-width: 100%;
    }
    
    .btn-continue-shopping,
    .btn-go-to-basket {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}
/* ================= end basket added modal styles ================= */

/* Специфичные стиили */
.modal-content:has(.auth-form) {
    padding: 61px 79px 20px 79px;
}
.modal:has(.car-add-form) {
    min-width: 600px;
}
.modal-content:has(.phone-verification-form) {
    padding: 61px 79px 20px 79px;
}
.modal:has(.phone-verification-form) {
    min-width: unset;
    max-width: 600px;
}
.modal-content:has(.forgot-password-form) {
    padding: 61px 79px 20px 79px;
}
.auth-form .form-checkbox {
    margin-bottom: 40px;
}
.modal-content:has(.register-form) {
    padding: 61px 79px 30px 79px;
}
.modal[data-modal-name="delivery-info"]  {
    max-width: 400px;
  
}
.modal[data-modal-name="delivery-info"] .modal-content {
    padding: 54px 50px 61px 50px;
}
/* Специфичные стиили */

/* ================= cancel order modal styles ================= */
.cancel-order-form .cancel-confirmation {
    text-align: center;
    margin-bottom: 30px;
}

.cancel-order-form .cancel-icon {
    margin-bottom: 20px;
}

.cancel-order-form .cancel-message {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.cancel-order-form .cancel-message strong {
    color: var(--color-dark);
    font-weight: 600;
}

.cancel-order-form .cancel-warning {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.4;
}

.cancel-order-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.cancel-order-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-text);
    font-size: 14px;
}

.cancel-order-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    min-height: 80px;
    transition: var(--transition);
}

.cancel-order-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(242, 77, 17, 0.1);
}

.cancel-order-form .modal-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cancel-order-form .btn {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cancel-order-form .btn-secondary {
    background: var(--color-background);
    border-color: var(--color-border);
    color: var(--color-text);
}

.cancel-order-form .btn-secondary:hover {
    background: var(--color-background-advantages);
    border-color: var(--color-text-light);
}

.cancel-order-form .btn-warning {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.cancel-order-form .btn-warning:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
}
/* ================= end cancel order modal styles ================= */

/* ================= file upload styles ================= */
.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.file-upload-display {
    position: relative;
    width: 100%;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 32px 30px;
    border: 2px dashed rgba(0, 0, 0, 0.13);
    background: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 17px;
    color: var(--color-text);
}

.file-upload-label:hover {
    border-color: var(--color-primary);
    background: rgba(9, 136, 47, 0.02);
}

.file-upload-label .icon-upload {
    color: var(--color-primary);
    flex-shrink: 0;
}

.file-upload-text {
    font-weight: 500;
}

.file-preview {
    position: relative;
    margin-bottom: 15px;
    display: none;
}

.file-preview.has-image {
    display: block;
}

.file-preview img {
    max-width: 100%;
    max-height: 300px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.file-preview-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    transition: background 0.3s ease;
}

.file-preview-remove:hover {
    background: var(--color-secondary);
}

.file-upload-label.has-file {
    border-style: solid;
    border-color: var(--color-primary);
    background: rgba(9, 136, 47, 0.05);
}

.file-upload-label.has-file .file-upload-text {
    color: var(--color-primary);
}

@media screen and (max-width: 1024px) {
   .modal-content {
        padding: 40px !important;
   }
   .modal-form .form-input,
   .modal-form .form-textarea {
        padding: 20px;
    }
    .form-checkbox label {
        font-size: 11px;
        line-height: 1.25;
    }
    .form-button {
        padding: 20px;
    }
    .modal-title {
        font-size: 27px;
        margin: 0 0 20px 0;
    }
}


@media screen and (max-width: 768px) {
    .modal {
        min-width: 400px !important;
    }
}
@media screen and (max-width: 600px) {
    .modal {
        min-width: 300px !important;
    }
}
@media screen and (max-width: 400px) {
    .form-checkbox label {
        font-size: 10px;
        line-height: 1.25;
    }
}

/* ================= end file upload styles ================= */

/* End */


/* Start:/local/templates/lr-service/css/contacts.css?177866733117110*/
/* потом нужно будет слить в один */
.w-40p{
    max-width: 40%;
}
.w-50p{
    max-width: 50%;
}
.mb90{
    margin-bottom: 90px;
}
.mb50 {
    margin-bottom: 50px;
}
.grey-container-block{
    border-radius: 5px;
    background-color: rgba(249,249,249,.89);
    padding: 30px 60px;
}

.contact-page .banner-slider{
    margin-bottom: 90px;
    overflow: visible;
}
.contact-page .banner-content{
    bottom: -102px;
    padding-bottom: 130px;
}

.contact-page .contacts-row .contacts-col{
    flex: 1;
}

.contact-page .contacts-row.contacts-row--notes {
    margin-bottom: 90px;
}

.contact-page .contacts-row--notes .contact-item__icon{
    width: 40px;
    height: 40px;
}
.contact-page .contacts-row--notes .contact-item__icon svg{
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}
.contact-page .contacts-row--notes .contact-item__label{
    font-size: 21px;
}

.contact-page .contacts-row.contacts-row--requisites{
    margin-bottom: 0;
}
.contact-page .contacts-row.contacts-row--requisites .contact-item:not(:last-child){
    margin-bottom: 25px;
}
.contact-page .contacts-row.contacts-row--requisites .contact-item__label{
    margin-bottom: 0;
}

.contact-page .contacts-row.contacts-row--requisites .contacts-col:last-child{
    padding-left: 120px;
}

.service-detail-top{
    display: flex;
}
.service-detail-top > div{
    flex: 1;
    padding: 35px 55px;
}
.service-detail-top-info{
    background-color: var(--color-p);
    color: #fff;
}
.service-detail-top-info h2{
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 60px;
}
.service-detail-top-info-text{
    font-size: 17px;
}
.service-detail-top-form{
    background-color: rgba(249,249,249,.89);
}
.service-detail-top-form .form-title{
    font-weight: 700;
    font-size: 30px;
    color: var(--color-dark);
    margin-bottom: 36px;
}
.service-detail-top-form  .banner-form input{
    padding: 30px 35px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    font-weight: 400;
}


.service-detail-text{
    font-size: 17px;
}
.service-detail-text img{
    margin-right: 10px;
    margin-bottom: 10px;
}
.service-detail-text ul{padding: 0; list-style-position: inside; clear: both;}
.service-detail-text ul li{
    margin-bottom: 5px
}
.service-detail-text ul li::marker{
    color: var(--color-primary);
}
.service-detail-text table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}
.service-detail-text table tr td{
    border: 1px solid var(--color-p);
    padding: 5px;
}

.service-detail-more .section-title{
    margin-bottom: 48px;
}
.service-detail-more-list  {
    column-count: 3;
    column-gap: 0;
    width: 100%;
    -moz-column-count: 3;
    -webkit-column-count: 3;
}

.service-detail-more-item {
    display: block;
    padding: 20px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #d8d8d8;
    transition: background-color 0.2s ease;
    break-inside: avoid; 
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
}
.service-detail-more-item .num {
    font-weight: 800;
    font-size: 18px;
    line-height: 156%;
    color: #d8d8d8;
    display: inline-block;
    width: 34px;
    transition: .3s ease;
}
.service-detail-more-item:hover .num{
    color: var(--color-primary);
}
.service-detail-more-item .name {
    font-size: 17px;
}

.service-detail-search .search-form{
    max-width: calc(75% - 28px);
    margin-bottom: 46px;
}
.service-detail-search .search-form input[type="text"]{
    border-width: 1px;
}
.service-detail-search-result .catalog-section{
    padding: 0;
}
.service-detail-search-result .catalog-items-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.service-detail .akcii-section .section-header{
    margin-top: 0;
}
.service-detail .news-section{
    background: none;
    padding: 50px 0 100px;
}

.service-detail-attention{
    margin-top: 50px;
    padding-bottom: 50px;
}
.service-detail .where-find {
    padding-top: 90px;
}
.attention-text{
    padding: 0 70px 30px;
}
.attention-text h2{
    font-weight: 700;
    font-size: 21px;
    color:var(--color-p);
    margin-bottom: 33px;
}
.attention-text p{
    font-size: 17px;
    color:var(--color-p);
}
.attention-text-mark{
    background: #fff6f6;
    display: flex;
    gap: 23px;
    padding: 30px 40px;
}
.attention-text-mark-text {
    font-size: 17px;
    color:var(--color-p);
}

.service-detail-bottom-form{
    background: #484f55;
    padding-bottom: 100px;

}
.service-detail-bottom-form-image {
    width: 100%;
}
.service-detail-bottom-form .form-title{
    font-weight: 700;
    font-size: 42px;
    color: #fff;
    margin: 70px 0 23px;
}
.service-detail-bottom-form .form-subtitle{
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    margin-bottom: 55px;
}

.service-detail-bottom-form .banner-form input{
    padding: 30px 40px;
    font-weight: 400;
}
.service-detail-bottom-form .banner-form .form-row{
    align-items: inherit;
    margin-top: 0;
    position: relative;
}
.service-detail-bottom-form .banner-form .form-row .field-error{
    position: absolute;
    right: 0; 
    top: 100%;
    margin-top: 10px;
}
.service-detail-bottom-form .banner-form button{
    height: auto;
}
.service-detail-bottom-form .banner-form .note, 
.service-detail-bottom-form .banner-form .note a{
    color: #fff;
    max-width: 500px;
}

/* .service-section .service-grid .service-card{
    flex: 1 0 calc(33.33% - 30px * 2 / 3);
    max-width: calc(33.33% - 30px * 2 / 3);
} */


.actsii-detail-top{
    margin-bottom: 80px;
}
.actsii-detail-top-image{
    margin-bottom: 54px;
    position: relative;
    overflow: hidden;
    padding-top: 35%;
}
.actsii-detail-top-image img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.actsii-detail-top-info{
    font-size: 17px;
    color: var(--color-p);
}
.actsii-detail-top-info > p:first-child {
    margin-top: 0;
}
.actsii-products .section-title{
    margin-bottom: 30px;
}

.container-with-menu{
    display: flex; 
    flex-wrap: wrap;
    gap: 30px
}
.container-aside{
    flex-shrink: 0;
    width: 348px
}
.container-menu{
    background-color: var(--color-background-service);
}
.container-main{
    flex: 1
    
}
.container-main .row {
    height: auto;
}
.container-main .container{
    padding: 0;
}

.catalog-top-menu{
    margin-bottom: 40px;
}
.catalog-top-menu .main-menu{
    gap: 8px
}
.catalog-top-menu .menu-link{
    background-color: var(--color-p);
    color: #fff;
}

.container:has(.catalog-top-menu) .bx-breadcrumb{
    margin: 25px 0;
}

.tags-container{
    margin-bottom: 30px;
}

.tags-container .main-menu{
    gap: 8px
}
.tags-container .menu-link{
    background-color: var(--color-background-service);
}

.to-up{
    position: fixed; bottom: 200px;right: 40px;
    z-index: 100;
    background-image: url(/local/templates/lr-service/css/../images/arrow-down-ico.svg)!important;
    background-size: auto!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    transform: rotate(180deg);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
}

.to-up.visible{
    opacity: 1;
    visibility: visible;
}

.no-sidebar .container-aside{
    display: none;
}
.container-aside {
	position: static !important;
}
#content .product-swiper-multiblock-wrapper .product-prev, 
#content .product-swiper-multiblock-wrapper .product-next {
    top: auto;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
#content .product-swiper-multiblock-wrapper .product-prev{
	margin-left: -30px;
	}
#content .product-swiper-multiblock-wrapper  .product-next {
    margin-left: 30px;
}
#content .product-swiper-multiblock-wrapper {
    padding-bottom: 50px;
}
#content .product-slider-wrapper.product-swiper-multiblock-wrapper  .swiper {
    max-width: 100% !important;
}
/* Компенсация смещения, если блок находится рядом с сайдбаром (на десктопе) */
@media (max-width: 600px) {
    #content .catalog-promo__content {
        padding: 30px !important;
    }
}
@media (max-width: 440px) {
	#content .akcii-slider-wrapper, #content .video-slider-wrapper  {
		padding-bottom: 60px;
	}
	
	#content .akcii-prev,
	#content .akcii-next {
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	#content .video-gallery-prev,
	#content .video-gallery-next {
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
    #content .product-prev, 
    #content .product-next {
		top: auto;
		bottom: 60px;
		left: 50%;
		transform: translateX(-50%);
	}
    #content .news-next, 
    #content .news-prev {
		top: auto;
		bottom: -35px;
		left: 50%;
		transform: translateX(-50%);
	}
    #content .akcii-footer {
        margin-top: 20px
    }
    #content .product-slider-footer, {
        padding-top: 60px;
    }
	
	#content .akcii-prev, #content .product-prev, #content .news-prev,#content .video-gallery-prev {
		margin-left: -30px;
	}
	#content .akcii-next, #content .product-next, #content .news-next ,#content .video-gallery-next {
		margin-left: 30px;
	}
    #content .akcii-slider-wrapper, #content .product-slider-wrapper .swiper, #content .video-slider-wrapper {
        max-width: calc(100% - 30px);
    }
    #content .news-product-section .product-slider-wrapper .swiper {
        max-width: 100%;
    }
    #content .news-product-section .product-prev, #content  .news-product-section .product-next {
        bottom: -45px;
    }
    #content .news-slider-wrapper { 
        margin: 0 auto;
        max-width: calc(100% - 30px);
    }
    #content .news-slider-section {
        padding: 0px 0 45px 0;
    }
}
/* .parts-accordion [data-acc-title="1"] .parts-accordion__arrow{
  margin-left: auto;
  width: 9px !important;
  height: 9px !important;
  border-right: 2px solid var(--color-white) !important;  
  border-bottom: 2px solid var(--color-white) !important; 
  transform: rotate(-135deg);     
  transition: transform .2s ease;
} */

/* ================= order status canceled ================= */
.order-status__text--canceled {
  color: #d9534f;
  font-weight: 600;
}

.order-status__cancel-reason {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.order-status__cancel-reason span {
  color: #d9534f;
  font-weight: 500;
}
.service-about__advantages {
    padding: 0 var(--container-padding);
}
/* ================= end order status canceled ================= */

/* ================= Service Detail Responsive Styles ================= */
@media (max-width: 1500px) {
    .service-detail-search-result .catalog-items-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 1280px) {
    .news-section .all-news-button-wrapper .btn-primary {
        width: 200px;
        padding: 20px;
    }
}
@media (max-width: 1150px) {
     .service-detail-search-result .catalog-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start !important;
    }
}
@media (max-width: 1024px) {
    .service-detail-top > div {
        padding: 60px 40px;
    }
    
    .service-detail-more-list {
        column-count: 2;
        -moz-column-count: 2;
        -webkit-column-count: 2;
    }
    .akcii-header {
        margin-bottom: 30px !important;
    }
    
    .grey-container-block {
        padding: 25px 40px;
    }
    
    .service-detail-search .search-form {
        max-width: 100%;
    }
    
    
    .attention-text {
        padding: 0 40px 30px;
    }
    
    .attention-text-mark {
        padding: 25px 30px;
    }
}

@media (max-width: 900px) {
    .service-slider-wrapper .service-slide .service-card {
        min-height: 300px !important;
    }
    .service-slider-wrapper {
        min-height: 300px !important;
    }
}
@media (max-width: 768px) {
    .mb90 {
        margin-bottom: 60px !important;
    }
    .mb50 {
        margin-bottom: 35px;
    }
    
    .w-40p,
    .w-50p {
        max-width: 100%;
    }
     .service-detail-search-result .catalog-items-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .service-detail-attention {
        margin-top: 35px!important;
        padding-bottom: 0!important;
    }
    .service-detail .where-find {
        padding-top: 35px;
    }
    
    .service-detail-top {
        flex-direction: column;
    }
    
    .service-detail-top > div {
        padding: 40px 30px;
    }
    
    .service-detail-top-info h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .service-detail-top-info-text {
        font-size: 15px;
    }
    
    .service-detail-top-form .form-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .service-detail-top-form .banner-form input {
        padding: 20px 25px;
    }
    
    .grey-container-block {
        padding: 20px 25px;
    }
    
    .service-detail-text {
        font-size: 15px;
    }
    
    .service-detail-text img {
        float: none;
        display: block;
        margin: 0 auto 15px;
        max-width: 100%;
    }
    
    .service-detail-more-list {
        column-count: 1;
        -moz-column-count: 1;
        -webkit-column-count: 1;
    }
    
    .service-detail-more .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    
    .service-detail-attention {
        margin-top: 100px;
        padding-bottom: 60px;
    }
    
    .attention-text {
        padding: 0 0 25px;
    }
    
    .attention-text h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .attention-text p,
    .attention-text-mark-text {
        font-size: 15px;
    }
    
    .attention-text-mark {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        text-align: center;
    }
    
    .service-detail-bottom-form {
        padding-bottom: 60px;
    }
    
    .service-detail-bottom-form .form-title {
        font-size: 28px;
        margin: 50px 0 20px;
    }
    
    .service-detail-bottom-form .form-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
    
    .service-detail-bottom-form .banner-form input {
        padding: 20px 25px;
    }
    
    .service-detail-bottom-form .banner-form button {
        padding: 20px 30px;
    }
    
    .contact-page .contacts-row.contacts-row--requisites .contacts-col:last-child {
        padding-left: 0;
        margin-top: 30px;
    }

    .actsii-detail-top-image {
        padding-top: 55%;
    }
}

@media (max-width: 480px) {
    .mb90 {
        margin-bottom: 40px !important;
    }
    
    .service-detail-top > div {
        padding: 30px 20px;
    }
    
    .service-detail-top-info h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .service-detail-top-info-text {
        font-size: 14px;
    }
    
    .service-detail-top-form .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .service-detail-top-form .banner-form input {
        padding: 18px 20px;
    }
    
    .service-detail-top-form .banner-form button {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .grey-container-block {
        padding: 20px;
    }
    
    .service-detail-text {
        font-size: 14px;
    }
    
    .service-detail-text table {
        font-size: 13px;
    }
    
    .service-detail-text table tr td {
        padding: 8px 5px;
    }
    
    .service-detail-more .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .service-detail-more-item {
        padding: 15px 0;
    }
    
    .service-detail-more-item .num {
        font-size: 16px;
        width: 30px;
    }
    
    .service-detail-more-item .name {
        font-size: 15px;
    }

    
    .service-detail-attention {
        margin-top: 60px;
        padding-bottom: 40px;
    }
    
    .attention-text h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .attention-text p,
    .attention-text-mark-text {
        font-size: 14px;
    }
    
    .attention-text-mark {
        padding: 20px;
    }
    
    .attention-text-mark-image img {
        max-width: 80px;
    }
    
    .service-detail-bottom-form {
        padding-bottom: 40px;
    }
    
    .service-detail-bottom-form-image {
        display: none;
    }
    
    .service-detail-bottom-form .form-title {
        font-size: 22px;
        margin: 30px 0 15px;
    }
    
    .service-detail-bottom-form .form-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .service-detail-bottom-form .banner-form input {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .service-detail-bottom-form .banner-form button {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .service-detail-bottom-form .banner-form .note {
        font-size: 10px;
    }
    
    .to-up {
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
/* ================= End Service Detail Responsive Styles ================= */
/* End */


/* Start:/local/templates/lr-service/css/form-validation.css?17574248894422*/
/**
 * Стили для валидации форм
 * Form validation styles
 */

/* Состояния полей */
.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

/* .form-input.valid,
.form-textarea.valid {
    border-color: #27ae60;
    background-color: #f8fcf8;
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.1);
} */

/* Сообщения об ошибках */
.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    display: block;
    animation: fadeInError 0.3s ease-in-out;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    line-height: 1.4;
}

/* Специальный отступ для ошибок чекбокса */
.field-error.checkbox-error {
    margin-bottom: 15px;
    margin-top: 0;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Сообщения формы */
.form-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.4;
    animation: fadeInMessage 0.3s ease-in-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message--info {
    background-color: #cce7ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Состояние загрузки формы */
.form--loading {
    opacity: 0.7;
    pointer-events: none;
}

.form--loading .form-button {
    position: relative;
}

.form--loading .form-button::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Дополнительные стили для улучшения UX */
.form-group {
    position: relative;
}

/* Контейнер ошибок поля */
.field-errors {
    max-width: 100%;
    overflow: hidden;
}

.field-errors .field-error {
    display: block;
    margin-bottom: 2px;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.field-errors .field-error:last-child {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #333;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(10, 184, 54, 0.25);
}

/* Анимации для плавных переходов */
.form-input,
.form-textarea {
    transition: border-color 0.15s ease-in-out, 
                box-shadow 0.15s ease-in-out, 
                background-color 0.15s ease-in-out;
}

/* Стили для чекбокса согласия */
.form-checkbox.error + .form-checkbox-label {
    color: #e74c3c;
}

.form-checkbox.valid + .form-checkbox-label {
    color: #27ae60;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form-message {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .field-error {
        font-size: 11px;
    }
}

/* Дополнительные утилиты */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Стили для honeypot (скрытое поле от спама) */
input[name="honeypot"] {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    visibility: hidden !important;
}

/* End */


/* Start:/local/templates/lr-service/lib/swiper-bundle.min.css?175716794418454*/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/lr-service/lib/fancybox.css?176251159532341*/
:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-shadow: none;--f-button-transition: all .15s ease;--f-button-transform: none;--f-button-outline-width: 1px;--f-button-outline-color: rgba(0, 0, 0, .7);--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-opacity: 1;--f-button-svg-disabled-opacity: .5;--f-button-svg-transition: opacity .15s ease;--f-button-svg-transform: none}.f-button{width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);transform:var(--f-button-transform);transition:var(--f-button-transition);backdrop-filter:var(--f-button-backdrop-filter);display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;pointer-events:all;cursor:pointer;overflow:hidden}@media (hover: hover){.f-button:hover:not([aria-disabled]){color:var(--f-button-hover-color, var(--f-button-color));background-color:var(--f-button-hover-bg, var(--f-button-bg))}}.f-button:active:not([aria-disabled]){color:var(--f-button-active-color, var(--f-button-hover-color, var(--f-button-color)));background-color:var(--f-button-active-bg, var(--f-button-hover-bg, var(--f-button-bg)))}.f-button:focus{outline:none}.f-button:focus-visible{outline:var(--f-button-outline-width) solid var(--f-button-outline-color);outline-offset:var(--f-button-outline-offset)}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);transform:var(--f-button-svg-transform);fill:var(--f-button-svg-fill);filter:var(--f-button-svg-filter);opacity:var(--f-button-svg-opacity, 1);transition:var(--f-button-svg-transition);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;pointer-events:none}.f-button[aria-disabled]{cursor:default}.f-button[aria-disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}[data-panzoom-action=toggleFS] g:first-child{display:flex}[data-panzoom-action=toggleFS] g:last-child{display:none}.in-fullscreen [data-panzoom-action=toggleFS] g:first-child{display:none}.in-fullscreen [data-panzoom-action=toggleFS] g:last-child{display:flex}[data-autoplay-action=toggle] svg g:first-child{display:flex}[data-autoplay-action=toggle] svg g:last-child{display:none}.has-autoplay [data-autoplay-action=toggle] svg g:first-child{display:none}.has-autoplay [data-autoplay-action=toggle] svg g:last-child{display:flex}:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:first-child{display:none}:fullscreen [data-fullscreen-action=toggle] svg [data-fullscreen-action=toggle] svg g:last-child{display:flex}:root{--f-spinner-color-1: rgba(0, 0, 0, .1);--f-spinner-color-2: rgba(17, 24, 28, .8);--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-border-radius: 50%;--f-spinner-border-width: 4px}.f-spinner{position:absolute;top:50%;left:50%;margin:0;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height);translate:-50% -50%;border:var(--f-spinner-border-width) solid var(--f-spinner-color-1);border-top-color:var(--f-spinner-color-2);border-radius:var(--f-spinner-border-radius);animation:f-spinner .75s linear infinite,f-fadeIn .2s ease .2s both}@keyframes f-spinner{to{rotate:360deg}}.f-panzoom,.f-zoomable{position:relative;overflow:hidden;display:flex;align-items:center;flex-direction:column}.f-panzoom:before,.f-panzoom:after,.f-zoomable:before,.f-zoomable:after{display:block;content:""}.f-panzoom:not(.has-controls):before,.f-zoomable:not(.has-controls):before{margin-bottom:auto}.f-panzoom:after,.f-zoomable:after{margin-top:auto}.f-panzoom.in-fullscreen,.f-zoomable.in-fullscreen{position:fixed;top:0;left:0;margin:0!important;width:100%!important;height:100%!important;max-width:none!important;max-height:none!important;aspect-ratio:unset!important;z-index:9999}.f-panzoom__wrapper{position:relative;min-width:0;min-height:0;max-width:100%;max-height:100%}.f-panzoom__wrapper.will-zoom-out{cursor:zoom-out}.f-panzoom__wrapper.can-drag{cursor:move;cursor:grab}.f-panzoom__wrapper.will-zoom-in{cursor:zoom-in}.f-panzoom__wrapper.is-dragging{cursor:move;cursor:grabbing}.f-panzoom__wrapper.has-error{display:none}.f-panzoom__content{display:block;min-width:0;min-height:0;max-width:100%;max-height:100%}.f-panzoom__content.is-lazyloading,.f-panzoom__content.has-lazyerror{visibility:hidden}img.f-panzoom__content{width:auto;height:auto;vertical-align:top;object-fit:contain;transition:none;user-select:none}.f-panzoom__wrapper>.f-panzoom__content{visibility:hidden}.f-panzoom__viewport{display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:40}.f-panzoom__viewport>.f-panzoom__content{width:100%;height:100%;object-fit:fill}picture.f-panzoom__content img{vertical-align:top;width:100%;height:auto;max-height:100%;object-fit:contain;transition:none;user-select:none}.f-panzoom__protected{position:absolute;inset:0;z-index:1;user-select:none}html.with-panzoom-in-fullscreen{overflow:hidden}.f-fadeIn{animation:var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, .2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-fadeOut{to{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, .2s) ease both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, .2s) * .2) ease calc(var(--f-transition-duration, .2s) * .8) both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}to{opacity:1}}@keyframes f-crossfadeOut{to{opacity:0}}.is-horizontal .f-slideIn.from-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideInNextX}.is-horizontal .f-slideIn.from-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideInPrevX}.is-horizontal .f-slideOut.to-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideOutNextX}.is-horizontal .f-slideOut.to-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideOutPrevX}@keyframes f-slideInPrevX{0%{transform:translate(calc(100% + var(--f-carousel-gap, 0)))}to{transform:translateZ(0)}}@keyframes f-slideInNextX{0%{transform:translate(calc(-100% - var(--f-carousel-gap, 0)))}to{transform:translateZ(0)}}@keyframes f-slideOutNextX{to{transform:translate(calc(-100% - var(--f-carousel-gap, 0)))}}@keyframes f-slideOutPrevX{to{transform:translate(calc(100% + var(--f-carousel-gap, 0)))}}.is-vertical .f-slideIn.from-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideInNextY}.is-vertical .f-slideIn.from-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideInPrevY}.is-vertical .f-slideOut.to-next{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideOutNextY}.is-vertical .f-slideOut.to-prev{animation:var(--f-transition-duration, .85s) cubic-bezier(.16,1,.3,1) f-slideOutPrevY}@keyframes f-slideInPrevY{0%{transform:translateY(calc(100% + var(--f-carousel-gap, 0)))}to{transform:translateZ(0)}}@keyframes f-slideInNextY{0%{transform:translateY(calc(-100% - var(--f-carousel-gap, 0)))}to{transform:translateZ(0)}}@keyframes f-slideOutNextY{to{transform:translateY(calc(-100% - var(--f-carousel-gap, 0)))}}@keyframes f-slideOutPrevY{to{transform:translateY(calc(100% + var(--f-carousel-gap, 0)))}}.f-zoomInUp{animation:var(--f-transition-duration, .3s) ease both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, .3s) ease both f-zoomOutDown}@keyframes f-zoomInUp{0%{transform:scale(var(--f-zoomInUp-scale, .975)) translate3d(var(--f-zoomInUp-x, 0),var(--f-zoomInUp-y, 16px),0);opacity:var(--f-zoomInUp-opacity, 0)}to{transform:scale(1) translateZ(0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(var(--f-zoomOutDown-scale, .975)) translate3d(var(--f-zoomOutDown-x, 0),var(--f-zoomOutDown-y, 16px),0);opacity:0}}.f-throwOutUp{animation:var(--f-throwOutUp-duration, .2s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throwOutDown-duration, .2s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0,calc(var(--f-throwOutUp-y, 150px) * -1),0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0,var(--f-throwOutDown-y, 150px),0);opacity:0}}.has-iframe .f-html,.has-pdf .f-html,.has-gmap .f-html{width:100%;height:100%;min-height:1px;overflow:visible}.has-pdf .f-html,.has-gmap .f-html{padding:0}.f-html{position:relative;box-sizing:border-box;margin:var(--f-html-margin, 0);padding:var(--f-html-padding, 2rem);color:var(--f-html-color, currentColor);background:var(--f-html-bg)}.f-html.is-error{text-align:center}.f-iframe{display:block;margin:0;border:0;height:100%;width:100%}.f-caption{align-self:center;flex-shrink:0;margin:var(--f-caption-margin);padding:var(--f-caption-padding, 16px 8px);max-width:100%;max-height:calc(80vh - 100px);overflow:auto;overflow-wrap:anywhere;line-height:var(--f-caption-line-height);color:var(--f-caption-color);background:var(--f-caption-bg);font:var(--f-caption-font)}.has-html5video .f-html,.has-youtube .f-html,.has-vimeo .f-html{padding:0;width:100%;height:100%;min-height:1px;overflow:visible;max-width:var(--f-video-width, 960px);max-height:var(--f-video-height, 540px);aspect-ratio:var(--f-video-aspect-ratio);background:var(--f-video-bg, rgba(0, 0, 0, .9))}.f-html5video{border:0;display:block;height:100%;width:100%;background:transparent}.f-button.is-arrow{--f-button-width: var(--f-arrow-width, 46px);--f-button-height: var(--f-arrow-height, 46px);--f-button-svg-width: var(--f-arrow-svg-width, 24px);--f-button-svg-height: var(--f-arrow-svg-height, 24px);--f-button-svg-stroke-width: var(--f-arrow-svg-stroke-width, 1.75);--f-button-border-radius: var(--f-arrow-border-radius, unset);--f-button-bg: var(--f-arrow-bg, transparent);--f-button-hover-bg: var(--f-arrow-hover-bg, var(--f-arrow-bg));--f-button-active-bg: var(--f-arrow-active-bg, var(--f-arrow-hover-bg));--f-button-shadow: var(--f-arrow-shadow);--f-button-color: var(--f-arrow-color);--f-button-hover-color: var(--f-arrow-hover-color, var(--f-arrow-color));--f-button-active-color: var( --f-arrow-active-color, var(--f-arrow-hover-color) );overflow:visible}.f-button.is-arrow.is-prev,.f-button.is-arrow.is-next{position:absolute;transform:translate(0);z-index:20}.is-horizontal .f-button.is-arrow.is-prev,.is-horizontal .f-button.is-arrow.is-next{inset:50% auto auto;transform:translateY(-50%)}.is-horizontal.is-ltr .f-button.is-arrow.is-prev{left:var(--f-arrow-pos, 0)}.is-horizontal.is-ltr .f-button.is-arrow.is-next{right:var(--f-arrow-pos, 0)}.is-horizontal.is-rtl .f-button.is-arrow.is-prev{right:var(--f-arrow-pos, 0);transform:translateY(-50%) rotateY(180deg)}.is-horizontal.is-rtl .f-button.is-arrow.is-next{left:var(--f-arrow-pos, 0);transform:translateY(-50%) rotateY(180deg)}.is-vertical.is-ltr .f-button.is-arrow.is-prev,.is-vertical.is-rtl .f-button.is-arrow.is-prev{top:var(--f-arrow-pos, 0);right:auto;bottom:auto;left:50%;transform:translate(-50%)}.is-vertical.is-ltr .f-button.is-arrow.is-next,.is-vertical.is-rtl .f-button.is-arrow.is-next{top:auto;right:auto;bottom:var(--f-arrow-pos, 0);left:50%;transform:translate(-50%)}.is-vertical .f-button.is-arrow.is-prev svg,.is-vertical .f-button.is-arrow.is-next svg{transform:rotate(90deg)}.f-carousel__toolbar{display:grid;grid-template-columns:1fr auto 1fr;margin:var(--f-toolbar-margin, 0);padding:var(--f-toolbar-padding, 8px);line-height:var(--f-toolbar-line-height);background:var(--f-toolbar-bg, none);box-shadow:var(--f-toolbar-shadow, none);backdrop-filter:var(--f-toolbar-backdrop-filter);position:relative;z-index:20;color:var(--f-toolbar-color, currentColor);font-size:var(--f-toolbar-font-size, 17px);font-weight:var(--f-toolbar-font-weight, inherit);font-family:var(--f-toolbar-font, -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif);text-shadow:var(--f-toolbar-text-shadow);text-align:center;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;white-space:nowrap;pointer-events:none}.f-carousel__toolbar.is-absolute{position:absolute;top:0;left:0;right:0}.f-carousel__toolbar .f-button:focus-visible{position:relative;z-index:1}.f-carousel__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start;gap:var(--f-toolbar-gap, 0)}.f-carousel__toolbar__column.is-left{display:flex;justify-self:flex-start;justify-content:flex-start}.f-carousel__toolbar__column.is-middle{display:flex;justify-content:center}.f-carousel__toolbar__column.is-right{display:flex;justify-self:flex-end;justify-content:flex-end;flex-flow:nowrap}.f-carousel__toolbar__column{pointer-events:none}.f-carousel__toolbar__column>*{pointer-events:all}.f-counter{position:relative;display:flex;flex-direction:row;cursor:default;user-select:none;margin:var(--f-counter-margin, 0);padding:var(--f-counter-padding, 4px);line-height:var(--f-counter-line-height);background:var(--f-counter-bg);border-radius:var(--f-counter-border-radius)}.f-counter span{padding:0 var(--f-counter-gap, 4px)}:root{--f-thumbs-gap: 8px;--f-thumbs-margin: 0;--f-thumbs-padding-x: 8px;--f-thumbs-padding-y: 8px;--f-thumbs-bg: transparent;--f-thumbs-transition: max-height .3s ease, max-width .3s ease, padding .3s ease;--f-thumbs-z-index: 1;--f-thumbs-viewport-padding-x: 0px;--f-thumbs-viewport-padding-y: 0px;--f-thumb-width: 94px;--f-thumb-height: 76px;--f-thumb-clip-width: 46px;--f-thumb-extra-gap: 16px;--f-thumb-opacity: 1;--f-thumb-transition: opacity .3s ease, transform .15s ease;--f-thumb-border: none;--f-thumb-border-radius: 4px;--f-thumb-shadow: none;--f-thumb-bg: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .05));--f-thumb-focus-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;--f-thumb-selected-shadow: inset 0 0 0 .8px #222, inset 0 0 0 2.25px #fff;--f-thumb-border-transition: all .1s ease;--f-thumb-img-width: 100%;--f-thumb-img-height: 100%;--f-thumb-img-fit: cover;--f-thumb-img-position: 50% 20%}.f-thumbs{--f-carousel-slide-width: var(--f-thumb-width);--f-carousel-slide-height: var(--f-thumb-height);--f-carousel-gap: var(--f-thumbs-gap);position:relative;box-sizing:border-box;flex-shrink:0;margin:var(--f-thumbs-margin);padding:var(--f-thumbs-padding-y) var(--f-thumbs-padding-x);overflow:hidden;background:var(--f-thumbs-bg);-webkit-tap-highlight-color:transparent;user-select:none;transition:var(--f-thumbs-transition);z-index:var(--f-thumbs-z-index)}.f-thumbs.is-horizontal{max-height:calc(var(--f-carousel-slide-height) + var(--f-thumbs-padding-y) * 2)}.f-thumbs.is-horizontal.is-hidden{max-height:0;--f-thumbs-padding-y: 0}.f-thumbs.is-vertical{max-width:calc(var(--f-carousel-slide-width) + var(--f-thumbs-padding-x) * 2)}.f-thumbs.is-vertical.is-hidden{max-width:0;--f-thumbs-padding-x: 0}.f-thumbs.is-scrollable.is-hidden{max-height:0;--f-thumbs-padding-y: 0}.f-thumbs.is-ltr{direction:ltr}.f-thumbs.is-rtl{direction:rtl}.f-thumbs img{display:block;width:var(--f-thumb-img-width);height:var(--f-thumb-img-height);object-fit:var(--f-thumb-img-fit);object-position:var(--f-thumb-img-position);pointer-events:none;border-radius:inherit;color:transparent}.f-thumbs img[data-lazy-src]{visibility:hidden}.f-thumbs img.has-lazyerror{display:none}.f-thumbs__viewport{box-sizing:border-box;height:100%;padding:var(--f-thumbs-viewport-padding-y) var(--f-thumbs-viewport-padding-x);overflow:visible;display:grid}.f-thumbs__slide{position:relative;box-sizing:border-box;grid-area:1/1;width:var(--f-carousel-slide-width);height:var(--f-carousel-slide-height);margin:0;padding:0;display:flex;align-items:center;flex-direction:column;cursor:pointer;overflow:visible}.f-thumbs__slide:hover button{opacity:var(--f-thumb-hover-opacity, 1);transform:var(--f-thumb-hover-transform, none)}.f-thumbs__slide:hover button:after{border:var(--f-thumb-hover-border, none);box-shadow:var(--f-thumb-hover-shadow, var(--f-thumb-shadow))}.f-thumbs__slide button{all:unset;display:block;margin:auto;padding:0;position:relative;overflow:visible;width:100%;height:100%;outline:none;transition:var(--f-thumb-transition);border-radius:var(--f-thumb-border-radius);opacity:var(--f-thumb-opacity);transform:var(--f-thumb-transform);background:var(--f-thumb-bg)}.f-thumbs__slide button:after{content:"";position:absolute;inset:0;z-index:1;transition:var(--f-thumb-border-transition);border-radius:inherit;border:var(--f-thumb-border);box-shadow:var(--f-thumb-shadow)}.f-thumbs__slide button:focus-within{opacity:var(--f-thumb-focus-opacity, 1);transform:var(--f-thumb-focus-transform, none)}.f-thumbs__slide button:focus-within:after{border:var(--f-thumb-focus-border, none);box-shadow:var(--f-thumb-focus-shadow, var(--f-thumb-shadow))}.f-thumbs__slide:active{opacity:var(--f-thumb-active-opacity, 1);transform:var(--f-thumb-active-transform, none)}.f-thumbs__slide:active:after{border:var(--f-thumb-active-border, none);box-shadow:var(--f-thumb-active-shadow, var(--f-thumb-shadow))}.f-thumbs__slide.is-selected{z-index:2}.f-thumbs__slide.is-selected button{opacity:var(--f-thumb-selected-opacity, 1);transform:var(--f-thumb-selected-transform, none)}.f-thumbs__slide.is-selected button:after{border:var(--f-thumb-selected-border, none);box-shadow:var(--f-thumb-selected-shadow, var(--f-thumb-shadow))}.f-thumbs.is-modern{--f-carousel-slide-width: calc( var(--f-thumb-clip-width) + var(--f-thumbs-gap) );--f-carousel-slide-height: var(--f-thumb-height);--f-carousel-gap: 0;--width-diff: calc((var(--f-thumb-width) - var(--f-thumb-clip-width)))}.f-thumbs.is-modern .f-thumbs__viewport{width:calc(100% + var(--f-carousel-slide-width) * 2 + var(--f-thumbs-padding-x));margin-inline:calc((var(--f-carousel-slide-width) + var(--f-thumbs-padding-x)) * -1)}.f-thumbs.is-modern .f-thumbs__slide{--clip-shift: calc((var(--width-diff) * .5) * var(--progress));--clip-path: inset( 0 var(--clip-shift) round var(--f-thumb-border-radius, 0) );padding:0;overflow:visible;left:var(--shift, 0);will-change:left;transition:left var(--f-transition-duration) var(--f-transition-easing)}.f-thumbs.is-modern .f-thumbs__slide button{display:block;margin-inline:50%;width:var(--f-thumb-width);clip-path:var(--clip-path);border:none;box-shadow:none;transition:clip-path var(--f-transition-duration) var(--f-transition-easing),opacity var(--f-thumb-transition-duration, .2s) var(--f-thumb-transition-easing, ease)}.f-thumbs.is-modern .f-thumbs__slide button:after{display:none}.f-thumbs.is-modern .f-thumbs__slide:focus:not(:focus-visible){outline:none}.f-thumbs.is-modern .f-thumbs__slide:focus-within:not(.is-selected) button:before{content:"";position:absolute;z-index:1;top:0;left:var(--clip-shift);bottom:0;right:var(--clip-shift);transition:border var(--f-transition-duration) var(--f-transition-easing),box-shadow var(--f-transition-duration) var(--f-transition-easing);border-radius:inherit;border:var(--f-thumb-focus-border, none);box-shadow:var(--f-thumb-focus-shadow, none)}.f-thumbs.is-modern{--f-transition-duration: .25s;--f-transition-easing: ease-out}.f-thumbs.is-modern.is-syncing{--f-transition-duration: 0s}.f-thumbs.is-scrollable .f-thumbs__viewport{display:grid;grid-template-columns:repeat(auto-fill,minmax(var(--f-thumb-width),1fr));grid-auto-rows:var(--f-thumb-height);gap:var(--f-thumbs-gap);overflow:auto;overscroll-behavior:contain;user-select:none}.f-thumbs.is-scrollable .f-thumbs__viewport .f-thumbs__slide{grid-area:auto;display:block;position:relative;max-width:100%;width:var(--f-thumb-width);height:var(--f-thumb-height);cursor:pointer;outline:none}:root{--f-progressbar-height: 3px;--f-progressbar-color: var(--f-carousel-theme-color, #575ad6);--f-progressbar-opacity: 1;--f-progressbar-z-index: 30}.f-progressbar{position:absolute;top:0;left:0;right:0;z-index:var(--f-progressbar-z-index);height:var(--f-progressbar-height);transform:scaleX(0);transform-origin:0;opacity:var(--f-progressbar-opacity);background:var(--f-progressbar-color);user-select:none;pointer-events:none;animation-name:f-progressbar;animation-play-state:running;animation-timing-function:linear}.f-progressbar:empty{display:block}button>.f-progressbar{--f-progressbar-height: 100%;--f-progressbar-opacity: .2}@keyframes f-progressbar{0%{transform:scaleX(0)}to{transform:scaleX(1)}}[data-fullscreen-action=toggle] svg g:first-child{display:flex}[data-fullscreen-action=toggle] svg g:last-child{display:none}:fullscreen [data-fullscreen-action=toggle] svg g:first-child{display:none}:fullscreen [data-fullscreen-action=toggle] svg g:last-child{display:flex}.in-fullscreen-mode>.f-carousel{flex:1;min-width:0!important;min-height:0!important}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--f-body-margin, 0px) + var(--f-scrollbar-compensate, 0px));overflow:hidden!important;overscroll-behavior-y:none}.fancybox__dialog{position:fixed;inset:0;z-index:1050;width:100%;height:100vh;max-height:unset;max-width:unset;padding:0;margin:0;border:0;overflow:hidden;background:transparent;touch-action:none;overscroll-behavior:contain}.fancybox__dialog:focus{outline:none}.fancybox__dialog::backdrop{opacity:0}@supports (height: 100dvh){.fancybox__dialog{height:100dvh}}.fancybox__dialog *:empty{display:block}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-backdrop-bg: rgba(24, 24, 27, .95);--f-toolbar-margin: 0;--f-toolbar-padding: 8px;--f-toolbar-gap: 0;--f-toolbar-color: #ddd;--f-toolbar-font-size: 16px;--f-toolbar-font-weight: 500;--f-toolbar-font: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;--f-toolbar-line-height: var(--f-button-height);--f-toolbar-text-shadow: 1px 1px 1px rgba(0, 0, 0, .75);--f-toolbar-shadow: none;--f-toolbar-bg: none;--f-counter-margin: 0;--f-counter-padding: 0px 10px;--f-counter-gap: 4px;--f-counter-line-height: var(--f-button-height);--f-carousel-gap: 17px;--f-carousel-slide-width: 100%;--f-carousel-slide-height: 100%;--f-carousel-slide-padding: 0;--f-carousel-slide-bg: unset;--f-html-color: #222;--f-html-bg: #fff;--f-error-color: #fff;--f-error-bg: #333;--f-caption-margin: 0;--f-caption-padding: 16px 8px;--f-caption-color: var(--fancybox-color, #dbdbdb);--f-caption-bg: transparent;--f-caption-font: inherit;--f-caption-line-height: 1.375;--f-spinner-color-1: rgba(255, 255, 255, .2);--f-spinner-color-2: rgba(255, 255, 255, .8);--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-border-radius: 50%;--f-spinner-border-width: 4px;--f-progressbar-color: rgba(255, 255, 255);--f-button-width: 46px;--f-button-height: 46px;--f-button-color: #ddd;--f-button-hover-color: #fff;--f-button-outline-width: 1px;--f-button-outline-color: rgba(255, 255, 255, .75);--f-button-outline-offset: 0px;--f-button-bg: rgba(54, 54, 54, .75);--f-button-border: 0;--f-button-border-radius: 0;--f-button-shadow: none;--f-button-transition: all .2s ease;--f-button-transform: none;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.75;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)), drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: .5;--f-arrow-pos: 32px;--f-arrow-width: 50px;--f-arrow-height: 50px;--f-arrow-svg-width: 24px;--f-arrow-svg-height: 24px;--f-arrow-svg-stroke-width: 2.5;--f-arrow-border-radius: 50%;--f-arrow-bg: rgba(54, 54, 54, .65);--f-arrow-color: #ddd;--f-arrow-hover-color: #fff;--f-close-button-width: 30px;--f-close-button-height: 30px;--f-close-button-svg-width: 24px;--f-close-button-svg-height: 24px;--f-close-button-svg-stroke-width: 1.75;--f-close-border-radius: 4px;--f-close-button-color: #fff;--f-close-button-hover-color: #fff;--f-close-button-bg: transparent;--f-close-button-hover-bg: transparent;--f-close-button-active-bg: transparent;--f-thumbs-margin: 0px;--f-thumbs-padding-x: 8px;--f-thumbs-padding-y: 8px;--f-thumbs-bg: none;--f-thumb-transition: all .2s ease;--f-thumb-width: 94px;--f-thumb-height: 76px;--f-thumb-opacity: 1;--f-thumb-border: none;--f-thumb-shadow: none;--f-thumb-transform: none;--f-thumb-focus-opacity: 1;--f-thumb-focus-border: none;--f-thumb-focus-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);--f-thumb-focus-transform: none;--f-thumb-hover-opacity: 1;--f-thumb-hover-border: none;--f-thumb-hover-transform: none;--f-thumb-active-opacity: var(--f-thumb-hover-opacity);--f-thumb-active-border: var(--f-thumb-hover-border);--f-thumb-active-transform: var(--f-thumb-hover-transform);--f-thumb-selected-opacity: 1;--f-thumb-selected-border: none;--f-thumb-selected-shadow: inset 0 0 0 2px #fff;--f-thumb-selected-transform: none;--f-scrollbar-width: 7px;--f-scrollbar-track-bg: #444;--f-scrollbar-track-border-radius: 10px;--f-scrollbar-track-shadow: inset 0 0 6px rgba(0, 0, 0, .2);--f-scrollbar-thumb-bg: #ddd;--f-scrollbar-thumb-border-radius: 10px}.fancybox__container[theme=light]{--fancybox-color: #222;--fancybox-backdrop-bg: rgba(255, 255, 255, .97);--f-toolbar-color: var(--fancybox-color, #222);--f-toolbar-text-shadow: none;--f-toolbar-font-weight: 400;--f-html-color: var(--fancybox-color, #222);--f-html-bg: #fff;--f-error-color: #555;--f-error-bg: #fff;--f-video-bg: #fff;--f-caption-color: #333;--f-spinner-color-1: rgba(0, 0, 0, .2);--f-spinner-color-2: rgba(0, 0, 0, .8);--f-spinner-border-width: 3.5px;--f-progressbar-color: rgba(111, 111, 116);--f-button-color: #333;--f-button-hover-color: #000;--f-button-outline-color: rgba(0, 0, 0, .85);--f-button-bg: rgba(255, 255, 255, .85);--f-button-svg-stroke-width: 1.3;--f-button-svg-filter: none;--f-arrow-bg: rgba(255, 255, 255, .85);--f-arrow-color: #333;--f-arrow-hover-color: #000;--f-arrow-svg-stroke-width: 1.3;--f-close-button-color: #555;--f-close-button-hover-color: #000;--f-thumb-bg: linear-gradient(#ebeff2, #e2e8f0);--f-thumb-focus-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #888;--f-thumb-selected-shadow: 0 0 0 1.8px #fff, 0px 0px 0px 2.25px #000;--f-scrollbar-track-bg: #ddd;--f-scrollbar-thumb-bg: #444}.fancybox__container{position:absolute;inset:0;overflow:hidden;display:flex;flex-direction:column}.fancybox__container:focus{outline:none}.fancybox__container.has-vertical-thumbs{flex-direction:row-reverse}.fancybox__container.has-vertical-thumbs:not(.is-closing) .fancybox__viewport{overflow-x:clip;overflow-y:visible}.fancybox__container>*:not(.fancybox__carousel),.fancybox__container .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),.fancybox__container .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html,.f-panzoom__wrapper,.f-spinner){opacity:var(--f-drag-opacity, 1)}.fancybox__container:not(.is-ready,.is-hiding){visibility:hidden}.fancybox__container.is-revealing>*:not(.fancybox__carousel),.fancybox__container.is-revealing .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-revealing .fancybox__carousel>.fancybox__viewport>.fancybox__slide:not(.is-selected),.fancybox__container.is-revealing .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html,.f-panzoom__wrapper,.f-spinner){animation:var(--f-interface-enter-duration, .35s) ease none f-fadeIn}.fancybox__container.is-hiding>*:not(.fancybox__carousel),.fancybox__container.is-hiding .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-hiding .fancybox__carousel>.fancybox__viewport>.fancybox__slide.is-selected>*:not(.f-html,.f-panzoom__wrapper){animation:var(--f-interface-exit-duration, .35s) ease forwards f-fadeOut}.fancybox__container.is-hiding .fancybox__carousel .fancybox__slide:not(.is-selected){opacity:0}.fancybox__container.is-hiding{pointer-events:none}.fancybox__container.is-idle .f-carousel__toolbar{pointer-events:none;opacity:0}.fancybox__container.is-idle .f-button.is-arrow{opacity:0}.fancybox__container.is-idle.is-ready .f-carousel__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__container.is-idle.is-ready .f-button.is-arrow{animation:.15s ease-out both f-fadeOut}.fancybox__backdrop{position:fixed;inset:0;z-index:-1;background:var(--fancybox-backdrop-bg)}.fancybox__carousel{flex:1;display:flex;flex-direction:column;min-height:0;min-width:0;position:relative;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__carousel.is-vertical{--f-carousel-slide-height: 100%}.fancybox__carousel.is-ltr{direction:ltr}.fancybox__carousel.is-rtl{direction:rtl}.fancybox__carousel>.f-button.is-arrow:before{position:absolute;content:"";inset:-30px;z-index:1}.fancybox__viewport{display:grid;flex:1;min-height:0;min-width:0;position:relative;overflow:visible;transform:translate3d(0,var(--f-drag-offset, 0),0)}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__viewport [data-selectable],.fancybox__viewport [contenteditable]{cursor:auto}.fancybox__slide{box-sizing:border-box;position:relative;grid-area:1/1;display:flex;align-items:center;flex-direction:column;width:var(--f-carousel-slide-width);height:var(--f-carousel-slide-height);min-width:0;min-height:0;max-width:100%;margin:0;padding:var(--f-carousel-slide-padding);background:var(--f-carousel-slide-bg);backface-visibility:hidden;transform:translateZ(0);will-change:transform}.fancybox__slide:before,.fancybox__slide:after{display:block;content:""}.fancybox__slide:before{margin-bottom:auto}.fancybox__slide:after{margin-top:auto}.fancybox__slide.is-selected{z-index:1}.fancybox__slide.f-zoomable{overflow:visible}.fancybox__slide.has-error{--f-html-color: var(--f-error-color, --f-html-color);--f-html-bg: var(--f-error-bg, --f-html-bg)}.fancybox__slide.has-html{overflow:auto;padding:8px}.fancybox__slide.has-close-btn{padding-top:34px}.fancybox__slide.has-controls:before{margin:0}.fancybox__slide .f-spinner{cursor:pointer}.fancybox__container.is-closing .f-caption,.fancybox__slide.is-loading .f-caption{visibility:hidden}.fancybox__container.is-closing .fancybox__carousel{overflow:visible}.f-button.is-close-button{--f-button-width: var(--f-close-button-width);--f-button-height: var(--f-close-button-height);--f-button-border-radius: var(--f-close-border-radius);--f-button-color: var(--f-close-button-color);--f-button-hover-color: var(--f-close-button-hover-color);--f-button-bg: var(--f-close-button-bg);--f-button-hover-bg: var(--f-close-button-hover-bg);--f-button-active-bg: var(--f-close-button-active-bg);--f-button-svg-width: var(--f-close-button-svg-width);--f-button-svg-height: var(--f-close-button-svg-height);--f-button-svg-stroke-width: var(--f-close-button-svg-stroke-width);position:absolute;top:calc((var(--f-button-height) + 2px) * -1);right:0;z-index:40}.fancybox__thumbs{flex:0 1 100%}.fancybox__thumbs.is-scrollable{--f-thumbs-cols: 1;--f-thumbs-gap: 8px;--f-thumbs-transition: none;--f-thumbs-padding-x: 4px;--f-thumbs-padding-y: 8px;--f-thumbs-viewport-padding-x: 4px;--f-thumbs-viewport-padding-y: 0px;max-width:calc(var(--f-thumb-width) * var(--f-thumbs-cols) + var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1) + var(--f-thumbs-padding-x) * 2 + var(--f-thumbs-viewport-padding-x) * 2)}.fancybox__thumbs.is-scrollable ::-webkit-scrollbar{width:var(--f-scrollbar-width)}.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-track{background:var(--f-scrollbar-track-bg);border-radius:var(--f-scrollbar-track-border-radius);box-shadow:var(--f-scrollbar-track-shadow)}.fancybox__thumbs.is-scrollable ::-webkit-scrollbar-thumb{background:var(--f-scrollbar-thumb-bg);border-radius:var(--f-scrollbar-thumb-border-radius)}.fancybox__thumbs.is-scrollable.is-hidden{max-width:0;--f-thumbs-padding-x: 0;max-height:unset;--f-thumbs-padding-y: unset}.fancybox__thumbs.is-scrollable .f-thumbs__viewport{overflow-x:hidden!important;grid-template-columns:repeat(auto-fill,calc((100% - var(--f-thumbs-gap) * (var(--f-thumbs-cols) - 1)) / var(--f-thumbs-cols)))!important}

/* End */


/* Start:/local/templates/lr-service/css/tmpdan.css?177885120924280*/
@media (min-width: 1500px) and (max-width: 1920px) {
    .actsii-products .product-swiper-multiblock {
        overflow: visible;
    }

    .actsii-products .product-swiper-multiblock .swiper-slide {
        width: 420px !important;
        min-width: 420px;
        max-width: 420px;
        flex: 0 0 420px;
        flex-shrink: 0;
    }


    .actsii-products .product-swiper-multiblock .catalog-product-card,
    .actsii-products .product-swiper-multiblock .catalog-product-card:hover {
        transform: none !important;
    }
}



@media (max-width: 600px) {
    .subsection-product.subsection-product {
        align-items: center;
    }
}

.lr-service-price-wrapper .lr-services-prices-top .banner-content p.lead,
.repair-pages-wrapper .lr-services-prices-top .banner-content p.lead,
.lr-services-prices-top .banner-content .banner-utp-list,
.lr-services-prices-top .banner-content > ul {
    margin-bottom: 48px;
}

.repair-pages-wrapper .lr-services-prices-top .banner-content .banner-form .form-checkbox {
    display: flex;
}

.main-page + .faq-section.faq-section {
    padding-bottom: 32px;
}

.faq-section + .reviews-section.reviews-section {
    padding-top: 32px;
}

.reviews-section .reviews-title-row .section-title.section-title {
    margin-bottom: 0;
}

.mobile-menu-header.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    min-height: 56px;
    height: 56px;
    padding: 8px 16px;
}

.mobile-menu-logo.mobile-menu-logo {
    order: 1;
    display: inline-flex;
    align-items: center;
}

.mobile-menu-logo.mobile-menu-logo img {
    display: block;
    max-height: 32px;
    width: auto;
}

.mobile-menu-close.mobile-menu-close {
    order: 2;
}

.mobile-menu-nav.custom li.open > a .catalog-menu__arrow.nav {
    transform: rotate(180deg);
}

.mobile-menu-nav.custom .submenu-mobile a.current {
    color: var(--color-primary);
}

.burger-menu.burger-menu {
    width: 24px;
    height: 18px;
}

.burger-menu.burger-menu span {
    height: 2px;
}


@media (max-width: 900px) {
    .repair-pages-wrapper .lr-services-prices-top .banner-content {
        top: 40px;
        bottom: unset;
        transform: none;
    }
}


@media (max-width: 768px) {
    .akcii-footer.akcii-footer {
        margin-top: 25px;
    }
}

@media (max-width: 1024px) {
    .main-page + .faq-section.faq-section {
        padding-bottom: 28px;
    }

    .faq-section + .reviews-section.reviews-section {
        padding-top: 28px;
    }

    .reviews-title-row.reviews-title-row {
        margin-bottom: 40px;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex {
        display: grid;
        grid-template-columns: max-content 181px 52px;
        column-gap: 12px;
        row-gap: 12px;
        align-items: center;
        justify-content: flex-start;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .price-col.price-col {
        grid-column: 1;
        grid-row: 1;
        padding-top: 0;
        white-space: nowrap;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .actions-col.actions-col {
        display: contents;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .actions-top.actions-top {
        display: contents;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .catalog-product-card-buy.catalog-product-card-buy {
        grid-column: 2;
        grid-row: 1;
        width: 181px;
        min-width: 181px;
        height: 52px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .catalog-product-card-cart.catalog-product-card-cart {
        grid-column: 3;
        grid-row: 1;
        width: 52px;
        min-width: 52px;
        height: 52px;
        padding: 0;
        gap: 0;
        justify-content: center;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .catalog-product-card-cart-text.catalog-product-card-cart-text {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .actions-bottom.actions-bottom {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .burger-menu.burger-menu {
        width: 20px;
        height: 16px;
    }

    .section-description.section-description {
        font-size: 15px;
    }

    .adv-item__text.adv-item__text {
        font-size: 14px;
    }


    .h1-title.h1-title {
        font-size: 20px;
    }

    .repair-pages-desc.repair-pages-desc {
        font-size: 14px;
    }

    .lr-service-price-wrapper h2 {
        font-size: 18px !important;
    }

    .why-trust-us .step-text.step-text {
        line-height: 1.4;
    }

    .service-reception__steps-lr-info.why-trust-us .service-reception__steps {
        padding-top: 0;
    }

    .main-page + .faq-section.faq-section {
        padding-top: 24px;
        padding-bottom: 24px;
        margin-top: 0;
    }

    .faq-section + .reviews-section.reviews-section {
        padding-top: 24px;
        margin-top: 0;
    }

    .reviews-title-row.reviews-title-row {
        margin-bottom: 28px;
        margin-top: 0;
        align-items: center;
    }

    .reviews-section .reviews-title-row .custom-select-trigger.custom-select-trigger {
        margin-bottom: 0;
        min-height: 40px;
    }

    .symptoms-advantages.symptoms-advantages {
        font-size: 13px;
    }

    .lr-service-price-wrapper .lr-services-prices-top .banner-content p.lead,
    .repair-pages-wrapper .lr-services-prices-top .banner-content p.lead,
    .lr-services-prices-top .banner-content .banner-utp-list,
    .lr-services-prices-top .banner-content > ul {
        margin-bottom: 25px;
    }

    .lr-services-prices-top .banner-content ul {
        padding-inline-start: 18px;
    }

    .lr-services-prices.lr-services-prices .service-grid .service-card.service-card {
        height: 506px;
        min-height: 506px;
    }

    .lr-services-prices.lr-services-prices .service-card-link.service-card-link {
        height: 100%;
    }

    .catalog-product-card .catalog-product-card-image.catalog-product-card-image {
        min-height: 215px;
        max-height: 215px;
        margin-bottom: 40px;
    }

    .catalog-product-card .catalog-product-card-image-link.catalog-product-card-image-link {
        height: 215px;
    }

    .catalog-product-card .catalog-product-card-img.catalog-product-card-img {
        max-height: 215px;
    }

    .catalog-product-card .catalog-product-card-bagde.catalog-product-card-bagde.availability.availability {
        top: 235px;
    }
}

@media (max-width: 480px) {
    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex {
        grid-template-columns: max-content minmax(130px, 1fr) 48px;
        column-gap: 8px;
        justify-content: flex-start;
        width: 100%;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .detail-price.detail-price {
        font-size: 24px;
        white-space: nowrap;
    }

    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .catalog-product-card-buy.catalog-product-card-buy {
        width: auto;
        min-width: 130px;
        height: 48px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
        white-space: nowrap;
    }


    .product-item-detail.product-item-detail .detail-price-flex.detail-price-flex .catalog-product-card-cart.catalog-product-card-cart {
        width: 48px;
        min-width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .container-aside:has(.lr-filter-root) {
        margin-bottom: 0;
    }

    .site-wrapper .container-aside:has(.lr-filter-root) .catalog-menu-toggle,
    .with-menu-mobile .container-aside:has(.lr-filter-root) .catalog-menu-toggle {
        display: flex !important;
        width: max-content;
        height: 44px;
        min-width: 0;
        padding: 0;
        margin: 0 0 20px auto;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        border-radius: 0;
        background: transparent;
        color: var(--color-p, #333);
        box-shadow: none;
        font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        position: relative;
    }

    .container-aside:has(.lr-filter-root) .catalog-menu-toggle svg {
        display: none;
    }

    .container-aside:has(.lr-filter-root) .catalog-menu-toggle span {
        display: block;
        font-size: 0;
    }

    .container-aside:has(.lr-filter-root) .catalog-menu-toggle span::before {
        content: "Фильтр";
        font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

    .container-aside:has(.lr-filter-root) .catalog-menu-toggle::before {
        content: "";
        order: 2;
        width: 44px;
        height: 44px;
        display: block;
        background: var(--color-primary, #09882f);
    }


    
    .container-aside:has(.lr-filter-root) .catalog-menu-toggle::after {
        content: "";
        position: absolute;
        top: 11px;
        right: 11px;
        width: 22px;
        height: 22px;
        display: block;
        background: #fff;
        -webkit-mask: url("/local/templates/lr-service/images/filter.svg") center / contain no-repeat;
        mask: url("/local/templates/lr-service/images/filter.svg") center / contain no-repeat;
    }

    .container-aside:has(.lr-filter-root) .container-menu {
        display: none;
    }

    .container-aside:has(.lr-filter-root) .lr-filter-root {
        display: none;
        width: 100%;
        margin-top: 0;
    }

    .container-aside:has(.lr-filter-root) .lr-filter-root.tmpdan-filter-open {
        display: block;
        margin-top: 10px;
    }

    .container-aside:has(.lr-filter-root) .lr-filter-root .bx-filter-parameters-box.bx-active {
        max-width: none;
        padding: 28px 40px 0;
    }
}


@media (max-width: 900px) {


}

@media (max-width: 1024px) {
    #content:has(.repair-pages-wrapper) :is(
        .section-title,
        .service-reception__title,
        .video-gallery-title,
        .owner-guarantee-title,
        .lr-service-cost-calculator__title,
        .lr-services-prices-consultation__title,
        .consultation-title,
        .small-title.banner,
        .service-transparency__title,
        .lounge-area__title,
        .experts-experience-25__title,
        .original-and-analogues__title
    ),
    #content:has(.lr-service-price-wrapper) :is(
        .section-title,
        .service-reception__title,
        .video-gallery-title,
        .owner-guarantee-title,
        .lr-service-cost-calculator__title,
        .lr-services-prices-consultation__title,
        .consultation-title,
        .small-title.banner,
        .service-transparency__title,
        .lounge-area__title,
        .experts-experience-25__title,
        .original-and-analogues__title
    ),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .section-title,
        .service-reception__title,
        .video-gallery-title,
        .owner-guarantee-title,
        .lr-services-prices-consultation__title,
        .consultation-title,
        .service-transparency__title,
        .original-and-analogues__title
    ) {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .lr-services-prices-consultation__subtitle,
        .lr-services-prices-consultation__desc,
        .consultation-description,
        .prof-equipment__subtitle,
        .original-and-analogues__desc,
        .lr-service-cost-calculator__subtitle,
        .choose-us__subtitle,
        .form-subtitle
    ),
    #content:has(.lr-service-price-wrapper) :is(
        .lr-services-prices-consultation__subtitle,
        .lr-services-prices-consultation__desc,
        .consultation-description,
        .prof-equipment__subtitle,
        .original-and-analogues__desc,
        .lr-service-cost-calculator__subtitle,
        .form-subtitle
    ),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .lr-services-prices-consultation__subtitle,
        .lr-services-prices-consultation__desc,
        .consultation-description,
        .original-and-analogues__desc,
        .form-subtitle
    ) {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper) {
        padding-bottom: 72px !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):not(:has(.swiper-initialized)),
    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):not(:has(.akcii-prev, .video-gallery-prev)),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):not(:has(.swiper-initialized)),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):not(:has(.akcii-prev, .video-gallery-prev)),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):not(:has(.swiper-initialized)),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):not(:has(.akcii-prev, .video-gallery-prev)) {
        padding-bottom: 15px !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):has(.swiper-button-lock),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):has(.swiper-button-lock),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-slider-wrapper, .video-slider-wrapper):has(.swiper-button-lock) {
        padding-bottom: 15px !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-prev, .akcii-next, .video-gallery-prev, .video-gallery-next),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-prev, .akcii-next, .video-gallery-prev, .video-gallery-next),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-prev, .akcii-next, .video-gallery-prev, .video-gallery-next) {
        top: auto !important;
        bottom: 0 !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-prev, .video-gallery-prev),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-prev, .video-gallery-prev),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-prev, .video-gallery-prev) {
        margin-left: -32px !important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-next, .video-gallery-next),
    #content:has(.lr-service-price-wrapper) :is(
        .akcii-section.lr-services-prices,
        .video-gallery-section.lr-services-prices
    ) :is(.akcii-next, .video-gallery-next),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .akcii-section.lr-services-prices.fix-divider-section,
        .video-gallery-section.lr-services-prices.fix-divider-section
    ) :is(.akcii-next, .video-gallery-next) {
        margin-left: 32px !important;
    }

    #content:has(.repair-pages-wrapper) .akcii-section.lr-services-prices.fix-divider-section .akcii-footer,
    #content:has(.lr-service-price-wrapper) .akcii-section.lr-services-prices .akcii-footer,
    #content:has(.banner-slider.lr-services-prices-top) .akcii-section.lr-services-prices.fix-divider-section .akcii-footer {
        margin-top: 24px !important;
    }
}

@media (max-width: 440px) {
    #content .akcii-section.akcii-section.tmpdan-akcii-has-arrows .akcii-slider-wrapper.akcii-slider-wrapper {
        padding-bottom: 72px !important;
    }

    #content .akcii-section.akcii-section.tmpdan-akcii-has-arrows .akcii-slider-wrapper.akcii-slider-wrapper:not(:has(.swiper-initialized)),
    #content .akcii-section.akcii-section.tmpdan-akcii-has-arrows .akcii-slider-wrapper.akcii-slider-wrapper:not(:has(.akcii-prev, .akcii-next)),
    #content .akcii-section.akcii-section.tmpdan-akcii-has-arrows .akcii-slider-wrapper.akcii-slider-wrapper:has(.akcii-prev.swiper-button-lock),
    #content .akcii-section.akcii-section.tmpdan-akcii-has-arrows .akcii-slider-wrapper.akcii-slider-wrapper:has(.akcii-next.swiper-button-lock) {
        padding-bottom: 15px !important;
    }
}

@media (max-width: 500px) {
    .section-title.section-title {
        margin-bottom: 30px;
    }

    .section-header-wrapper.section-header-wrapper {
        margin-bottom: 30px;
    }

    .service-reception__title.service-reception__title {
        margin-bottom: 30px;
    }

    .fix-divider-section.fix-divider-section.fix-divider-section {
        margin-bottom: 30px;
    }

    .akcii-section.lr-services-prices {
        margin-bottom: 30px!important;
    }

    .repair-pages-wrapper .choose-us .section-title {
        margin-bottom: 30px!important;
    }

    .manufacters-slider {
       padding-top: 30px!important;
    }

    .section-header-wrapper .section-title {
        margin-bottom: 30px!important;
    }

    .manufacters-slider p {
        margin: 0;
    }

    .fix-divider-section.fix-divider-section.fix-divider-section.fix-divider-section.fix-divider-section.fix-divider-section {
        padding: 30px 0 0 !important;
    }

    .repair-pages-wrapper .main-page .news-section .section-title {
        margin-bottom: 30px!important;
    }

    #content:has(.repair-pages-wrapper) :is(
        .section-title,
        .service-reception__title,
        .video-gallery-title,
        .owner-guarantee-title,
        .lr-service-cost-calculator__title,
        .lr-services-prices-consultation__title,
        .consultation-title,
        .small-title.banner,
        .service-transparency__title,
        .lounge-area__title,
        .experts-experience-25__title,
        .original-and-analogues__title,
        .lr-services-prices-consultation__subtitle,
        .lr-services-prices-consultation__desc,
        .consultation-description,
        .prof-equipment__subtitle,
        .original-and-analogues__desc,
        .lr-service-cost-calculator__subtitle,
        .choose-us__subtitle,
        .form-subtitle
    ),
    #content:has(.lr-service-price-wrapper) :is(
        .section-title,
        .service-reception__title,
        .video-gallery-title,
        .owner-guarantee-title,
        .lr-service-cost-calculator__title,
        .lr-services-prices-consultation__title,
        .consultation-title,
        .small-title.banner,
        .service-transparency__title,
        .lounge-area__title,
        .experts-experience-25__title,
        .original-and-analogues__title,
        .lr-services-prices-consultation__subtitle,
        .lr-services-prices-consultation__desc,
        .consultation-description,
        .prof-equipment__subtitle,
        .original-and-analogues__desc,
        .lr-service-cost-calculator__subtitle,
        .form-subtitle
    ),
    #content:has(.banner-slider.lr-services-prices-top) :is(
        .section-title,
        .service-reception__title,
        .video-gallery-title,
        .owner-guarantee-title,
        .lr-services-prices-consultation__title,
        .consultation-title,
        .service-transparency__title,
        .original-and-analogues__title,
        .lr-services-prices-consultation__subtitle,
        .lr-services-prices-consultation__desc,
        .consultation-description,
        .original-and-analogues__desc,
        .form-subtitle
    ) {
        margin-top: 0 !important;
        margin-bottom: 24px !important;
    }

}

@media (max-width: 440px) {
    #content .repair-pages-wrapper .main-page .news-slider-wrapper {
        max-width: 100%;
    }

    #content .repair-pages-wrapper .main-page .news-slider-wrapper .swiper {
        max-width: 100%;
    }

    .repair-pages-wrapper .main-page .news-slider-section {
        padding-bottom: 20px;
    }

    .repair-pages-wrapper .main-page .news-prev,
    .repair-pages-wrapper .main-page .news-next {
        bottom: -20px;
    }
}

@media (max-width: 430px) {
    .save-money-section.tehnicheskoe .save-money-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .save-money-section.tehnicheskoe .save-money-card__title {
        max-width: 100%;
    }
}

/* End */


/* Start:/local/templates/lr-service/css/tmpliht.css?17787610801565*/
@media (max-width: 430px) {
    .product-slider-footer {
        padding-top: 55px !important;
    }
}

.lr-filter-root.bx-filter.bx-blue .bx-filter-parameters-box-container.buttons .btn {
    min-height: 48px;
    padding: 14px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.lr-filter-root.bx-filter.bx-blue .bx-filter-parameters-box-container.buttons .btn-themes {
    background: var(--color-primary);
    color: var(--color-white);
}

.lr-filter-root.bx-filter.bx-blue .bx-filter-parameters-box-container.buttons .btn-themes:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.lr-filter-root.bx-filter.bx-blue .bx-filter-parameters-box-container.buttons .btn-link {
    background: var(--color-primary);
    color: var(--color-white);
}

.lr-filter-root.bx-filter.bx-blue .bx-filter-parameters-box-container.buttons .btn-link:hover {
    background: var(--color-dark);
    color: var(--color-white);
}
@media (max-width: 900px) {
    .subsection-product {
       flex-direction: column;
    }
}
@media (max-width: 768px) {
    .symptoms-cards {
        grid-template-columns: 1fr 1fr !important;
    }
}
@media (max-width: 600px) {
    .symptoms-cards {
        grid-template-columns: 1fr !important;
    }
}
/* End */


/* Start:/local/templates/lr-service/css/detail-content.css?17800636265712*/
/* Styles for custom markup placed inside element detail content. */

.detail-content {
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1.6;
}

.detail-content p {
    margin: 0 0 24px;
}

.detail-content > p > img,
.detail-content img {
    display: block;
    margin-left: 0;
    margin-right: auto;
}

.detail-content-model {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    margin: 24px 0;
}

.detail-content-model img {
    display: block;
    max-width: 100%;
    height: auto;
}

.detail-content-model p:last-child {
    margin-bottom: 0;
}

.detail-content-table-wrapper {
    width: 100%;
    margin: 24px 0;
}

.detail-content-table-wrapper .news-table-wrapper {
    max-height: none;
    overflow: visible;
}

.detail-content-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background: var(--color-white);
    font-size: 16px;
    line-height: 1.5;
}

.detail-content-table td,
.detail-content-table th {
    padding: 20px 30px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.16);
    vertical-align: top;
}

.detail-content-table td:first-child,
.detail-content-table th:first-child {
    width: 33.333%;
    border-left: none;
}

.detail-content-table td:nth-child(2),
.detail-content-table th:nth-child(2) {
    width: 33.333%;
    text-align: center;
}

.detail-content-table td:nth-child(3),
.detail-content-table th:nth-child(3) {
    width: 33.333%;
    text-align: center;
}

.detail-content-table tr[bgcolor="#cccccc"] td,
.detail-content-table .detail-content-table__section td {
    background: var(--color-p);
    color: var(--color-white);
    border-left-color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.detail-content-table .detail-content-table__section td[colspan="3"] {
    background-color: var(--color-p);
    box-sizing: border-box;
    padding-right: calc(66.666% + 30px);
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    background-image: linear-gradient(
        to right,
        transparent calc(33.333% - 1px),
        rgba(255, 255, 255, 0.55) calc(33.333% - 1px),
        rgba(255, 255, 255, 0.55) calc(33.333% + 1px),
        transparent calc(33.333% + 1px),
        transparent calc(66.666% - 1px),
        rgba(255, 255, 255, 0.55) calc(66.666% - 1px),
        rgba(255, 255, 255, 0.55) calc(66.666% + 1px),
        transparent calc(66.666% + 1px)
    );
}

.detail-content-table tr:not(.detail-content-table__section) td {
    background: var(--color-white);
}

.detail-content-table tr:not(.detail-content-table__section):nth-child(even) td {
    background: var(--color-background-service);
}

.detail-content-table tr:not(.detail-content-table__section):hover td {
    background: #e8f5e8;
}

.detail-content-table tr:not(.detail-content-table__section):nth-child(even):hover td {
    background: #f0f0f0;
}

.detail-content-table a {
    color: var(--color-green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.detail-content-table a:hover {
    text-decoration: none;
}

.detail-content-rating-list {
    display: inline-grid;
    grid-template-columns: max-content max-content;
    column-gap: 24px;
    row-gap: 2px;
    margin: 0 0 24px;
    line-height: 1.45;
}

.detail-content-rating-list__row {
    display: contents;
}

.detail-content-rating-list__label {
    white-space: nowrap;
}

.detail-content-rating-list__value {
    white-space: nowrap;
}

.detail-content-media-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
    gap: 30px;
    align-items: start;
}

.detail-content-media-row__image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .detail-content-media-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.detail-content-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    max-width: 100%;
    margin: 8px 0;
    padding: 8px 0;
    list-style: none;
}

.detail-content .detail-content-gallery__item {
    display: block;
    width: 100%;
    aspect-ratio: 5 / 4;
    margin: 0;
    padding: 4px;
    overflow: hidden;
    border: 1px solid #ccc;
    box-shadow: 3px 3px 5px #888;
    background: var(--color-white);
    box-sizing: border-box;
}

.detail-content .detail-content-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

@media (max-width: 640px) {
    .detail-content-model {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .detail-content-table {
        table-layout: fixed;
        font-size: 13px;
    }

    .detail-content-table td,
    .detail-content-table th {
        width: 33.333% !important;
        padding: 10px 8px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: none;
    }

    .detail-content-table tr[bgcolor="#cccccc"] td,
    .detail-content-table .detail-content-table__section td {
        font-size: 15px;
    }

    .detail-content-table td,
    .detail-content-table th {
        border-left-color: rgba(0, 0, 0, 0.16);
    }

    .detail-content-table tr[bgcolor="#cccccc"] td,
    .detail-content-table .detail-content-table__section td {
        border-left-color: rgba(255, 255, 255, 0.35);
    }

    .detail-content-table .detail-content-table__section td[colspan="3"] {
        width: 100% !important;
        padding-right: calc(66.666% + 8px);
    }

    .detail-content-gallery {
        gap: 10px;
    }
}

/* End */


/* Start:/local/templates/lr-service/styles.css?17788456841844*/
/* ================= symptoms-advantages: 3 top + 2 stretched bottom @ 1025-1280px ================= */
@media (max-width: 1280px) and (min-width: 1024px) {
    .symptoms-advantages {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        align-items: start;        /* обязательно */
        justify-content: center;
    }

    /* Явно указываем каждую карточку */
    .symptoms-advantage:nth-child(1),
    .symptoms-advantage:nth-child(2),
    .symptoms-advantage:nth-child(3) {
        grid-column: span 2;
    }

    /* 4-й и 5-й — второй ряд по центру */
    .symptoms-advantage:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .symptoms-advantage:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* ================= prof-equipment: outro full-width @ <=1280px ================= */
@media (max-width: 1280px) and (min-width: 1025px) {
    .prof-equipment.fix-divider-section .prof-equipment__layout {
        display: grid;
        grid-template-columns: 48% 1fr;
        column-gap: 60px;
        row-gap: 20px;
        align-items: start;
    }

    .prof-equipment.fix-divider-section .prof-equipment__content {
        display: contents;
    }

    .prof-equipment.fix-divider-section .prof-equipment__intro,
    .prof-equipment.fix-divider-section .prof-equipment__subtitle,
    .prof-equipment.fix-divider-section .prof-equipment__list {
        grid-column: 1;
        max-width: 100%;
    }

    .prof-equipment.fix-divider-section .prof-equipment__image {
        grid-column: 2;
        grid-row: 1 / span 3;
        flex: none;
        max-width: 100%;
    }

    .prof-equipment.fix-divider-section .prof-equipment__outro {
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
    }
}

/* End */


/* Start:/local/templates/lr-service/components/bitrix/menu/personal_left-mobile/style.css?17655432544918*/
.personal-left-menu { 
    overflow: hidden; 
}
.personal-left-menu--mobile, .personal-menu--mobile {
    background-color: var(--color-white) !important;
}
.personal-menu { 
    list-style: none; 
    margin: 0; 
    padding: unset;
}

.personal-menu--mobile .personal-menu__link-main { 
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.personal-menu--mobile .personal-menu__link-main .personal-menu__link {
    flex: 1;
    min-width: 0;
    padding: 10px 10px 10px 34px;
}

.personal-menu__link {
    display: block;
    padding: 10px 34px; 
    text-decoration: none; 
    font-size: 21px; 
    font-weight: 700; 
    color: var(--color-p);
    transition: color var(--transition);
}

.personal-menu__toggle {
    display: flex;
    align-items: center;
    padding: 10px 34px 10px 10px;
    cursor: pointer;
}

/* Стрелка аккордеона */
.catalog-menu__arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform var(--transition);
    stroke: currentColor;
    opacity: 0.6;
}

.personal-menu__link-main:hover .catalog-menu__arrow {
    opacity: 1;
}

/* Поворот стрелки при открытии */
.catalog-menu__has-children.open > .personal-menu__link-main .catalog-menu__arrow {
    transform: rotate(180deg);
}

/* Hover эффект для ссылок с детьми */
.catalog-menu__has-children > .personal-menu__link-main:hover {
    background-color: var(--color-background);
}

/* Стиль только для активного элемента первого уровня */
.personal-menu--mobile > .personal-menu__item.active > .personal-menu__link-main {
    color: var(--color-primary) !important;
    background: unset !important;
}
.personal-menu--mobile > .personal-menu__item.active > .personal-menu__link-main svg {
    color: var(--color-p);
}
.personal-menu--mobile > .personal-menu__item.active > .personal-menu__link-main > .personal-menu__link {
    color: var(--color-primary) !important;
    background: unset !important;
}
.personal-menu--mobile > .personal-menu__item.active >  .personal-menu__link  {
    color: var(--color-primary) !important;
    background: unset !important;
}



/* Стиль для активных элементов каталога (2-го уровня и ниже) */
.catalog-menu__level-2.active > .personal-menu__link-main,
.catalog-menu__level-3.active > .personal-menu__link-main, 
.catalog-menu__level-4.active > .personal-menu__link {
    color: var(--color-primary);
    font-weight: 700;
}

.catalog-menu__level-2 > .personal-menu__link-main,
.catalog-menu__level-3 > .personal-menu__link-main, 
.catalog-menu__level-4 > .personal-menu__link {
    padding: 10px 34px 10px 34px;
    font-size: 17px;
    font-weight: 500;
}

.catalog-menu__level-2 .catalog-menu__arrow,
.catalog-menu__level-3 .catalog-menu__arrow,
.catalog-menu__level-4 .catalog-menu__arrow {
    margin-left: 10px;
}
.catalog-menu__level-2 .catalog-menu__submenu,
.catalog-menu__level-3 .catalog-menu__submenu, 
.catalog-menu__level-4 .catalog-menu__submenu {
    padding-left: 20px;
}

/* ================= Catalog submenu animation ================= */
.catalog-menu__subwrap {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

.catalog-menu__has-children.open > .catalog-menu__subwrap {
    max-height: none;
}

.catalog-menu__submenu { 
    list-style: none;
    padding-left: 45px;
}
@media screen and (max-width: 1024px) {
    .personal-menu--mobile .personal-menu__link-main .personal-menu__link {
        font-size: 16px;
        padding: 8px 5px 8px 0px;
        font-weight: 500;
    }
    
    .personal-menu--mobile .personal-menu__link {
        font-size: 16px;
        padding: 8px 0;
        font-weight: 500;
    }
    
    .personal-menu__toggle {
        padding: 8px 20px 8px 5px;
    }
    
    .personal-menu--mobile .catalog-menu__submenu {
        padding-left: 15px;
    }
    .personal-menu--mobile .personal-menu__link-main {
        padding: unset;
    }
    
    .personal-menu--mobile .catalog-menu__level-2 .personal-menu__link-main .personal-menu__link,
    .personal-menu--mobile .catalog-menu__level-3 .personal-menu__link-main .personal-menu__link,
    .personal-menu--mobile .catalog-menu__level-4 > .personal-menu__link {
        font-size: 14px;
    }

    
    .personal-menu--mobile .catalog-menu__level-2 > .personal-menu__link-main , .personal-menu--mobile  .catalog-menu__level-3 > .personal-menu__link-main,  .personal-menu--mobile  .catalog-menu__level-4 > .personal-menu__link {
        padding: 2px 0;
    }
    
   .personal-menu--mobile  .catalog-menu__arrow {
        width: 16px;
        height: 16px;
    }
}
/* End */


/* Start:/local/templates/lr-service/components/seoven/search.suggest/main-search/style.css?17695236356336*/
/* ================= search suggest component ================= */

.search-suggest-wrapper {
    position: relative;
    width: 100%;
}

.search-suggest-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDownFade 0.2s ease-out;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggest-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    color: var(--color-text-light);
    font-size: 14px;
}

.suggest-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-suggest-results {
    padding: 10px 0;
}

.suggest-section {
    margin-bottom: 5px;
}

.suggest-section:last-child {
    margin-bottom: 0;
}

.suggest-section-title {
    padding: 10px 20px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-background);
}

.suggest-section-items {
    display: flex;
    flex-direction: column;
}

.suggest-item {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
}

.suggest-item:last-child {
    border-bottom: none;
}

.suggest-item:hover,
.suggest-item--active {
    background: var(--color-background);
}

.suggest-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggest-item-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggest-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggest-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.suggest-item-info {
    flex: 1;
    min-width: 0;
}

.suggest-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggest-item-name mark {
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
}

.suggest-item-meta {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.suggest-item-type {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    color: var(--color-primary);
    background: rgba(9, 136, 47, 0.1);
    border-radius: 10px;
    font-weight: 500;
}

.suggest-service .suggest-item-type {
    background: rgba(242, 77, 17, 0.1);
    color: var(--color-secondary);
}

.suggest-item-price {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: auto;
}

.suggest-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.suggest-empty .icon {
    color: var(--color-text-lighter);
    margin-bottom: 15px;
}

.suggest-empty p {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 5px;
}

.suggest-empty span {
    font-size: 14px;
    color: var(--color-text-light);
}

.suggest-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--color-border);
    background: var(--color-background);
}

.suggest-show-all {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    transition: var(--transition);
}

.suggest-show-all:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Scrollbar styling */
.search-suggest-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-suggest-dropdown::-webkit-scrollbar-track {
    background: var(--color-background);
}

.search-suggest-dropdown::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.search-suggest-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-lighter);
}

/* Responsive */
@media (max-width: 768px) {
    .search-suggest-dropdown {
        max-height: 400px;
    }

    .suggest-item {
        padding: 10px 15px;
    }

    .suggest-item-image {
        width: 40px;
        height: 40px;
    }

    .suggest-item-name {
        font-size: 13px;
    }

    .suggest-item-price {
        font-size: 14px;
    }

    .suggest-section-title {
        padding: 8px 15px 6px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .search-suggest-dropdown {
        max-height: 350px;
    }

    .suggest-item-content {
        gap: 10px;
    }

    .suggest-item-image {
        width: 35px;
        height: 35px;
    }

    .suggest-item-icon {
        width: 35px;
        height: 35px;
    }

    .suggest-footer {
        padding: 10px 15px;
    }
}

/* ================= end search suggest component ================= */

/* End */


/* Start:/local/components/seoven/search.suggest/templates/.default/style.css?17608945286336*/
/* ================= search suggest component ================= */

.search-suggest-wrapper {
    position: relative;
    width: 100%;
}

.search-suggest-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDownFade 0.2s ease-out;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-suggest-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 20px;
    color: var(--color-text-light);
    font-size: 14px;
}

.suggest-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.search-suggest-results {
    padding: 10px 0;
}

.suggest-section {
    margin-bottom: 5px;
}

.suggest-section:last-child {
    margin-bottom: 0;
}

.suggest-section-title {
    padding: 10px 20px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-background);
}

.suggest-section-items {
    display: flex;
    flex-direction: column;
}

.suggest-item {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
}

.suggest-item:last-child {
    border-bottom: none;
}

.suggest-item:hover,
.suggest-item--active {
    background: var(--color-background);
}

.suggest-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.suggest-item-image {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggest-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggest-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.suggest-item-info {
    flex: 1;
    min-width: 0;
}

.suggest-item-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggest-item-name mark {
    background: transparent;
    color: var(--color-primary);
    font-weight: 600;
}

.suggest-item-meta {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.suggest-item-type {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    color: var(--color-primary);
    background: rgba(9, 136, 47, 0.1);
    border-radius: 10px;
    font-weight: 500;
}

.suggest-service .suggest-item-type {
    background: rgba(242, 77, 17, 0.1);
    color: var(--color-secondary);
}

.suggest-item-price {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-left: auto;
}

.suggest-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.suggest-empty .icon {
    color: var(--color-text-lighter);
    margin-bottom: 15px;
}

.suggest-empty p {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    margin: 0 0 5px;
}

.suggest-empty span {
    font-size: 14px;
    color: var(--color-text-light);
}

.suggest-footer {
    padding: 12px 20px;
    border-top: 1px solid var(--color-border);
    background: var(--color-background);
}

.suggest-show-all {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    transition: var(--transition);
}

.suggest-show-all:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Scrollbar styling */
.search-suggest-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-suggest-dropdown::-webkit-scrollbar-track {
    background: var(--color-background);
}

.search-suggest-dropdown::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 3px;
}

.search-suggest-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-lighter);
}

/* Responsive */
@media (max-width: 768px) {
    .search-suggest-dropdown {
        max-height: 400px;
    }

    .suggest-item {
        padding: 10px 15px;
    }

    .suggest-item-image {
        width: 40px;
        height: 40px;
    }

    .suggest-item-name {
        font-size: 13px;
    }

    .suggest-item-price {
        font-size: 14px;
    }

    .suggest-section-title {
        padding: 8px 15px 6px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .search-suggest-dropdown {
        max-height: 350px;
    }

    .suggest-item-content {
        gap: 10px;
    }

    .suggest-item-image {
        width: 35px;
        height: 35px;
    }

    .suggest-item-icon {
        width: 35px;
        height: 35px;
    }

    .suggest-footer {
        padding: 10px 15px;
    }
}

/* ================= end search suggest component ================= */

/* End */


/* Start:/local/templates/lr-service/components/bitrix/breadcrumb/breadcurmb-main/style.css?17699839001463*/
.bx-breadcrumb {
	margin: 25px 0;
}
.bx-breadcrumb {
    display: flex;
    align-items: baseline; /* выравнивание по базовой линии текста */
    gap: 0; /* spacing via separator */
	flex-wrap: wrap;
	overflow: hidden;
}

.bx-breadcrumb i {
	display: none; /* скрываем fa-angle-right */
}

.bx-breadcrumb .bx-breadcrumb-item {
	position: relative;
	display: inline-block;
	margin: 0; /* reset margins so spacing comes only from separator */
	line-height: 20px;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bx-breadcrumb .bx-breadcrumb-item + .bx-breadcrumb-item::before {
	content: "-"; /* точка */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 6px; /* narrow visual separator */
	height: 20px; /* match text line-height */
	margin: 0 22px; /* fixed horizontal spacing between items */
	color: #b5bdc2;
	font-size: 12px;
	line-height: 1;
}

.bx-breadcrumb .bx-breadcrumb-item span,
.bx-breadcrumb .bx-breadcrumb-item a {
	font-size: 13px;
	color: var(--color-p);
	text-decoration: none; /* убираем подчеркивание */
	border-bottom: none;
	display: inline-block; /* для лучшего контроля выравнивания */
	vertical-align: baseline; /* выравнивание по базовой линии */
}

.bx-breadcrumb .bx-breadcrumb-item a:hover {
	text-decoration: underline; /* подчеркивание на hover */
}

/* End */


/* Start:/local/templates/lr-service/template_styles.css?1782125833365203*/
/* @font-face {
	font-family: 'Soyuz Grotesk';
	src: url('/local/templates/lr-service/fonts/SoyuzGroteskBold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
} */
@font-face {
	font-family: 'Comfortaa';
	src: url('/local/templates/lr-service/fonts/Comfortaa.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}


:root {

    --color-primary: #09882f;
    --color-primary-hover: #076d26;
    --color-green-dark: #063d16;
    --color-green-medium: #096c26;
    --color-secondary: #F24D11;
    --color-secondary-hover: #d65023;
    --color-whatsapp: #0EAF3E;
    --color-whatsapp-hover: #25D366;
    --color-telegram: #1FB4FF;
    --color-telegram-hover: #6acdff;
    --color-dark: #1E1E1E;
    --color-black: #000000;
    --color-text: #333;
    --color-p:#484F55;
    --color-text-light: #666;
    --color-text-lighter: #ccc;
    --color-white: #fff;
    --color-border: #e5e5e5;
    --color-background: #f8f9fa;
    --color-background-advantages: #F2F2F2;
    --color-background-service: #F9F9F9;
    --star-hover: #FFCC00;
    --color-youtube:#FF0000;
    --color-youtube-hover:#CC0000;
    --container-width: 1580px;
    --container-padding: 15px;
    --border-radius: 5px;
    --border-radius-small: 4px;
    --color-vkvideo:#0077FF;
    --color-vkvideo-hover:#0059C9;

    --color-rutube:#100943;
    --color-rutube-hover:#000000;
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

textarea {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-dark);
}

a:hover {
    color: var(--color-primary);
}
a {
    text-decoration: none;
}
h1 {
    font-size: 42px;
}
.catalog-detail-section-image svg text{
    fill: #000000;
    pointer-events: none;
}
.catalog-detail-section-image svg .text-is-active {
    fill: rgb(0, 38, 255);
    cursor: pointer;
    pointer-events: all;
}

.social-label {
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
}

.social-label p {
    margin: 0;
    color: var(--color-p);
    text-decoration: underline;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.highlight-element {
    animation: highlight .7s infinite linear;
}

@keyframes highlight {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.top-bar {
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 14px;
    padding: 8px 0;
    height: 69px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top-bar-left .location {
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.top-bar-left .location svg {
    flex-shrink: 0;
}

.top-bar-center {
    display: flex;
    gap: 20px;
    padding-left: 0;
}

.top-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition);
}
.selected {
    color: var(--color-primary);
}
.top-bar-center {
    list-style: none;
}



.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-right a img {
    display: block;
}

.top-bar-right__contacts.left-menu-catalog-tg{
    padding: 10px 34px;
    gap: 8px;
}
.top-bar-right__contacts.left-menu-catalog-tg .top-bar-right__contact a:first-of-type {max-height: 24px;}
.top-bar-right__contacts {
    display: flex;
    flex-direction: column;


}

.top-bar-right__contact {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right__contact span {
    margin-right: auto;
}

.whatsapp-link {
    color: var(--color-whatsapp);
}

.telegram-link {
    color: var(--color-telegram);
}
.whatsapp-link:hover {
    color: var(--color-whatsapp-hover);
}

.telegram-link:hover {
    color: var(--color-telegram-hover);
}

.phone {
    color: var(--color-white);
    font-weight: 500;
}

.callback-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 6px 12px;
    border-radius: var(--border-radius-small);
    font-size: 12px;
    cursor: pointer;
    transition: background var(--transition);
}

.callback-btn:hover {
    background: var(--color-secondary);
}

.site-header {
    background: var(--color-white);
    padding: 31px 0 31px 0 ;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    max-width: 280px;
	height: 100%;
	object-fit: contain;
}

.search-and-buttons-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.search-section {
    flex: 1;
    position: relative;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-form input[type="text"] {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--color-border);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
    height: 61px; 
}

.search-form input[type="text"]:focus {
    border-color: var(--color-primary);
}
.search-form input[type="text"]:hover {
    border-color: var(--color-primary);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn svg,
.search-btn use,
.search-btn path {
    color: inherit;
    fill: currentColor;
    stroke: currentColor;
}

.search-btn:hover {
    color: var(--color-primary);
}

.search-hint {
    font-size: 15px;
    color: var(--color-dark);
    text-decoration: underline;
    cursor: pointer;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    width: max-content;
}

.header-buttons {
    display: flex;
    gap: 10px;
}


.btn-green {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-green:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.btn-orange {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-orange:hover {
    background: var(--color-secondary-hover);
    color: var(--color-white);
}

.user-actions {
    display: flex;
    gap: 50px;
    align-items: center;
    padding-left: 60px;
}

.user-link,
.cart-link {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition);
    cursor: pointer;
}

.cart-link {
    position: relative;
}

.user-link--auth span {
    color: var(--color-primary);
}
.user-link--auth svg {
    color: var(--color-primary);

}

.user-link:hover,
.cart-link:hover {
    color: var(--color-primary);
}

.main-nav {
    background: var(--color-background);
    padding: 0;
}
.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.menu-item {
    margin: 0;
    position: relative;
}

.sub-menu-head {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    background: var(--color-background);
    border-radius: 4px;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    list-style-type: none;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: calc(100% + 80px);
}
.submenu-mobile {
    padding-left: 15px;
    display: none;
}

.catalog-menu__arrow.nav {
    width: 16px;
    height: 16px;
}

.mobile-menu-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.menu-item:hover .sub-menu-head {
    display: block;
    opacity: 1;
}

.sub-menu-item {
    padding: 15px 20px;
}

.sub-menu-head a {
    color: var(--color-text);
    font-weight: 500;
}


.sub-menu-head a:hover {
    color: var(--color-primary);
}


.menu-link {
    display: block;
    padding: 15px 20px;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: background var(--transition);
}
.menu-item.current .menu-link,
.menu-link:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}



/* ================= mobile search overlay styles ================= */
.mobile-search-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-search-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-search-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--color-white);
	padding: 15px 20px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
	transition: transform 0.3s ease;
	z-index: 10001;
}

.mobile-search-overlay.active .mobile-search-header {
	transform: translateY(0);
}

.mobile-search-close {
	background: none;
	border: none;
	padding: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
	transition: color 0.3s ease;
}

.mobile-search-close:hover {
	color: var(--color-primary);
}

.mobile-search-content {
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	background: var(--color-white);
	padding: 20px;
	max-height: calc(100vh - 60px);
	overflow-y: auto;
	transform: translateY(-100%);
	transition: transform 0.3s ease 0.1s;
	z-index: 10001;
}

.mobile-search-overlay.active .mobile-search-content {
	transform: translateY(0);
}

.mobile-search-content .search-suggest-wrapper {
	width: 100%;
}

.mobile-search-content .search-form input {
	width: 100%;
	font-size: 16px;
	padding: 12px 50px 12px 15px;
}

.mobile-search-content .search-btn {
	right: 10px;
}

.mobile-search-content .search-hint {
	display: block;
	margin-top: 15px;
	text-align: center;
	font-size: 14px;
}

/* Подсказки в мобильном overlay */
.mobile-search-content .search-suggest-dropdown {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	margin-top: 10px;
	max-height: calc(100vh - 200px);
	border-radius: var(--border-radius);
}

/* Показываем overlay только на мобильных */
@media (min-width: 501px) {
	.mobile-search-overlay {
		display: none !important;
	}
}

@media (max-width: 500px) {
	.mobile-search-overlay {
		display: block;
	}
}
/* ================= end mobile search overlay styles ================= */

/* ================= burger menu styles ================= */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--color-white);
    z-index: 1000;
    transition: right var(--transition);
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-dark);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-section {
    margin-bottom: 30px;
}

.mobile-menu-section h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-text-light);
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-nav li {
    margin-bottom: 10px;
}

.mobile-menu-nav a {
    display: block;
    padding: 12px 0;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.current {
    color: var(--color-primary);
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-contacts .phone {
    color: var(--color-primary);
}

.mobile-phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
}

.mobile-social {
    display: flex;
    gap: 15px;
}

/*.mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-background);
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--color-primary);
}

.mobile-social a:hover svg {
    fill: var(--color-white);
}*/

.mobile-social__groups {
    display: flex;
    gap: 5px;
    flex-direction: column;
    width: 100%;
    max-width: 190px;

}

.mobile-social__group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.mobile-social__group a {
    max-height: 24px;
}

.mobile-social__links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-social__group {

}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.mobile-menu-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}
/* ================= end burger menu styles ================= */
.service-transparency.fix-divider-section.slesarnyj-remont-transparency {
    padding: 0 !important;
    padding-bottom: 30px !important;
}

/* ===== BASE COMPONENTS ===== */
.btn {
	display: inline-block;
	padding: 17px 24px;
	border-radius: var(--border-radius);
	text-decoration: none;
	font-weight: 700;
	transition: all var(--transition);
	text-align: center;
	border: none;
	cursor: pointer;
}
.btn-primary {
	background: var(--color-primary);
	color: var(--color-white);
}
.btn-primary:hover {
	background: var(--color-primary-hover);
	color: var(--color-white);
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--color-dark);
	margin: 0 0 20px 0;
	line-height: 1.2;
}
.service-about__content .section-title  {
    font-size: 35px;


}
.service-about__content .section-title p {
        margin: unset;
}

#content:has(.catalog-detail-section) .h1-title {
    font-size: 32px; 
}

.h1-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--color-dark);
	margin: 0 0 40px 0;
	line-height: 1.2;
}
.section-description {
	font-size: 18px;
	color: var(--color-p);
	margin: 0;
    max-width: 710px;
    line-height: 1.4;
}

/* ===== /BASE COMPONENTS ===== */

/* ===== BANNER SECTION ===== */
.banner-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
    margin-top: -1px;
}
.banner-slider .swiper {
	width: 100%;
	height: 797px;
}
.banner-slide {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.banner-slide picture,
.banner-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-utp-left {
	position: absolute;
	left: calc((100vw - 1280px)/(1920 - 1280) * (370 - 40) + 40px);
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 25px;
	z-index: 2;
}

.banner-utp-item {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, 0.8);
	padding: 18px 28px;
	border-radius: var(--border-radius);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	transition: var(--transition);
}

.banner-utp-item:hover {
	background: rgba(255, 255, 255, 1);
	transform: translateX(10px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.banner-utp-item svg {
	flex-shrink: 0;
	fill: var(--color-primary);
	width: 24px;
	height: 24px;
}

.banner-utp-item span {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-dark);
	line-height: 1.3;
}

.banner-content.main-page {
    right: clamp(15px, (100vw - var(--container-width)) / 2  + 15px, 100%);
}

.banner-content {
	position: absolute;
	bottom: 0;
	width: 786px;
	background: rgba(249, 249, 249,0.89);
	padding: 52px 64px 20px 64px;
	box-shadow: none;
    right: clamp(15px, (100vw - var(--container-width)) / 2 + 15px, 100%);
}
.banner-content h2, .banner-content h1 {
	font-size: 36px;
	margin: 0 0 10px 0;
	color: var(--color-dark);
	font-weight: 700;
}
.banner-content p.lead {
	color: var(--color-p);
	margin: 0 0 48px 0;
	font-size: 30px;
	font-weight: 700;
}
.banner-content p.lead .green-text, .banner-content h1 .green-text {
	color: var(--color-primary);
}
.banner-content .form-title {
	font-weight: 700;
	font-size: 30px;
	margin: 0 0 10px 0;
	color: var(--color-dark);
}

/* ================= banner utp list styles ================= */
.banner-utp-list {
	list-style: none;
	padding: 0;

}

.banner-utp-list li {
	position: relative;
	padding-left: 25px;
	font-size: 23px;

	color: var(--color-p);
    font-weight: 700;
}

.banner-utp-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--color-primary);
	font-weight: bold;
	font-size: 24;
}

.banner-utp-list li strong {
	color: var(--color-primary);
	font-weight: 700;
}

.banner-utp-list li .green-text {
	color: var(--color-primary);
	font-weight: 700;
}
/* ================= end banner utp list styles ================= */

/* ================= news detail table wrapper for internal scroll ================= */
.news-table-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--border-radius);
}
.news-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}
@media (min-width: 801px) {
    .news-table-wrapper {
        max-height: 50vh; /* desktop: allow taller area */
    }
}
@media (max-width: 800px) {
    .news-table-wrapper {
        max-height: 40vh; /* mobile/tablet: smaller viewport to avoid full-page scroll */
    }
}
/* ================= end news detail table wrapper ================= */
.banner-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 0;
}
.banner-form .input {
	display: block;
	width: 100%;
}
.banner-form input {
	padding: 30px;
	border: 1px solid var(--color-white);
	border-radius: 0;
	background: var(--color-white);
	width: 100%;
	font-size: 17px;
	font-weight: 600;
	color: var(--color-dark);
}
.banner-form input::placeholder {
	color: var(--color-p);
}
.banner-form input:focus {
	outline: none;
	border-color: var(--color-primary);
}
.banner-form .form-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.banner-form .form-row a {
    color: var(--color-black);
}
.banner-form .form-row a:hover {
    text-decoration: underline;
    color: var(--color-primary);
}
.banner-form button {
	min-width: 180px;
	height: 77px;
	font-size: 17px;
	flex-shrink: 0;
	padding: 16px 24px;
}
.banner-form .note {
	font-size: 12px;
	color: var(--color-black);
}
.search-toggle-btn {
    display: none;
}
.spare-news{
    margin-top: 50px;
}

.basket-count-head {
    color: var(--color-white);
    position: absolute;
    display: inline-flex;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    top: -8px;
    left: 23px;
    display: none;

}

@media (max-width: 1360px) {
    .banner-content {
        width: 680px;
    }
    .banner-content h2, .banner-content h1 {
        font-size: 30px;
    }
    .banner-content .form-title {
        font-size: 24px;
        margin: 0 0 12px 0;
    }
    .banner-form input {
        padding: 20px 24px;
        font-size: 16px;
    }
    .banner-form button {
        height: 65px;
        font-size: 16px;
    }
    .banner-content p.lead {
        font-size: 26px;
        margin: 0 0 32px 0;
    }
    .banner-utp-item span {
        font-size: 17px;
    }
    .banner-form {
        gap: 10px;
    }
}

@media (max-width: 1280px) {
	.banner-utp-left {
		left: 40px;
		gap: 20px;
	}
	.banner-utp-item {
		padding: 15px 30px;
	}
	.banner-utp-item span {
		font-size: 15px;
	}
    .lr-services-prices-consultation.fix-divider-section:has(.part-selection-banner__section-link) {
        padding: 30px 0 0 0 !important;
    }
    .lr-services-prices-consultation.fix-divider-section:has(.lr-services-prices-consultation__form) {
        padding: 30px 0 20px 0 !important;
    }
    .lr-services-prices-consultation.fix-divider-section:has([data-modal="consultation"]){
        padding: 0 0 60px 0 !important;
    }
    .faq-section.fix-divider-section{
        padding-bottom: 30px !important;
    }
    .banner-content h1{
        font-size: 32px;
    }
    .banner-content .form-title{
        font-size: 28px;
    }
    .kuzov-workshop__image--top {
        height: 100%;
    }

    .fix-divider-section.fix-divider-section.fix-divider-section,
    .service-transparency.fix-divider-section.slesarnyj-remont-transparency {
        padding: 30px 0 0 0 !important;
    }
    .why-trust-us .service-reception__steps.service-reception__steps--desktop {
        padding: 0;
    }
    .practice-case-card__image {
        border: none;
    }
    .slider-akcii .slide-content--top {
        justify-content: space-between;
    }
    .service-reception__steps-lr-info.why-trust-us {
        margin-bottom: 35px;
    }
    .akcii-section.lr-services-prices:has(.akcii-slider-wrapper),
    .lr-services-prices.video-gallery-section:has(.video-slider-wrapper),
    .lr-services-prices-consultation-open-form:has(.lr-services-prices-consultation__inner) {
        margin-bottom: 60px;
    }
    .lr-service-cost-calculator:has(.lr-service-cost-calculator__title),
    .original-and-analogues:has(.original-and-analogues__title) {
        padding-top: 60px;
    }

    .experts-experience-25:has(.experts-experience-25__title){
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .owner-guarantee-section.lr-services-prices .owner-guarantee-content {
        align-items: end;
    }

    .banner-content {
        top: 45px;
    }
    .banner-slider + .wrapper-banner-long:has(.banner-content.long.short) {
        margin-bottom: 55px;
    }

    .save-money-section.tehnicheskoe.fix-divider-section .save-money-card__title{
        font-size: 22px;
    }

}

@media (max-width: 1150px) {
    .banner-utp-left {
        max-width: calc(100% - 20px * 2);
		left: 20px;
		top: 40px;
		transform: none;
        flex-direction: row;
	}
}

@media (max-width: 1024px) {
	.banner-content {
		right: 20px;
		width: calc(100% - 40px);
		left: 20px;
		top: 40px;
		bottom: 20px;
		transform: none;
	}
    .banner-content h2, .banner-content h1 {
        font-size: 32px;
    }
    .banner-utp-list li {
        font-size: 18px;
    }
    .banner-content p.lead {
        font-size: 24px;
        margin: 0 0 25px 0;
    }
    .banner-form input{
        padding: 30px;
    }
    .search-form input[type="text"] {
        height: 45px;
    }


}

@media (max-width: 768px) {

	.banner-utp-item {
		padding: 12px 20px;
		gap: 12px;
	}
	.banner-utp-item svg {
		width: 20px;
		height: 20px;
	}
	.banner-utp-item span {
		font-size: 14px;
	}
}

@media (max-width: 600px) {
	.banner-content {
		padding: 24px;
		right: 16px;
		left: 16px;
		width: calc(100% - 32px);
		box-sizing: border-box;
		overflow: hidden;
	}
 
	.banner-content h2, .banner-content h1 { 
		font-size: 24px;
		overflow-wrap: break-word;
		word-break: break-word;
	}
    .banner-utp-list li {
        font-size: 16px;
    }

	.banner-utp-left {
		padding: 15px;
		gap: 10px;
	}
	.banner-utp-item {
		padding: 10px 15px;
	}
	.banner-form input {
		height: 48px;
		padding: 14px;
		font-size: 16px;
	}
	.banner-form button {
		min-width: 120px;
		height: 48px;
		font-size: 16px;
	}
	.banner-form .form-row {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.banner-form .note {
		text-align: left;
		margin-top: 0;
	}
}
@media (max-width: 500px) {
    .banner-content .form-title {
        font-size: 20px;
        margin: 0 0 10px 0;
    }
    .banner-utp-left {
        left: 0;
    }
	.site-header {
		padding: 12px 0;
	}

	.header-row {
		gap: 10px;
		flex-wrap: nowrap;
	}
	.logo {
		order: 1;
	}

	.user-actions {
		order: 3;
		padding-left: 10px;
		gap: 12px;
		margin-left: auto;
	}
	.search-and-buttons-wrapper {
		order: 2;
		width: auto;
		flex: 0 0 auto;
	}
	.search-section {
		width: auto;
		position: static;
	}
	
	.search-section .search-form {
        display: none;
	}
	

	/* Показываем кнопку-иконку лупы */
	.search-toggle-btn {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 100%;
		height: 35px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		color: var(--color-dark);
		-webkit-appearance: none;
		appearance: none;
	}
	.mobile-search-content .search-hint {
        display: none;
    }
	.search-toggle-btn svg {
		width: 18px;
		height: 18px;
		color: inherit;
		fill: currentColor;
	}
	.search-toggle-btn use,
	.search-toggle-btn path {
		color: inherit;
		fill: currentColor;
	}
	
	.search-hint {
		display: none;
	}



	.user-link,
	.cart-link {
		gap: 0;
	}
	.user-link svg,
	.cart-link svg {
		width: 20px;
		height: 20px;
	}



}
/* ===== /BANNER SECTION ===== */

/* ===== AKCII SECTION ===== */


.main-slider-wrapper {
    position: relative;
    overflow: visible;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
}

.main-slider-wrapper .swiper {
    overflow: hidden;
    max-width: calc(var(--container-width) - 30px);
    margin: 0 auto;
    position: relative;
}


.akcii-section {
	padding: 80px 0;
}

.akcii-section.news-page {
    padding-top: 100px;
}

.akcii-section.news-page .section-header {
    margin-top: unset;
}

.akcii-section.news-page .section-title {
    margin-bottom: unset;
}

.akcii-section.services-lr {
    padding: 30px 0 45px;
}
.akcii-section.services-lr .akcii-header {
    margin-bottom: 20px;
}
.akcii-section .akcii-slide {
    position: relative;
}

.main-slides {
    position: relative;
}

.problem-solver__title {
    position: relative;
    margin-top: 30px;
    font-weight: 700;
    font-size: 21px;
    z-index: 1;
}

.problem-solver__title a {
    color: #000000;
}

.akcii-section .akcii-slide::before {
    content: '';
    position: absolute;
    background-color: rgba(0,0,0,0.6);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.akcii-header {
	margin-bottom: 60px;
}
.akcii-slider-wrapper {
	position: relative;
	overflow: visible;
	max-width: calc(var(--container-width) + 100px);
	margin: 0 auto;
}
.akcii-slider-wrapper .swiper {
	overflow: hidden;
	max-width: calc(var(--container-width) - 30px);
	margin: 0 auto;
	position: relative;
}
.akcii-slide {
	position: relative;
	height: 506px;
	overflow: hidden;
	cursor: pointer;
	transition: transform var(--transition);
}
.akcii-section.services-lr .akcii-slide {
    height: 506px;
}


.main-slides {
    position: relative;
    height: 506px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

.original-and-analogues__gallery-mobile .main-slides {
    height: unset;
}

.main-page .akcii-section {
    padding-bottom: 60px;
}

@media (max-width: 1360px) {
    .akcii-section {
        padding: 50px 0;
    }
    .akcii-footer {
        margin-top: 45px;
    }
    .main-page .akcii-section {
        padding-bottom: 45px;
    }
    .service-about__content .section-title {
        font-size: 32px;
    }
    .section-title {
        font-size: 36px;
    }
    .section-description {
        font-size: 16px;
    }
}

.problem-solver__image.problem-solver__image {
    height: 506px;
    position: static;
}

.problem-solver__image.problem-solver__image:hover img {
    transform: scale(1.05);
}

.problem-solver__overlay {
    background: rgba(0, 0, 0, 0.60) !important;
}

.problem-solver__slides {
    height: 506px;
    position: relative;
}

.problem-solver__slides .slide-content {
    position: absolute;
    z-index: 2;
}

.problem-solver__slides .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}
.akcii-slide:hover .slide-image img {
	transform: scale(1.05);
}
.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
	transition: background var(--transition);
}

.slide-content {
	position: absolute;
	left: 0;
	right: 0;
	padding: 30px;
	color: var(--color-white);
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
}
.slide-content--top { 
	justify-content: flex-start; 
	padding-top: 30px; 
	padding-bottom: 10px; 
}
.slide-content--center { 
	justify-content: center; 
	padding-top: 20px; 
	padding-bottom: 20px; 
}
.slide-content--bottom { 
	justify-content: flex-end; 
	padding-top: 10px; 
	padding-bottom: 30px; 
}
.slide-content .slide-title { order: 1; }
.slide-content .slide-footnote { order: 2; }
.slide-content .slide-description { order: 3; }
.slide-content .slide-button { 
	order: 4; 
	margin-top: 20px; 
	margin-bottom: 20px; 
}
.slide-content--bottom .slide-button { 
	order: 1; 
	opacity: 0; 
	transform: translateY(20px); 
}
.slide-content--bottom .slide-title,
.slide-content--bottom .slide-footnote,
.slide-content--bottom .slide-description { 
	order: 2; 
}
.slide-content--bottom:hover .slide-button { 
	opacity: 1; 
	transform: translateY(0); 
}
.slide-title {
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 15px 0;
}
.slide-footnote {
	font-size: 21px;
	opacity: 0.9;
	margin: 0 0 15px 0;
}
.slide-description {
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 20px 0;
	opacity: 0.9;
}
.slide-button {
	opacity: 0;
	transform: translateY(20px);
	max-width: 189px;
}
.akcii-slide:hover .slide-button {
	opacity: 1;
	transform: translateY(0);
}

.problem-solver__slides:hover .slide-button {
    opacity: 1;
    transform: translateY(0);
}

.problem-solver__slides .slide-button {
    align-self: center;
    width: 189px;
    padding: 21px 30px;
}

.akcii-prev {
	left: 0px;
	background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.akcii-next {
	right: 0px;
	background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.main-slider-prev,
.service-transparency-main-prev {
    left: 0px;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
}
.main-slider-next,
.service-transparency-main-next {
    right: 0px;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.articles-carousel-wrapper .articles-carousel-prev {
    left: 0;
}

.articles-carousel-wrapper .articles-carousel-next {
    right: 0;
}


.swiper-button-prev::after,
.swiper-button-next::after {
	content: '';
}

.akcii-footer {
	display: flex;
	justify-content: center;
	margin-top: 53px;
}
.akcii-all-button {
	padding: 25px 24px;
	max-width: 220px;
	min-width: 180px;
	opacity: 1;
	transform: none;
    height: 75px;
}
/* ===== /AKCII SECTION ===== */

/* ===== SERVICE ABOUT SECTION ===== */
.service-about {
    background: var(--color-background-service);
    padding-top: 96px;
}

.main-page .service-about {
    padding-top: 60px;
}

.main-page .service-about__advantages-section {
    padding-bottom: 60px;
}

.service-about .section-title {
    margin: 0 0 25px 0;
}
.service-container {
	position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-about__inner {
	position: relative;
	z-index: 2; 
	background: var(--color-white);
	padding: 60px 0 80px 0;
}

.service-about__content {
	display: block;
}

.service-about__text {
	max-width: 720px;
    margin-bottom: 38px;
}
.service-about__text ul {
    font-size: 14px;
}

.service-about__description {
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	margin: 0 0 24px 0;
}
.service-about__text .service-about__description:nth-child(3) {
    margin: 0 0 15px 0;
}

.service-about__advantages-section {
	width:  calc(100vw - 10px); 
	position: relative;
    overflow: hidden;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	background: var(--color-background-advantages); 
	padding: 30px 0 70px 0;
}


.advantages-section.inf-page {
    padding: 40px 0;
}

.service-about__advantages {
	max-width: var(--container-width);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px 20px;
	align-items: start;
    max-width: 750px;
}

.service-about__advantages-section._list .service-about__advantages {
    display: flex;
    flex-wrap: wrap;
    max-width: unset;
    gap: 5px;
    justify-content: space-between;
}

.service-about__advantages-section._list .advantage-item {
    width: 30%;
}


.advantage-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: transparent;
	padding: 8px 0;
}

.advantage-item__icon img {
	width: 32px;
	height: 44px;
	object-fit: contain;
    cursor: pointer;

}

.advantage-item:hover .advantage-item__icon img {
	filter: invert(43%) sepia(66%) saturate(450%) hue-rotate(325deg) brightness(95%) contrast(95%);
}

.advantage-item__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-p);
	margin: 0 0 12px 0;
}

.advantage-item__text {
	font-size: 14px;
	color: var(--color-p);
	margin: 0;
}

.service-about__image {
	position: absolute;
	top: 0;
	right: -20px;
	height: 100%;
	width: 785px;
	z-index: 1;
    max-height: 898px;
}

.service-about .service-about__image {
    right: 0;
}

.service-about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Responsive styles for service-about section */
@media (max-width: 1500px) {
	.service-about__image {
		width: 650px;
		right: 30px;
	}
	
	.service-about__text {
		max-width: 600px;
	}
}

@media (max-width: 1360px) {
    .slide-title {
        font-size: 24px;
    }
    .slide-footnote {
        font-size: 19px;
    }
    .akcii-slide {
        height: 430px;
    }
}
@media (max-width: 1400px) {
    .service-about__image {
        width: 450px;
        top:unset;
        bottom:0;
        max-height: 561px;
    }
}

@media (max-width: 1305px) {
    .service-about__advantages-section._list .advantage-item:nth-child(5) .advantage-item__title,
    .service-about__advantages-section._list .advantage-item:nth-child(6) .advantage-item__title{
        height: 44px;
    }
}

@media (max-width: 1200px) {
	.service-about {
		padding-top: 60px;
	}
	
	.service-about__image {
		width: 500px;
		right: -20px;
	}
	
	.service-about__text {
		max-width: 550px;
	}
	
	.service-about__advantages {
		gap: 15px 15px;
		max-width: 650px;
	}
}

@media (max-width: 1024px) {
	.service-about__image {
		width: 330px;
		right: 10px;
	}
    .service-about__image img {
        object-position: right;
    }
    .service-about__content .section-title p {
        font-size: 34px;
    }
	
	.service-about__text {
		max-width: 500px;
	}



}
@media (max-width: 998px) {
     .service-about__image img  {
        display: none;
     }
     .service-about__image {
        display: none;
     }
}


@media (max-width: 900px) {
	.service-about__image {
		width: 100%;
		right: 0;
	}
	
	.service-about__text {
		position: relative;
		z-index: 2;
		max-width: 100%;
		padding: 0 var(--container-padding);
	}
	
	.service-about__advantages {
		max-width: 100%;
	}

    .service-about__advantages-section._list .advantage-item:nth-child(5) .advantage-item__title,
    .service-about__advantages-section._list .advantage-item:nth-child(6) .advantage-item__title{
        height: auto;
    }

    .service-about__advantages-section._list .advantage-item {
        width: 48%;
    }
}

@media (max-width: 768px) {
	.service-about {
		padding-top: 40px;
	}
	
	.service-about__inner {
		padding: 40px 0 60px 0;
	}
	
	.service-about__image {
		position: static;
		width: 100%;
		height: 400px;
		margin-top: 30px;
	}
	
	.service-about__advantages {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 100%;
		padding: 0 var(--container-padding);
	}
	
	.service-about__text {
		max-width: 100%;
		padding: 0 var(--container-padding);
	}
	
	.service-about__description {
		font-size: 15px;
	}

    .service-about__advantages-section._list .advantage-item {
        width: 100%;
    }

    .advantage-item__title {
		font-size: 15px;
	}
	
	.advantage-item__text {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.service-about {
		padding-top: 30px;
	}
	
	.service-about__inner {
		padding: 30px 0 40px 0;
	}
	
	.service-about .section-title {
		font-size: 24px;
		margin: 0 0 20px 0;
	}
	
	.service-about__image {
		height: 300px;
		margin-top: 20px;
	}
	
	.service-about__description {
		font-size: 14px;
		margin: 0 0 18px 0;
	}
	
	.service-about__advantages-section {
		padding: 20px 0 40px 0;
	}

	.advantage-item {
		gap: 12px;
		padding: 6px 0;
	}
	
	.advantage-item__icon img {
		width: 28px;
		height: 38px;
	}
	
	.advantage-item__title {
		font-size: 14px;
		margin: 0 0 8px 0;
	}
	
	.advantage-item__text {
		font-size: 12px;
		line-height: 1.5;
	}

    .user-actions {
        padding-left: 0;
    }
}
/* ===== /SERVICE ABOUT SECTION ===== */


/* ===== MANUFACTERS SLIDER ===== */
.manufacters-slider { 
	padding: 60px 0; 
	background: var(--color-white); 
	overflow: hidden; 
}
.manufacters-slider .manufacters-header { 
	max-width: var(--container-width); 
	margin: 0 auto 30px auto; 
	padding: 0 var(--container-padding); 
}
.manufacters-slider .section-title { 
	margin: 0 0 26px 0; 
}
.manufacters-slider .section-description { 
	margin: 0 0 24px 0; 
	color: var(--color-p); 
}

.manufacters-track { 
	position: relative; 
	width: 100%; 
	overflow: hidden; 
	padding: 60px 0; 
}
.manufacters-track .track-inner { 
	display: flex; 
	gap: 40px; 
	align-items: center;
	width: max-content;
}
.manufacters-track .track-item { 
	flex: 0 0 auto; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	width: 250px;
	height: 60px;
}
.manufacters-track .track-item img { 
	display: block; 
	max-width: 170px;
	width: auto; 
	object-fit: contain;
}
@media screen and (max-width: 1360px) {
    .manufacters-slider {
        padding: 40px 0 10px;
    }
    .manufacters-track {
        padding: 30px 0;
    }
}
/* ================= product-slider multiblock equal height ================= */
.product-swiper-multiblock .swiper-slide {
    height: auto;
    display: flex;
}

.product-swiper-multiblock .swiper-slide > * {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.product-swiper-multiblock .catalog-item,
.product-swiper-multiblock .bx-catalog-item-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.track-top .track-inner { 
	animation: marquee-right 60s linear infinite; 
}
.track-bottom .track-inner { 
	animation: marquee-left 60s linear infinite; 
}

@keyframes marquee-left { 
	0% { transform: translateX(0); } 
	100% { transform: translateX(-50%); } 
}
@keyframes marquee-right { 
	0% { transform: translateX(-50%); } 
	100% { transform: translateX(0); } 
}


/* ===== /MANUFACTERS SLIDER ===== */

/* ===== ADVANTAGE SLIDER BLOCK ===== */
.advantage-slider {
	padding-bottom: 20px;
}


.advantage-swiper {
	width: 100%;
	height: 704px;
	margin-bottom: 40px;
}

.advantage-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.advantage-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.advantages-lr .advantages-row  {
    padding: 60px 0;
}
@media screen and (max-width: 1360px) {
    .advantage-swiper {
        height: 550px;
    }
    .advantages-row {
        padding: 12px 0 36px 0;
    }
}

.services-prices-utp .advantages-row__inner {
    padding: 0;
}

.lr-services-prices-top .banner-content {
    right: clamp(15px, (100vw - var(--container-width)) / 2 + var(--container-padding), 100%);
}
.lr-services-prices-top .banner-content ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 700;
    font-size: 23px;
    color: var(--color-p);
    margin-bottom: 10px;
}
.lr-services-prices-top .banner-content ul li::marker {
    color: var(--color-primary);
}
.lr-services-prices-top .banner-content ul li span {
    color: var(--color-primary);
}

.advantages-lr.services-prices-utp .adv-item {
    align-items: flex-start;
}

.advantages-row {
	padding: 24px 0 48px 0;
}

.advantages-row__inner {
	display: flex;
	gap: 40px;
	justify-content: space-between;
	align-items: flex-start;
}

.adv-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	max-width: 360px;
}

.adv-item__icon img {
	width: 38px;
	height: 38px;
	display: block;
}

.adv-item__text {
	color: var(--color-p);
	font-size: 17px;
}

/* ===== /ADVANTAGE SLIDER BLOCK ===== */

/* ================= specialization section styles ================= */
.specialization-section {
	padding: 105px 0 40px 0;
	background: var(--color-white);
}

.specialization-section.service-lr {
    padding: 80px 0 40px 0;
}

.specialization-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	color: var(--color-dark);
	margin: 0 0 60px 0;
}

.specialization-content {
	display: grid;
	grid-template-columns: 786px 1fr;
	gap: 30px;
	align-items: start;
}

.specialization-image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.specialization-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.specialization-items {
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.spec-item {
	position: relative;
	background: #F9F9F9;
	border: 1px solid #F9F9F9;
	padding: 61px 83px 61px 142px;
	min-height: 180px;
	display: flex;
	align-items: center;
	transition: var(--transition);
	cursor: pointer;
}

.spec-item--active {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.spec-item:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
}

.spec-item__number {
	position: absolute;
	left: 43px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	opacity: 0.2;
	color: var(--color-p);
	transition: var(--transition);
}

.spec-item--active .spec-item__number {
	color: var(--color-white);
}

.spec-item:hover .spec-item__number {
	color: var(--color-white);
}

.spec-item__text {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.4;
	color: var(--color-dark);
	margin: 0;
	transition: var(--transition);
}

.spec-item--active .spec-item__text {
	color: var(--color-white);
}

.spec-item:hover .spec-item__text {
	color: var(--color-white);
}

/* Responsive styles */
@media (max-width: 1400px) {
	.specialization-content {
		grid-template-columns: 600px 1fr;
	}

	.specialization-image {
		height: 500px;
	}
}

@media (max-width: 1200px) {


	.specialization-title {
		font-size: 36px;
		margin-bottom: 50px;
	}

	.specialization-content {
		grid-template-columns: 500px 1fr;
		gap: 25px;
	}

	.specialization-image {
		height: 450px;
	}

	.spec-item {
		padding: 50px 60px 50px 120px;
		min-height: 160px;
	}

	.spec-item__number {
		left: 35px;
		font-size: 36px;
	}

	.spec-item__text {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {


	.specialization-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.specialization-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.specialization-image {
		height: 400px;
	}

	.spec-item {
		padding: 40px 50px 40px 100px;
		min-height: 140px;
	}

	.spec-item__number {
		left: 30px;
		font-size: 32px;
	}
}

@media (max-width: 768px) {


	.specialization-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.specialization-image {
		height: 350px;
	}

	.specialization-items {
		gap: 20px;
	}

	.spec-item {
		padding: 35px 40px 35px 85px;
		min-height: 130px;
	}

	.spec-item__number {
		left: 25px;
		font-size: 28px;
	}

	.spec-item__text {
		font-size: 15px;
	}
}

@media (max-width: 500px) {
	.specialization-section {
		padding: 30px 0;
	}

	.specialization-title {
		font-size: 24px;
		margin-bottom: 25px;
	}

	.specialization-image {
		height: 280px;
	}

	.specialization-items {
		gap: 15px;
	}

	.spec-item {
		padding: 30px 25px 30px 70px;
		min-height: auto;
	}

	.spec-item__number {
		left: 20px;
		font-size: 24px;
	}

	.spec-item__text {
		font-size: 14px;
		line-height: 1.5;
	}


    .user-actions {
        padding-left: unset;
    }


}
/* ================= end specialization section styles ================= */

/* ================= video gallery section styles ================= */
.video-gallery-section {
	padding: 40px 0;
	background: var(--color-white);
}

.video-gallery-section.ler-service {
    padding: 40px 0 60px;
}

.video-gallery-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	color: var(--color-dark);
	margin: 0 0 60px 0;
}

.video-slider-wrapper {
	position: relative;
	overflow: visible;
	max-width: calc(var(--container-width) + 100px);
	margin: 0 auto;
}

.video-slider-wrapper .swiper {
	overflow: hidden;
	max-width: calc(var(--container-width) - 30px);
	margin: 0 auto;
	position: relative;
}



.video-slide {
	height: auto;
}

.video-item {
	display: block;
	position: relative;
	height: 506px;
	overflow: hidden;
	cursor: pointer;
	transition: transform var(--transition);
}

.video-item:hover {
	transform: translateY(-5px);
}

.video-item:hover .video-play-button {
	transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail {
	position: relative;
	width: 100%;
	height: 100%;
}

.video-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	transition: background var(--transition);
}

.video-item:hover .video-overlay {
	background: rgba(0, 0, 0, 0.6);
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform var(--transition);
	z-index: 2;
}

.video-play-button svg {
	display: block;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Стрелки навигации */
.video-gallery-prev,
.video-gallery-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	z-index: 10;
	cursor: pointer;
	transition: opacity var(--transition);
}

.video-gallery-prev {
	left: 0px;
	background-image: url('/local/templates/lr-service/images/arow-left.svg');
	background-repeat: no-repeat;
	background-position: center;
}

.video-gallery-next {
	right: 0px;
	background-image: url('/local/templates/lr-service/images/arow-right.svg');
	background-repeat: no-repeat;
	background-position: center;
}

.video-gallery-prev::after,
.video-gallery-next::after {
	content: '';
}



.video-gallery-prev.swiper-button-disabled,
.video-gallery-next.swiper-button-disabled {
	opacity: 0.3;
	cursor: default;
}

@media (max-width: 1400px) {
	.video-gallery-prev {
		left: -40px;
	}
	
	.video-gallery-next {
		right: -40px;
	}
}

@media (max-width: 1200px) {

	
	.video-gallery-title {
		font-size: 36px;
		margin-bottom: 40px;
	}
	
	/* .video-item {
		height: 400px;
	} */
}

@media (max-width: 1024px) {
	.video-gallery-title {
		font-size: 32px;
		margin-bottom: 30px;
	}
	
	/* .video-item {
		height: 350px;
	} */
	
	.video-gallery-prev {
		left: 10px;
	}
	
	.video-gallery-next {
		right: 10px;
	}
}

@media (max-width: 768px) {

	
	.video-gallery-title {
		font-size: 28px;
		margin-bottom: 25px;
	}
	
	/* .video-item {
		height: 300px;
	}
	 */
	.video-play-button svg {
		width: 48px;
		height: 48px;
	}
}

@media (max-width: 500px) {
	
	
	.video-gallery-title {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	/* .video-item {
		height: 250px;
	} */
	
	.video-play-button svg {
		width: 42px;
		height: 42px;
	}
	
	.video-gallery-prev,
	.video-gallery-next {
		width: 20px;
		height: 20px;
	}

	.video-gallery-prev:after,
	.video-gallery-next:after {
		width: 20px;
		height: 20px;
	}
}

/* ================= end video gallery section styles ================= */

/* ================= owner guarantee section styles ================= */
.owner-guarantee-section {
	background: var(--color-background-service);
	padding: 50px 0;
	margin-top: 20px;
}

.owner-guarantee-section.lr-service {
    margin-top: 40px;
}

.owner-guarantee-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.owner-guarantee-text {
	max-width: 752px;
}

.owner-guarantee-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	color: var(--color-black);
	margin: 0 0 43px 0;
}

.owner-guarantee-description {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.5;
	color: var(--color-p);
}

.owner-guarantee-description p {
	margin: 0 0 20px 0;
}

.owner-guarantee-description p:last-child {
	margin-bottom: 0;
}

.owner-guarantee-description b {
	font-weight: 800;
}

.owner-guarantee-description ul {
	margin: 17px 0;
	padding-left: 20px;
	list-style: disc;
}

.owner-guarantee-description ul li {
	margin-bottom: 8px;
}

.owner-guarantee-description ul li:last-child {
	margin-bottom: 0;
}

.owner-contact {
	margin-top: 40px;
}

.owner-contact-title {
	font-weight: 700;
	font-size: 17px;
	line-height: 1;
	color: var(--color-black);
	margin: 0 0 16px 0;
}

.owner-contact-email {
	display: flex;
	align-items: center;
	gap: 20px;
	text-decoration: none;
	color: var(--color-dark);
	transition: var(--transition);
}

.owner-contact-email:hover {
	color: var(--color-primary);
}

.owner-contact-email svg {
	flex-shrink: 0;
	color: var(--color-primary);
	transition: var(--transition);
}

.owner-contact-email:hover svg {
	color: var(--color-primary-hover);
}

.owner-contact-email span {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.5;
	color: inherit;
}

.owner-guarantee-image {
	position: relative;
}

.owner-guarantee-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--border-radius);
}

@media (max-width: 1200px) {
	.owner-guarantee-content {
		gap: 40px;
	}

	.owner-guarantee-title {
		font-size: 36px;
		margin-bottom: 30px;
	}
}

@media (max-width: 1024px) {
	.owner-guarantee-section {
		padding: 30px 0;
		margin-top: 20px;
	}


	.owner-guarantee-text {
		max-width: 100%;
	}

	.owner-guarantee-title {
		font-size: 32px;
		margin-bottom: 25px;
	}

	.owner-guarantee-description {
		font-size: 16px;
	}

	.owner-contact-title {
		font-size: 16px;
	}

	.owner-contact-email span {
		font-size: 16px;
	}
}

@media (max-width: 768px) {

	.owner-guarantee-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.owner-guarantee-description {
		font-size: 15px;
	}

	.owner-contact {
		margin-top: 30px;
	}
}

@media (max-width: 480px) {
	.owner-guarantee-title {
		font-size: 24px;
	}

	.owner-guarantee-description {
		font-size: 14px;
	}

	.owner-guarantee-description p {
		margin-bottom: 14px;
	}

	.owner-contact-title {
		font-size: 15px;
	}

	.owner-contact-email {
		gap: 15px;
	}

	.owner-contact-email svg {
		width: 20px;
		height: 20px;
	}

	.owner-contact-email span {
		font-size: 14px;
	}
}
/* ================= end owner guarantee section styles ================= */

/* ================= services grid section styles ================= */
.services-grid-section {
	background: var(--color-background-service);
	padding: 66px 0 40px;
	margin-bottom: 50px;
}

.services-grid-section.lr-service {
    margin-bottom: 40px;
}

.services-grid-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	color: var(--color-black);
	margin: 0 0 50px 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
}

.service-card {
	position: relative;
	overflow: hidden;
}

.service-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.service-card-image {
	position: relative;
	width: 100%;
	padding-top: 100%;
	overflow: hidden;
}

.service-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.service-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.service-card:hover .service-card-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.service-card-content {
	padding: 15px 0;
}

.service-card-title {
	font-weight: 400;
	font-size: 17px;
	line-height: 1.3;
	color: var(--color-black);
	margin: 0;
	min-height: 44px;
}

.service-card-button {
	display: inline-block;
	font-weight: 700;
	font-size: 17px;
	line-height: 1;
	color: var(--color-white);
	background: var(--color-primary);
	padding: 15px 25px;
	border-radius: var(--border-radius);
	transition: var(--transition);
	opacity: 0;
	transform: translateY(10px);
}

.service-card:hover .service-card-button {
	opacity: 1;
	transform: translateY(0);
}

.service-card-button:hover {
	background: var(--color-secondary);
}

@media (max-width: 1400px) {
	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (max-width: 1200px) {
	.services-grid-section {
		padding: 50px 0 60px;
	}

	.services-grid-title {
		font-size: 36px;
		margin-bottom: 40px;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}
}

@media (max-width: 1024px) {
	.services-grid-section {
		padding: 40px 0 50px;
	}

	.services-grid-title {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.service-card-title {
		font-size: 16px;
		min-height: 40px;
		margin-bottom: 15px;
	}

	.service-card-button {
		font-size: 18px;
		padding: 15px 25px;
	}
}

@media (max-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.services-grid-title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.service-card-content {
		padding: 12px 0;
	}

	.service-card-title {
		font-size: 15px;
		min-height: 38px;
		margin-bottom: 12px;
	}

	.service-card-button {
		font-size: 16px;
		padding: 12px 20px;
	}
}

@media (max-width: 480px) {
	.services-grid-section {
		padding: 30px 0 40px;
	}


	.services-grid-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.service-card-image {
		padding-top: 75%;
	}

	.service-card-title {
		font-size: 16px;
		min-height: auto;
	}

	.service-card-button {
		font-size: 17px;
		padding: 15px 25px;
	}
}
@media (max-width: 400px) {
    .services-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
}
/* ================= end services grid section styles ================= */

/* ================= consultation form section styles ================= */
.consultation-form-section {
	margin-top: 35px;
}

.consultation-form-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: flex-start;
	background: var(--color-p);
	padding: 60px 80px;
}

.consultation-content {
	color: var(--color-white);
    max-width: 84%;
}

.consultation-title {
	font-weight: 700;
	font-size: 42px;
	line-height: 1;
	margin: 0 0 40px 0;
	color: var(--color-white);
}

.consultation-description {
	font-weight: 700;
	font-size: 21px;
	line-height: 1.3;
	margin: 0;
	color: var(--color-white);
}

.consultation-form-container {
	max-width: 680px;
}

.consultation-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.consultation-form .form-input,
.consultation-form .form-textarea {
	width: 100%;
	padding: 25px 38px;
	background: var(--color-white);
	border: 1px solid rgba(0, 0, 0, 0.13);
	border-radius: 0;
	font-size: 17px;
	font-weight: 400;
	color: var(--color-dark);
	outline: none;
	transition: var(--transition);
}

.consultation-form .form-input::placeholder,
.consultation-form .form-textarea::placeholder {
	color: var(--color-dark);
	opacity: 1;
}

.consultation-form .form-input:focus,
.consultation-form .form-textarea:focus {
	border-color: var(--color-primary);
}

.consultation-form .form-textarea {
	resize: vertical;
	min-height: 99px;
}

.consultation-form .form-footer {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 10px;
}

.consultation-form .form-agreement {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 17px;
	color: #bebebe;
	line-height: 1.3;
}

.consultation-form .form-agreement input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
}

.consultation-form .form-agreement label {
	cursor: pointer;
	flex: 1;
}

.consultation-form .form-agreement a {
	color: #bebebe;
	text-decoration: underline;
	transition: var(--transition);
}

.consultation-form .form-agreement a:hover {
	color: var(--color-white);
}

.consultation-form .btn-submit {
	width: fit-content;
	padding: 25px 64px;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	border-radius: var(--border-radius);
	font-size: 17px;
	font-weight: 400;
	cursor: pointer;
	transition: var(--transition);
}

.consultation-form .btn-submit:hover {
	background: var(--color-primary-hover);
}

/* Responsive styles */
@media (max-width: 1200px) {
	.consultation-form-wrapper {
		gap: 60px;
		padding: 50px 60px;
	}

	.consultation-title {
		font-size: 36px;
	}

	.consultation-description {
		font-size: 19px;
	}
}

@media (max-width: 1024px) {
	.consultation-form-section {
		margin-top: 20px;
	}

	.consultation-form-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 50px;
	}

	.consultation-title {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.consultation-description {
		font-size: 18px;
	}

	.consultation-form-container {
		max-width: 100%;
	}
}

@media (max-width: 768px) {

	.consultation-form-wrapper {
		padding: 40px 30px;
	}

	.consultation-title {
		font-size: 28px;
		margin-bottom: 25px;
	}

	.consultation-description {
		font-size: 17px;
	}

	.consultation-form .form-input,
	.consultation-form .form-textarea {
		padding: 20px 25px;
		font-size: 16px;
	}

	.consultation-form .form-agreement {
		font-size: 15px;
	}

	.consultation-form .btn-submit {
		width: 100%;
		padding: 20px 40px;
		font-size: 16px;
	}
}

@media (max-width: 500px) {

	.consultation-form-wrapper {
		gap: 30px;
		padding: 30px 20px;
	}

	.consultation-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.consultation-description {
		font-size: 16px;
	}

	.consultation-form .form-input,
	.consultation-form .form-textarea {
		padding: 18px 20px;
		font-size: 14px;
	}

	.consultation-form .form-textarea {
		min-height: 80px;
	}

	.consultation-form .form-agreement {
		font-size: 14px;
		gap: 8px;
	}

	.consultation-form .form-agreement input[type="checkbox"] {
		width: 16px;
		height: 16px;
	}

	.consultation-form .btn-submit {
		padding: 18px 30px;
		font-size: 15px;
	}
}
/* ================= end consultation form section styles ================= */

/* ================= save-money-section styles ================= */
.save-money-section {
    padding: 80px 0;
}

.save-money-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.save-money-card {
    border-radius: var(--border-radius);
    padding: 40px 35px;
    color: var(--color-white);
}

.save-money-card:nth-child(1) {
    background: var(--color-primary);
}

.save-money-card:nth-child(2) {
    background: var(--color-whatsapp);
}

.save-money-card:nth-child(3) {
    background: var(--color-green-dark);
}

.save-money-card:nth-child(4) {
    background: var(--color-green-medium);
}

.save-money-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.save-money-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.save-money-card__title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-white);
}

.save-money-card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: var(--color-white);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .save-money-section {
        padding: 50px 0;
    }

    .save-money-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .save-money-card {
        padding: 30px 25px;
    }

    .save-money-card__title {
        font-size: 20px;
    }

    .save-money-card__text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .save-money-section {
        padding: 40px 0;
    }

    .save-money-card {
        padding: 25px 20px;
    }

    .save-money-card__icon {
        width: 40px;
        height: 40px;
    }

    .save-money-card__title {
        font-size: 18px;
    }
}
.save-money-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}

.save-money-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.save-money-card.is-visible:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.save-money-card:nth-child(1) { transition-delay: 0s; }
.save-money-card:nth-child(2) { transition-delay: 0.12s; }
.save-money-card:nth-child(3) { transition-delay: 0.24s; }
.save-money-card:nth-child(4) { transition-delay: 0.36s; }

/* ================= end save-money-section styles ================= */

/* ================= tehnicheskoe save-money-section styles ================= */
.save-money-section.tehnicheskoe .save-money-grid {
    gap: 30px;
}

.save-money-section.tehnicheskoe .save-money-card {
    padding: 30px 40px 40px;
    min-height: 272px;
}

.save-money-section.tehnicheskoe .save-money-card__header {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.save-money-section.tehnicheskoe .save-money-card__icon {
    width: 72px;
    height: 72px;
}

.save-money-section.tehnicheskoe .save-money-card__title {
    font-size: 30px;
    line-height: 1.2;
}

.save-money-section.tehnicheskoe .save-money-card__text {
    font-size: 17px;
    line-height: 1.5;
    opacity: 1;
}

@media (max-width: 1200px) {
    .save-money-section.tehnicheskoe .save-money-card__title {
        font-size: 24px;
    }

    .save-money-section.tehnicheskoe .save-money-card__icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .save-money-section.tehnicheskoe .save-money-card {
        min-height: auto;
        padding: 25px 30px 30px;
    }

    .save-money-section.tehnicheskoe .save-money-card__title {
        font-size: 22px;
    }

    .save-money-section.tehnicheskoe .save-money-card__icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .save-money-section.tehnicheskoe .save-money-card__title {
        font-size: 20px;
    }

    .save-money-section.tehnicheskoe .save-money-card__icon {
        width: 40px;
        height: 40px;
    }

    .save-money-section.tehnicheskoe .save-money-card__text {
        font-size: 15px;
    }
}
/* ================= end tehnicheskoe save-money-section styles ================= */

/* ================= articles-carousel-section styles ================= */
.articles-carousel-section {
    padding: 80px 0;
    background: var(--color-background-service);
}




.articles-carousel-section.fix-divider-section .section-title {
    margin-bottom: 40px;
    max-width: unset;
}

@media (max-width: 768px) {
    .articles-carousel-section {
        padding: 50px 0;
    }

    .articles-carousel-section .section-title {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .articles-carousel-section {
        padding: 40px 0;
    }
}

/* articles-carousel-nav: стрелки слайдера */
.articles-carousel-nav {
    display: contents;
}

@media (max-width: 768px) {
    .articles-carousel-wrapper {
        overflow: hidden;
    }

    .articles-carousel-nav {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 24px;
    }

    .articles-carousel-wrapper .articles-carousel-prev,
    .articles-carousel-wrapper .articles-carousel-next {
        position: static;
        width: 20px;
        height: 20px;
        margin: 0;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }

    .articles-carousel-wrapper .articles-carousel-prev {
        left: auto;
        background-image: url('/local/templates/lr-service/images/arow-left.svg');
    }

    .articles-carousel-wrapper .articles-carousel-next {
        right: auto;
        background-image: url('/local/templates/lr-service/images/arow-right.svg');
    }
}

/* ================= end articles-carousel-section styles ================= */

/* ===== SERVICE RECEPTION BLOCK ===== */
.service-reception {
    padding: 80px 0;
    background: var(--color-background);
}

.service-reception.company-page {
    padding: 60px 0;
}

.service-reception.company-pagesection-title .service-reception__header {
    margin-bottom: 60px;
}

.service-reception.company-page .section-title {
    margin-bottom: 0;
}

.service-reception.company-page .reception-step {
    padding: 58px 43px 46px 43px;
}

.service-reception__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.service-reception__header {
    text-align: left;
    margin-bottom: 73px;
}

.service-reception__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}
.service-reception__steps .reception-step:nth-child(1) {
	background: var(--color-primary);
}
.service-reception__steps .reception-step:nth-child(2) {
	background: var(--color-whatsapp);
}
.service-reception__steps .reception-step:nth-child(3) {
	background: #063D16;
}
.service-reception__steps .reception-step:nth-child(4) {
	background: #096C26;
}

.service-reception.main-page {
    padding: 60px 0;
}
@media screen and (max-width: 1360px) {
    .service-reception__header {
        margin-bottom: 40px;
    }
    .service-reception.main-page {
        padding: 40px 0;
    }
}

.reception-step {
    color: var(--color-white);
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.reception-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 25px;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.reception-step:hover .step-number {
    opacity: 1;
}

.step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.step-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: var(--color-white);
    line-height: 1.2;
    height: auto;
}

.step-icon_image {
    display: block;
    max-width: 100%;
    margin-bottom: 14px;
}

.service-reception__steps-lr-info .step-text  {
    font-size: 21px;
    font-weight: 700;
}

.service-reception__steps-lr-info.lr-service {
    padding: 80px 0;
}

.step-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 0;
}

.service-reception__media {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: start; 
}

.service-reception__media .media-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
	height: 100%;
}
@media (max-width: 1360px) {
    .service-reception__media {
        margin-bottom: 20px;
    }
}

.reception-video {
    position: relative;
    overflow: hidden;
    background: #000;
    height: 340px;
}

.video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


.reception-specialists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch; 
}

.specialist-card {
    background: var(--color-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.specialist-photo {
    height: 340px;
    overflow: hidden;
}

.specialist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
}

.specialist-info {
    padding: 40px 50px 50px 50px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.specialist-name {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--color-p);
}


.specialist-description {
    font-size: 17px;
    color: var(--color-p);
    margin: 0 0 24px 0;
    flex: 1 1 auto; 
}

.specialist-whatsapp {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition);
}
.specialist-whatsapp svg {
    color: var(--color-telegram);
}
.specialist-whatsapp p {
	color: var(--color-p);
	font-size: 17px;
	font-weight: 700;
}

.specialist-whatsapp p:hover  {
	color: var(--color-primary-hover);
}

.specialist-whatsapp svg:hover {
    color: var(--color-telegram-hover);
}

.icon-vkvideo {
    color: var(--color-vkvideo);
}

.icon-vkvideo:hover {
    color: var(--color-vkvideo-hover);
}

.icon-rutube {
    color: var(--color-rutube);
}

.icon-rutube:hover {
    color: var(--color-rutube-hover);
}

.reception-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto; 
}

.reception-signup-btn {
    min-width: 250px;
	font-size: 17px;
	padding: 18px 40px;
}

.reception-question-btn {
    border: 2px solid var(--color-p);
	background-color: var(--color-p);
    color: var(--color-white);
    padding: 18px 24px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 17px;
    min-width: 180px;
	min-height: 76px;
}

@media (max-width: 1200px) {
	.service-reception__steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	.step-title {
		font-size: 26px;
		height: auto;
		margin-bottom: 20px;
	}
	.service-reception__media {
		gap: 15px;
	}
	.reception-specialists {
		gap: 15px;
	}
	.specialist-info {
		padding: 30px;
	}
    .reception-actions {
        flex-direction: column-reverse;
    }
    .service-reception__media {
        grid-template-columns: 330px 2fr;
    }
    .reception-question-btn {
        width: 100%;
        min-height: 60px;
    }
}

/* Показываем desktop версию по умолчанию, скрываем mobile */
.service-reception__steps--mobile {
	display: none;
}

.service-reception__steps--desktop {
	display: grid;
}


@media (max-width: 900px) {
	/* Скрываем desktop версию, показываем mobile слайдер */
	.service-reception__steps--desktop {
		display: none;
	}
    .owner-guarantee-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-reception__steps--mobile {
		display: block;
		margin-bottom: 20px;
		position: relative;
		padding-bottom: 60px;
	}

	.service-reception__steps--mobile .swiper-slide {
		height: auto;
		display: flex;
	}

	.service-reception__steps--mobile .reception-step {
		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
	}

	.service-reception {
		padding: 60px 0;
	}
	.service-reception__header {
		margin-bottom: 40px;
	}
    .reception-signup-btn {
        width: 100%;
        min-height: 60px;
    }
    .specialist-photo img {
        object-fit: contain;
    }
	.reception-step {
		padding: 30px;
	}
	.step-number {
		font-size: 36px;
		margin-bottom: 15px;
	}
	.step-title {
		font-size: 22px;
		margin-bottom: 15px;
	}


	.step-text p {
		font-size: 15px;
	}
	.service-reception__media {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.reception-video {
		height: 280px;
	}
	.reception-specialists {
		grid-template-columns: 1fr;
	}
	.specialist-photo {
		height: 280px;
	}

	/* Навигация слайдера снизу */
	.service-reception-slider-nav {
		display: flex;
		justify-content: center;
		gap: 40px;
		margin-top: 30px;
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
	}

	.reception-slider-prev,
	.reception-slider-next {
		position: static;
		width: 20px;
		height: 20px;
		background-color: transparent;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		margin: 0;
		transition: opacity var(--transition);
	}

	.reception-slider-prev {
		background-image: url('/local/templates/lr-service/images/arow-left.svg');
	}

	.reception-slider-next {
		background-image: url('/local/templates/lr-service/images/arow-right.svg');
	}

	.reception-slider-prev:hover,
	.reception-slider-next:hover {
		opacity: 0.7;
	}

	.reception-slider-prev::after,
	.reception-slider-next::after {
		display: none;
	}
}

@media (max-width: 800px) {
	.reception-actions {
		flex-direction: column;
		gap: 10px;
		width: 100%;
	}
	.reception-signup-btn,
	.reception-question-btn {
		width: 100%;
		min-width: auto;
		text-align: center;
	}
	.reception-video {
		height: 250px;
	}
	.specialist-photo {
		height: 250px;
	}
	.specialist-info {
		padding: 25px;
	}
}

@media (max-width: 600px) {
	.service-reception {
		padding: 40px 0;
	}
	.service-reception__header {
		margin-bottom: 30px;
	}
	.reception-step {
		padding: 20px;
	}
	.step-number {
		font-size: 28px;
		margin-bottom: 10px;
	}
	.step-title {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.step-text p {
		font-size: 14px;
	}
	.reception-video {
		height: 220px;
	}
	.specialist-photo {
		height: 240px;
	}
	.specialist-info {
		padding: 20px;
	}
	.specialist-name {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.specialist-description {
		font-size: 15px;
		margin-bottom: 20px;
	}
	.specialist-whatsapp {
		gap: 15px;
	}
	.specialist-whatsapp p {
		font-size: 15px;
	}
	.reception-actions {
		flex-direction: column;
		gap: 10px;
	}
	.reception-signup-btn,
	.reception-question-btn {
		width: 100%;
		min-width: auto;
		font-size: 15px;
		padding: 15px 20px;
		min-height: auto;
	}
}

/* ===== /SERVICE RECEPTION BLOCK ===== */

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.2s ease;
    backdrop-filter: blur(4px);
}

.video-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.video-modal__content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    width: 1000px;
    background: var(--color-black);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

.video-modal__header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 15px;
}

.video-modal__close {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.video-modal__close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-modal__close svg {
    width: 20px;
    height: 20px;
}

.video-modal__player {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background: var(--color-black);
}

.video-modal__player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;

}

/* Кастомизация video controls */
.video-modal__player video::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.video-modal__player video::-webkit-media-controls-play-button,
.video-modal__player video::-webkit-media-controls-volume-slider {
    filter: brightness(1.2);
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.9) translateY(-20px); 
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0); 
    }
}

@media (max-width: 1024px) {
    .video-modal__content {
        width: 90vw;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .video-modal__overlay {
        padding: 10px;
    }
    
    .video-modal__content {
        width: 100%;
        border-radius: 8px;
    }
    
    .video-modal__close {
        width: 40px;
        height: 40px;
    }
    
    .video-modal__close svg {
        width: 18px;
        height: 18px;
    }
    
    .video-modal__header {
        padding: 10px;
    }
    

}

@media (max-width: 480px) {
    .video-modal__overlay {
        padding: 5px;
    }
    
}
/* ===== /VIDEO MODAL ===== */

/* ===== HISTORY STATS BLOCK ===== */

.main-page .history-stats {
    padding: 60px 0;
}

.main-page .history-stats .history-title {
    margin-top: 0;
}

.history-stats {
    padding: 80px 0;
    background: var(--color-white);
}

.history-stats .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.history-header {
    text-align: left;
    margin-bottom: 60px;
}

.history-title p {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0;
}


.history-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 45px;
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-item {
    flex: 1;
    text-align: left;
    padding: 0 10px;
}

.timeline-year {
    font-size: 30px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.timeline-achievement {
    font-size: 17px;
    color: var(--color-dark);
}

.history-text-block-container {
	max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


.history-text-block {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
	background: var(--color-primary);
    color: var(--color-white);
	margin-bottom: 18px;
	padding: 6px 0;
}
.history-text-block a {
    color: var(--color-white);
}
.history-text-block a:hover {
    text-decoration: underline;
}
.history-text {
	max-width: 1100px;
	margin: 0 auto;
}

.history-text p {
    margin: 0;
}

.history-image-block {
    margin-bottom: 80px;
	max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.history-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: -130px;
    margin-top: 50px; 
    align-items: flex-start;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.legend-icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.legend-text {
    font-size: 21px;
    color: var(--color-text);
    font-weight: 700;
	padding-left: 20px;
}

/* График */
.history-chart {
    text-align: center;
    position: relative;
    height: auto;
}

/* Canvas wrapper and responsive rules */
.history-chart__canvas-wrap {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
}
.history-chart__canvas-wrap canvas,
#historyChart {
    display: block;
    width: 100%;
    height: auto;
}
/* ===== /HISTORY STATS BLOCK ===== */


/* ===== PROCESS STEPS ===== */
.process-steps {
    padding: 60px 0;
	background: var(--color-white);
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.process-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
	gap:10px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.process-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 30px 30px;
    color: var(--color-white);
}

/* Hover / interactive states */
.process-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.process-card__head {
	transition: filter 180ms ease, background 180ms ease;
}

.process-card:hover .process-card__icon img {
	transform: scale(1.06) translateY(-1px);
}

.process-step-arrow img {
	transition: transform 260ms cubic-bezier(.2,.9,.2,1), opacity 180ms ease;
	opacity: 0.9;
}

.process-card__icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.process-card__title {
    font-size: 27px;
    font-weight: 700;
    margin: 0;
}

.process-card__title p {
    margin: 0;
}

.process-card__body {
    padding: 26px 30px 34px 30px;
    color: var(--color-dark);
    font-size: 17px;
    line-height: 1.6;
	background-color: var(--color-background-service);
	height: 100%;
}

.process-step-arrow {
    display: flex;
    justify-content: center;
}

.process-card--green .process-card__head {
    background: var(--color-primary);
}

.process-card--light .process-card__head {
    background: #0EAF3E;
}

.process-card--dark .process-card__head {
    background: #063D16;
}
.process-card--greenv2 .process-card__head {
    background: #096C26;
}
@media screen and (max-width: 1360px) {
    .history-title p {
        font-size: 36px;
    }
    .timeline-year {
        font-size: 26px;
    }
    .timeline-achievement {
        font-size: 15px;
    }
    .history-text-block {
        font-size: 24px;
    }
    .main-page .history-stats {
        padding: 40px 0;
    }
    .process-steps {
        padding: 20px 0;
    }
    .legend-text {
        font-size: 18px;
    }
} 
@media (max-width: 1024px) {
    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-card__title p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .process-row {
        grid-template-columns: 1fr;
    }
    
}

/* ===== /PROCESS STEPS ===== */



/* ===== RECEPTION VIDEO - new isolated styles ===== */
.reception-video--new {
    max-width: none;
    margin: 0 auto 100px auto;
	background: unset;
	padding: 0;
	height: auto;
}

.main-page .reception-video--new {
    margin: 0 auto 60px auto;
}



.main-page .price-list-section {
    padding: 60px 0;
}

.main-page .price-list-section .section-header {
    margin-top: 0;
}

.reception-video--new .section-title {
	margin: 0 0 63px 0;
}

.reception-video--new .reception-video__header {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.reception-video--new .reception-video-swiper {
    width: 100%;
    overflow: hidden;
    max-width: calc(var(--container-width) - 30px);
    margin: 0 auto;
    position: relative;
}

.reception-video--new .reception-video-slider-wrapper {
    position: relative;
    overflow: visible;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
}

.reception-video--new .swiper-slide {
    height: 340px;
    display: block;
}

.reception-video--new .video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 4px;
}

.reception-video--new .video-placeholder::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    background: rgba(10,10,10,0.56);
    pointer-events: none;
}



/* .reception-video--new .video-placeholder:hover .video-play-button {
    transform: scale(1.01);
} */

.reception-video--new .swiper-button-prev,
.reception-video--new .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
    transition: all var(--transition);
    margin-top: 0;
}

.reception-video--new .reception-video-prev {
    left: 0;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
}

.reception-video--new .reception-video-next {
    right: 0;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
}

.reception-video--new .swiper-button-prev::after,
.reception-video--new .swiper-button-next::after {
    content: '';
}

.reception-video--new .swiper-button-prev:hover,
.reception-video--new .swiper-button-next:hover {
    opacity: 0.7;
}


/* ===== /RECEPTION VIDEO - new isolated styles ===== */

/* ===== PRICE LIST SECTION ===== */
.price-list-section {
    padding: 60px 0;
    background: var(--color-background-service);
}

.price-list-section .section-title {
    margin: 0;
}

.price-list__header {
    margin-bottom: 75px;
}

.price-tabs {
    display: flex;
    margin-bottom: 15px;
    background: var(--color-white);
}

.price-tab {
    background: var(--color-primary);
    border: none;
    padding: 26px 32px;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease;
    border-radius: 0;
    flex: 1;
    text-align: center;
	color: rgba(255, 255, 255, 0.52);
}

.price-tab:hover {
    background: var(--color-primary-hover);
}

.price-tab--active {
    background: var(--color-primary);
	color: var(--color-white);
}
/* 
.price-tab--active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
} */

.price-table-wrapper {
    position: relative;
    min-height: 400px;
}

.price-table-container {
    display: none;
}

.price-table-container--active {
    display: block;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.price-table__header {
    background: var(--color-p);
    color: var(--color-white);
    padding: 25px 30px;
    text-align: left;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
}

.price-table__header--price-title {
    background: var(--color-p);
    color: var(--color-white);
    font-weight: 600;
    font-size: 21px;
    text-align: center;
    padding: 20px 30px;
    letter-spacing: 0.5px;
}

.price-table__header--service-empty {
    background: var(--color-white);
    padding: 16px 30px;
}

.price-table__header--price {
    text-align: center;
    width: 200px;
}

.price-table__header--service {
    width: 300px;
    min-width: 250px;
    text-align: left;
}

.price-table__header--model {
    text-align: center;
    width: 180px;
    min-width: 160px;
    font-size: 17px;
    padding: 16px 12px;
    background: var(--color-white);
    color: var(--color-dark);
    font-weight: 700;
}

.price-table__row {
    background: var(--color-white);
}

.price-table__row:nth-child(even) {
    background: var(--color-background-service);
}

.price-table__row:hover {
    background: #e8f5e8 !important;
}

.price-table__row:nth-child(even):hover {
    background: #f0f0f0 !important;
}

.price-table__cell {
    padding: 20px 30px;
    vertical-align: top;
}

.price-table__service {
    font-size: 17px;
    color: var(--color-text);
	font-weight: 400;
}

.price-table__description {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 6px;
    font-style: italic;
}

.price-table__price {
    font-size: 17px;
    font-weight: 400;
    color: #000;
    text-align: center;
}

.price-table__empty {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 40px 30px;
}

.price-list__footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.price-list__button {
    padding: 18px 40px;
    font-size: 17px;
	max-width: 250px;
}

.price-list__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

/* Responsive */
@media (max-width: 1360px) {
    .reception-video--new .section-title {
        margin: 0 0 40px 0;
    }
    .main-page .reception-video--new .section-header {
        margin-top: 18px;
    }
    .main-page .price-list-section {
        padding: 40px 0;
    }
    .price-tab {
        font-size: 18px;
    }
    .price-table__header {
        font-size: 18px;
    }
    .price-table__service {
        font-size: 15px;
    }
    .price-table__price {
        font-size: 15px;
    }
}
@media (max-width: 1024px) {
    .price-tabs {
        flex-wrap: wrap;
    }
    
    .price-tab {
        flex: 1 1 50%;
        min-width: 0;
    }
    
    .price-table {
        font-size: 14px;
    }
    
    .price-table__header--model {
        font-size: 11px;
        padding: 12px 8px;
        width: 140px;
        min-width: 120px;
    }
    
    .price-table__header--service {
        width: 200px;
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .price-list-section {
        padding: 60px 0;
    }
    
    .price-tabs {
        flex-direction: column;
    }
    
    .price-tab {
        flex: none;
        padding: 16px 20px;
    }
    
    .price-tab:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .price-table__header,
    .price-table__cell {
        padding: 12px 8px;
    }
    
    .price-table__header {
        font-size: 12px;
    }
    
    .price-table__cell {
        font-size: 14px;
    }
    
    .price-table__header--model {
        font-size: 10px;
        padding: 10px 6px;
        width: 100px;
        min-width: 90px;
    }
    
    .price-table__header--service {
        width: 150px;
        min-width: 120px;
    }
    
    .price-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .price-table {
        min-width: 800px;
    }
}

@media (max-width: 480px) {
    .price-table__header,
    .price-table__cell {
        padding: 12px 16px;
    }
    
    .price-list__button {
        min-width: 250px;
        padding: 16px 32px;
    }
}
/* ===== /PRICE LIST SECTION ===== */

/* ===== SPECIALIST CENTER ===== */

.specialist-center__advantages {
    background: var(--color-white);
    padding: 70px 0;
}

.specialist-center__advantages.main-page {
    padding: 60px 0;
}

.advantages-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-check {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.advantage-text {
    font-size: 16px;
    color: var(--color-text);
    margin: 0;
    line-height: 1.5;
}

/* Картинка на всю ширину */
.specialist-center__fullwidth-image {
    width: 100%;
    overflow: hidden;
}

.specialist-center__fullwidth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.specialist-center__main {
    position: relative;
    padding: 60px 0;
}

.specialist-center__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.specialist-center__text {
    max-width: 600px;
}

.specialist-center__title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.specialist-center__title p {
    margin: 0;
}

.specialist-center__description {
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

.specialist-center__description p {
    margin: 0 0 20px 0;
}

.specialist-center__description p:last-child {
    margin: 0;
}

.specialist-center__button-area {
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
}

.specialist-center__button {
    padding: 27px 40px;
    font-size: 17px;
    min-width: 250px;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1360px) {
    .specialist-center__title {
        font-size: 36px;
    }
    .specialist-center__button-area {
        padding-top: 0px;
    }
    .specialist-center__main {
        padding: 40px 0;
    }
}
@media (max-width: 1024px) {
    .advantages-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .advantage-check {
        justify-content: flex-start;
        text-align: left;
    }
    
    .specialist-center__fullwidth-image {
        height: 300px;
    }
    
    .specialist-center__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .specialist-center__button-area {
        justify-content: flex-start;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .specialist-center__main {
        padding: 60px 0;
    }
    
    .specialist-center__title p {
        font-size: 32px;
    }
    
    .specialist-center__fullwidth-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .advantages-top {
        gap: 20px;
    }
    
    .advantage-check {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .specialist-center__title p {
        font-size: 24px;
    }
    
    .specialist-center__button {
        width: 100%;
        text-align: center;
        justify-self: stretch;
    }
    
    .specialist-center__button-area {
        width: 100%;
    }
    
    .specialist-center__fullwidth-image {
        height: 200px;
    }
}
/* ===== /SPECIALIST CENTER ===== */

/* ===== PRODUCT SLIDER ===== */
.product-slider-section {
    padding: 80px 0;
    background: var(--color-background);
}

.main-page .product-slider-section {
    padding: 60px 0;
}

.product-slider-section.news-product-section {
    background: var(--color-white);
    padding: unset;
    padding-bottom: 60px;
}

.product-slider-header {
    margin-bottom: 60px;
}
.service-detail-search {
    padding: 50px 0;
}
.service-detail-search .product-slider-section.news-product-section {
    background: var(--color-background);
}
.service-detail .news-section {
    padding: 0 0 50px 0px;
}
.service-detail .akcii-section {
    padding: 50px 0 0;
}

.product-slider-wrapper {
    position: relative;
    overflow: visible;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
}

.product-slider-wrapper .swiper {
    overflow: hidden;
    max-width: calc(var(--container-width) - 30px);
    margin: 0 auto;
    position: relative;
}

.product-card {
    background: var(--color-white);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.product-image {
    height: 371px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 50px;
    transition: transform var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--color-text-light);
    background: var(--color-background);
}

.product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-name {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-p);
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
    transition: color var(--transition);
}

.product-props {
    margin-bottom: 15px;
}

.product-prop {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
	gap: 10px;
}

.prop-label {
    color: #484F55;
    font-weight: 400;
}

.prop-value {
	color: #484F55;
	font-weight: 400;
}

.product-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    text-align: left;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
}

.product-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-cart {
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border: none;
    border-radius: var(--border-radius-small);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-cart:hover {
    background: var(--color-secondary);
    transform: scale(1.05);
}

.btn-cart img {
    transition: transform var(--transition);
}

.btn-cart:hover img {
    transform: scale(1.1);
}

.product-prev {
    position: absolute;
    top: 40%;
    left: 0px;
    width: 44px;
    height: 44px;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
    transition: all var(--transition);
}

.product-next {
    position: absolute;
    top: 40%;
    right: 0px;
    width: 44px;
    height: 44px;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transform: translateY(-50%);
    transition: all var(--transition);
}

.product-prev::after,
.product-next::after {
    content: '';
}

.product-prev:hover,
.product-next:hover {
    opacity: 0.7;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1360px) {
    .main-page .product-slider-section {
        padding: 40px 0;
    }
    .product-slider-header {
        margin-bottom: 40px;
    }
}
@media (max-width: 1024px) {
    .product-slider-section {
        padding: 60px 0;
    }
    
    .product-slider-header {
        margin-bottom: 40px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .product-slider-section {
        padding: 50px 0;
    }
    
    .product-content {
        padding: 15px;
    }
    
    .product-name {
        font-size: 15px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-prev,
    .product-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .product-content {
        padding: 12px;
    }
    
    .product-name {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .product-image {
        height: 140px;
    }
    
    .product-props {
        margin-bottom: 12px;
    }
    
    .product-price {
        margin-bottom: 12px;
    }
    
    .price-value {
        font-size: 16px;
    }
    
    .btn-cart {
        width: 40px;
        height: 40px;
    }
    
    .product-prev,
    .product-next {
        width: 32px;
        height: 32px;
    }
}

.product-slider-footer {
    text-align: center;
    padding-top: 50px;
}

.product-catalog-btn {
    background: var(--color-p);
    color: var(--color-white);
    padding: 29px 40px;
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    min-width: 210px;
}

.product-catalog-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-card:hover .product-name {
    color: var(--color-primary);
}
@media (max-width: 768px) {
    .product-slider-footer {
        padding-top: 40px;
    }
    
    .product-catalog-btn {
        padding: 16px 32px;
        font-size: 16px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .product-slider-footer {
        padding-top: 30px;
    }
    
    .product-catalog-btn {
        padding: 14px 28px;
        font-size: 15px;
        min-width: 160px;
    }
}

/* ===== /PRODUCT SLIDER ===== */


/* ===== OUR AUTOSERVICE SECTION ===== */
.home-our-service {
    padding: 60px 0;
    background: var(--color-white);
}

.home-our-service .section-title {
    margin-bottom: 105px;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: stretch;

}

.service-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left-photo {
    height: 490px;
    overflow: hidden;
}

.left-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.left-video {
    height: 490px;
    overflow: hidden;
}

.left-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition);
}



.play-button img {
    width: 36px;
    height: 36px;
}

.video-play-btn:hover .play-button {
    transform: scale(1.05);
}

.service-right {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: -160px;
    justify-content: space-between;
}

.right-photo {
    height: 792px;
    overflow: hidden;
}

.right-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-text {
    font-size: 18px;
    color: var(--color-text);
    font-weight: 400;
    margin: 0;
}

.service-cta-btn {
    display: inline-block;
    width: 250px;
    padding: 20px 25px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: background var(--transition);
    align-self: flex-start;
    margin-top: 102px;
    text-align: center;
    cursor: pointer;
}

.service-cta-btn:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 14px;
}

@media (max-width: 1580px) {
    .right-photo{
        height: 755px;
    }

}

@media (max-width: 1200px) {
	.home-our-service {
		padding: 100px 0;
	}
	.home-our-service .section-title {
		margin-bottom: 60px;
	}
	.service-content {
		gap: 12px;
	}
	.left-photo,
	.left-video {
		height: 380px;
	}
	.right-photo {
		height: 650px;
	}
	.service-right {
		margin-top: -140px;
		gap: 35px;
	}
	.service-cta-btn {
		margin-top: 60px;
	}
}

@media (max-width: 1145px) {
    .right-photo {
		height: 600px;
	}
}

@media (max-width: 900px) {
	.home-our-service {
		padding: 60px 0;
	}
	.home-our-service .section-title {
		margin-bottom: 40px;
	}
	.service-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.service-right {
		margin-top: 0;
		gap: 30px;
	}
	.left-photo,
	.left-video {
		height: 300px;
	}
	.right-photo {
		height: 400px;
	}
	.service-text {
		font-size: 16px;
	}
	.service-cta-btn {
		margin-top: 20px;
		width: 100%;
		max-width: 350px;
	}
}

@media (max-width: 600px) {
	.home-our-service {
		padding: 40px 0;
	}
	.home-our-service .section-title {
		margin-bottom: 30px;
	}
	.left-photo,
	.left-video {
		height: 220px;
	}
	.right-photo {
		height: 300px;
	}
	.service-info {
		gap: 15px;
	}
	.service-text {
		font-size: 15px;
	}
	.service-cta-btn {
		width: 100%;
		max-width: 100%;
		padding: 16px 20px;
		font-size: 16px;
		margin-top: 15px;
	}
	.play-button img {
		width: 28px;
		height: 28px;
	}
}

/* ===== /OUR AUTOSERVICE SECTION ===== */

/* ===== NEWS SLIDER SECTION ===== */
.news-section {
    padding: 80px 0;
    background: var(--color-background-service);
}

.main-page .news-section {
    padding: 60px 0;
}

.main-page .news-section .section-header {
    margin-top: 0
}

.news-slider-section {
    padding: 40px 0 40px 0;
}
.news-section.news-section-temp {
    background: unset;
}
.news-section-temp .news-slider-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 60px 10px;
}

.news-slider-wrapper {
    position: relative;
    overflow: visible;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
}

.news-slider-wrapper .swiper {
    overflow: hidden;
    max-width: calc(var(--container-width) - 30px);
    margin: 0 auto;
    position: relative;
}

.news-footer {
    display: flex;
    justify-content: center;
}

.news-all-button {
    padding: 25px 24px;
    max-width: 220px;
    min-width: 180px;
    opacity: 1;
    transform: none;
    height: 75px;
}

.news-slide {
    height: auto;
}

.news-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.news-card:hover {
    transform: translateY(-5px);
}
.news-card:hover .news-title {
    color: var(--color-primary);
}

.news-image {
    position: relative;
    padding-top: 70%;
    overflow: hidden;
}

.news-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

/* Обертка-ссылка для всей карточки */
.news-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    transform: translate(-50%, -50%);
    display: inline-block;
    padding: 22px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: all var(--transition);
    opacity: 0;
    z-index: 10;
    text-align: center;
}

.news-card:hover .news-btn-overlay {
    opacity: 1;
}

.news-card-link:hover .news-btn-overlay,
.news-btn-overlay:hover,
.news-btn-overlay:hover:link,
.news-btn-overlay:hover:visited {
    color: var(--color-white);
}

/* На мобильных: кнопка всегда видна снизу по центру */
@media (max-width: 1360px) {
    .main-page .news-section {
        padding: 40px 0;
    }
    .news-slider-section {
        padding: 20px 0 20px 0;
    }
}
@media (max-width: 900px) {
    .news-btn-overlay {
        opacity: 1;
        top: auto;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 140px;
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .news-overlay {
        opacity: 0.3;
    }
    
    .news-card-link:active .news-btn-overlay {
        background: var(--color-secondary);
    }
}

.news-content {
    margin-top: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-p);
    margin: 0 0 15px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 48px;
}

.news-text {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.news-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition);
    align-self: flex-start;
    opacity: 0;
    transform: translateY(10px);
}

.news-card:hover .news-btn {
    opacity: 1;
    transform: translateY(0);
    background: var(--color-primary-hover);
}

.news-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.news-prev {
    position: absolute;
    left: -50px;
    top: 40%;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.news-next {
    position: absolute;
    right: -50px;
    top: 40%;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}

.service-detail .news-next {
    right: -25px;
}

.news-prev::after,
.news-next::after {
    display: none;
}


.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 1700px) {
    .news-slider-wrapper {
        max-width: calc(100% - 100px);
        margin: 0 50px;
    }
    .akcii-slider-wrapper {
        max-width: calc(100% - 140px);
    }
    .reception-video--new .reception-video-slider-wrapper {
        max-width: calc(100% - 140px);
    }

    .main-slider-wrapper {
        max-width: calc(100% - 140px);
    }

    .video-slider-wrapper {
        max-width: calc(100% - 140px);
    }
    .product-slider-wrapper .swiper {
        max-width: calc(100% - 140px);

    }
    .certificate-company .certificate-slider-wrapper {
        max-width: calc(100% - 140px);

    }



    .news-section-temp .news-slider-wrapper {
        margin: 0;
        max-width: 100%
    }

    .news-prev {
        left: -50px;
    }
    .akcii-prev {
        left: -50px;
    }
    .reception-video--new .reception-video-prev {
        left: -50px;
    }
    .original-and-analogues .original-and-analogues-prev {
        left: 20px;
    }
    .original-and-analogues .original-and-analogues-next {
        right: 20px;
    }
    .akcii-next {
        right: -50px;
    }
    .reception-video--new .reception-video-next {
        right: -50px;
    }

    .main-slider-prev,
    .service-transparency-main-prev {
        left: -50px;
    }
    .service-transparency-prev {
        left: -50px;
    }

    .main-slider-next,
    .service-transparency-main-next {
        right: -50px;
    }
    .service-transparency-next {
        right: -50px;
    }

    .video-gallery-next {
        right: -60px;
    }
    .video-gallery-prev {
        left: -60px;
    }
    .news-next {
        right: -50px;
    }
    .certificate-company .certificate-next {
        right: -50px;
    }
    .certificate-company .certificate-prev {
        left: -50px;
    }
    .articles-carousel-wrapper .articles-carousel-prev {
        left: -50px;
    }
    .articles-carousel-wrapper .articles-carousel-next {
        right: -50px;
    }
}

/* Responsive */
@media (max-width: 1600px) {
    .news-slider-wrapper {
        max-width: calc(100% - 100px);
        margin: 0 50px;
    }
    .akcii-slider-wrapper {
         max-width: calc(100% - 140px);
    }
    .reception-video--new .reception-video-slider-wrapper {
         max-width: calc(100% - 140px);
    }

    .main-slider-wrapper {
        max-width: calc(100% - 140px);
    }

    .video-slider-wrapper {
         max-width: calc(100% - 140px);
    }
    .product-slider-wrapper .swiper {
        max-width: calc(100% - 140px);

    }
    .certificate-company .certificate-slider-wrapper {
        max-width: calc(100% - 140px);

    }



    .news-section-temp .news-slider-wrapper {
        margin: 0;
        max-width: 100%
    }
    
    .news-prev {
        left: -50px;
    }
    .akcii-prev {
        left: -50px;
    }
    .reception-video--new .reception-video-prev {
        left: -50px;
    }

    .akcii-next {
        right: -50px;
    }
    .reception-video--new .reception-video-next {
        right: -50px;
    }

    .main-slider-prev,
    .service-transparency-main-prev {
        left: -50px;
    }
    .service-transparency-prev {
        left: -50px;
    }

    .main-slider-next,
    .service-transparency-main-next {
        right: -50px;
    }
    .service-transparency-next {
        right: -50px;
    }

    .video-gallery-next {
        right: -60px;
    }
    .video-gallery-prev {
        left: -60px;
    }
    .news-next {
        right: -50px;
    }
    .certificate-company .certificate-next {
        right: -50px;
    }
    .certificate-company .certificate-prev {
        left: -50px;  
    }
    .articles-carousel-wrapper .articles-carousel-prev {
        left: -50px;
    }
    .articles-carousel-wrapper .articles-carousel-next {
        right: -50px;
    }
}

@media (max-width: 1024px) {
    .news-section-temp.news-slider-section {
        padding: 30px 0 60px 0;
    }
    
    .news-slider-section {
        padding: 60px 0 80px 0;
    }
    .news-section-temp .news-slider-wrapper {
        grid-template-columns: repeat(3,1fr);
        gap: 40px 10px;
    }
    
}

@media (max-width: 768px) {
    .news-section-temp .news-slider-wrapper {
        grid-template-columns: repeat(2,1fr);
    } 
    
    
    .news-title {
        font-size: 18px;
        min-height: 40px;
    }
    
    .news-text {
        font-size: 13px;
    }
    
    .news-btn {
        opacity: 1;
        transform: translateY(0);
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .news-slider-section {
        padding: 40px 0 60px 0;
    }
    
    .news-btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}
@media (max-width: 480px) {
    .news-section-temp .news-slider-wrapper {
        grid-template-columns: 1fr;
    } 
}

/* ===== /NEWS SLIDER SECTION ===== */

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 60px 0;
}
.faq-section.faq-section-info-lr {
    padding: 40px 0;
}
.service-info-section + .where-find {
    padding-top: 35px;
}

.faq-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
}
.faq-content.full {
    grid-template-columns: 1fr;
}


.faq-left {
    width: 100%;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-list-detail {
    gap: 15px;
}

.faq-item {
    background: var(--color-white);
    transition: all var(--transition);
}
.faq-item.active .faq-question, .faq-item .faq-question:hover  {
    background: var(--color-p);
}
.faq-item.active .faq-question .faq-question-text , .faq-item .faq-question:hover .faq-question-text {
    color: var(--color-white);
}


.faq-question {
    padding: 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-background-service);
    transition: all var(--transition);
}

.faq-question-text {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    padding-right: 20px;
}

.faq-list-detail .faq-question-text {
    font-size: 16px;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
}

.faq-icon svg {
    width: 24px;
    height: 24px;
    transition: transform var(--transition);
    transform: rotate(0deg);
}

.faq-item:hover .faq-icon {
    color: var(--color-white);
}

.faq-item.active .faq-icon {
    color: var(--color-white);
}

.faq-item.active .faq-icon svg {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.faq-answer-content {
    padding: 20px 24px 24px 24px;
    font-size: 17px;
    color: var(--color-p);
}

.faq-right {
    position: sticky;
    top: 100px;
}

.faq-info-block {
    background: var(--color-primary);
    padding: 84px 87px 52px 78px;
    color: var(--color-white);
    /* max-height: 600px; */
    overflow-y: auto;
    overflow-x: hidden;
    position: relative; 
}

.faq-info-block::after {
    /* content: ""; */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.04) 20%, var(--color-primary) 100%);
    pointer-events: none; /* keep controls clickable under the overlay */
    z-index: 2;
    transition: opacity 160ms ease, visibility 160ms ease;
}

.faq-info-block-inner {
    /* padding-bottom: 52px;  */
    position: relative;
    z-index: 1;
}

.faq-info-block.overlay-hidden::after {
    opacity: 0;
    visibility: hidden;
}

.faq-info-block h2,
.faq-info-block h3 {
    color: var(--color-white);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.faq-info-block h3 {
    font-size: 20px;
    margin-top: 25px;
}

.faq-info-block p {
    font-size: 17px;
    margin-bottom: 16px;
    color: var(--color-white);
}

.faq-info-block p:last-child {
    margin-bottom: 0;
}

.faq-info-block::-webkit-scrollbar {
    width: 6px;
}

.faq-info-block::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.faq-info-block::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: background var(--transition);
}

.faq-info-block::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.faq-info-block {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

/* ===== /FAQ SECTION ===== */

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: 60px 0;
}

.reviews-header {
    margin-bottom: 16px;
}

.reviews-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
     margin-bottom: 50px;
}


.reviews-sort {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
}

.custom-select {
    position: relative;
    min-width: 160px;
    font-size: 14px;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    cursor: pointer;
    transition: all var(--transition);
    min-height: 40px;
}

.custom-select-trigger:hover {
    border-color: var(--color-primary);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--color-primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-select-value {
    color: var(--color-text);
    font-weight: 500;
}

.custom-select-arrow {
    margin-left: 10px;
    transition: transform var(--transition);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-primary);
    border-top: none;
    border-radius: 0 0 var(--border-radius-small) var(--border-radius-small);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all var(--transition);
}

.custom-select.open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 10px 16px;
    cursor: pointer;
    transition: background var(--transition);
    color: var(--color-text);
    position: relative;
}

.custom-select-option:hover {
    background: var(--color-background);
}

.custom-select-option.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.custom-select-option.active:hover {
    background: var(--color-primary-hover);
}



@media (max-width: 1360px) {
    .faq-info-block h2, .faq-info-block h3 {
        font-size: 28px;
    }
    .faq-info-block p {
        font-size: 16px;
    }
    .faq-title {
        font-size: 36px;
    }
    .faq-question-text {
        font-size: 19px;
    }
    .faq-answer-content {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .custom-select {
        min-width: 140px;
    }
    
    .custom-select-trigger {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .custom-select-option {
        padding: 8px 12px;
        font-size: 13px;
    }
}

.reviews-stats-row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.reviews-meta-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.reviews-stars {
    display: flex;
    gap: 6px;
}

.reviews-stars .star {
    font-size: 26px;
    color: #FFCC00;
    line-height: 1;
}

.reviews-count-large {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

/* pills */
.reviews-categories-pills .pill-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}

.reviews-categories-pills .pill {
    background: var(--color-background-service);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
}

.pill-top {
    display: flex;
    align-items: center;
    gap: 3px;
}

.pill-label {
    font-size: 14px;
    color: #222;
    font-weight: 600;
}

.pill-top .pill-label::after {
    content: '•';
    display: inline-block;
    margin-left: 2px;
    color: #000;
    font-size: 15px;
    vertical-align: middle;
}

.pill-percent {
    font-size: 14px;
    color: #3BB300;
    font-weight: 700;
}

.pill-small {
    font-size: 12px;
    color: #9aa0a6;
}

.pill-icon {
    color: #3BB300;
}

.reviews-list {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.review-card {
    padding: 18px 0;
}

.review-card:last-child {
    border-bottom: none;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.avatar-placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b6b;
}

.review-content {
    flex: 1;
    min-width: 0;
}

.review-author {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px;
}

.review-city {
    font-size: 13px;
    color: #9aa0a6;
    display: block;
    margin-bottom: 6px;
}

.review-header {
    display: flex;
    gap: 12px;
}

.review-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.review-rating {
    display: flex;
    gap: 6px;
    align-items: center;
}

.review-rating .star svg,
.reviews-stars .star svg {
    display: block;
}

.review-rating .star {
    line-height: 1;
}

/* filled vs unfilled stars */
.star.filled svg { color: #FFCC00; }
.star:not(.filled) svg { color: rgba(255, 204, 0, 0.4); }

.review-date {
    font-size: 13px;
    color: #999;
}

.review-text {
    margin-top: 10px;
}

.review-text-content {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    max-height: 50px;
    overflow: hidden;
}

.review-expand-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 2px 0;
}

.reviews-footer {
    text-align: center;
}

.reviews-leave-btn {
    background-color: var(--color-p);
    padding: 25px 60px;
    font-size: 17px;
}
/* ===== REVIEWS SECTION ===== */

/* ===== where-find ===== */
.where-find {
    padding-top: 140px;
    position: relative;
}

@media (max-width: 1360px) {
    .where-find {
        padding-top: 40px;
    }
}
@media (min-width: 1025px) {
    .original-and-analogues.original-and-analogues--simple.fix-divider-section + .where-find {
        padding-top: 30px;
    }
}
.where-find .section-title {
    margin: 0 0 88px 0;
}


.where-find__inner {
    position: relative;
}

/* карта во всю ширину экрана */
.where-find__map {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.where-find__map .map-wrapper {
    position: relative;
    height: 844px;
}

.where-find__map iframe {
    width: 100%;
    height: 844px;
    border: 0;
    display: block;
}

.where-find__panel {
    position: absolute;
    right: 150px;
    top: -178px;
    width: 790px;
    background: var(--color-background-service);
    padding: 90px 113px 127px 90px;
    z-index: 3;
}

@media (max-width: 1360px) {
    .where-find__panel {
        width: 680px;
        padding: 60px 80px 90px 60px;
    }
    .where-find__panel h3 {
        font-size: 24px;
        margin: 0 0 50px;
    }
    .where-find__contact-item {
        gap: 14px;
        margin-bottom: 20px;
    }
    .where-find__value,
    .where-find__social-row span {
        font-size: 15px;
    }
    .where-find__call-btn {
        margin-top: 20px;
    }
}

.where-find__panel h3 {
    margin: 0 0 86px;
    font-size: 30px;
    text-align: left;
    color: var(--color-dark);
}
.contact-item-bottom {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 30px;
}

.contact-item-bottom span {
    margin-right: auto;
    font-size: 17px;
    font-weight: 700;
}

.contact-item-bottom__socials {
    display: flex;
    gap: 10px;
}

.vk-link{
    color:#0077FF!important;
}

.vk-link:hover{
    color:#0059C9!important;
}

.icon-youtube {
    color: var(--color-youtube);
}



.icon-youtube:hover {
    color: var(--color-youtube-hover);
}

.contact-item-bottom .telegram-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}
.contact-item.contact-item--work + .contact-item-bottom{
    margin-bottom: 44px;
}
.contact-item.contact-item--work + .contact-item-bottom .telegram-link{
    gap: 20px;
}
.contact-page .contact-item.contact-item--work{

}
.contact-item-bottom .telegram-link p {
    margin: 0;
    color: var(--color-p);
    text-decoration: underline;
}
.contact-item-bottom .telegram-link p:hover{
    color: var(--color-primary);
}
.where-find__contact-item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 30px;
}

.where-find__icon {
	width: 24px;
	height: 24px;
	flex: 0 0 36px;
}

.where-find__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.where-find__label {
    display: block;
    font-weight: 700;
    margin-bottom: 11px;
    color: var(--color-dark);
}
.where-find__socials {
    display: flex;
    flex-direction: column;
    gap : 7px;
}

.footer-social {
    margin-top: 20px;
}

.footer-social .contact-item-bottom {
    margin-top: 15px
}

.where-find__social-row {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 190px;
}

.where-find__social-row span {
    margin-right:auto;
    font-size: 17px;
    font-weight: 700;
}

.where-find__social-row a {
    max-height: 24px;
}

.where-find__value {
    color: var(--color-dark);
    font-size: 17px;
}

.where-find__call-btn {
    max-width: 250px;
    margin-top: 30px;

}

.socials-contact-wrapper {
    margin-bottom: 44px;
}

.socials-contact-wrapper .contact-item-bottom {
    margin-top: 15px;
}

.contact-value {
    color: var(--color-dark);
}

/* ===== where-find ===== */

/* ===== FOOTER STYLES (begin) ===== */
.site-footer {
    padding: 67px 0 30px 0;
    color: var(--color-p);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 0.6fr 0.6fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    justify-content: space-between;
}
.footer-col {
    min-width: 0;
}
.footer-col--logo {
    grid-column: 1 / 2;
}
.footer-logo {
    max-width: 280px;
    display: block;
    margin-bottom: 31px;
}
.footer-copy {
    font-size: 17px;
    color: var(--color-dark);
    max-width: 312px;
}
.footer-col h4 {
    font-size: 21px;
    margin: 0 0 15px 0;
    color: var(--color-p);
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin: 6px 0;
}
.footer-col a {
    color: var(--color-p);
    font-size: 17px;
}

.footer-col a:hover {
    color: var(--color-primary);
}
.footer-col--contacts {
    grid-column: 5 / 6; /* place contacts in the last column */
    text-align: left;
}
.contact-item {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 12px;
}
.contact-item__socials {
    margin-top: 10px;
    display: flex;
    gap: 16px;
    align-items: center;
}
.contact-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 3px;
}
.contact-label {
    font-size: 17px;
    color: var(--color-dark);
    margin-bottom: 11px;
    font-weight: 700;
}
.footer-col .contact-value {
    display: block;
    color: var(--color-dark);
    font-weight: 400;
    text-decoration: none;
}

.footer-col .whatsapp-link {
    color: var(--color-whatsapp);
}

.footer-col .telegram-link {
    color: var(--color-telegram);
}
.footer-col .whatsapp-link:hover {
    color: var(--color-whatsapp-hover);
}

.footer-col .telegram-link:hover {
    color: var(--color-telegram-hover);
}

.contact-value:hover { color: var(--color-primary); }

.socials {
    margin-top: 27px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon { display:inline-block; vertical-align:middle; }

.footer-bottom { margin-top: 76px; text-align:center; }

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    max-width: 1302px;
    justify-content: space-between;
    margin: 0 auto;
}

.personal-menu__link-link {
    color: var(--color-p);
}

.footer-links a { color: var(--color-text); font-size:14px; text-decoration:underline; }
.footer-links a:hover { color: var(--color-primary); }

/* Responsive: switch to grid with fewer columns and then single column */
@media (max-width: 1200px) {
    .footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .footer-col--logo { grid-column: 1 / 2; }
    .footer-col--contacts { grid-column: 3 / 4; }
}
@media (max-width: 900px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap:20px; }
    .footer-col--logo { grid-column: 1 / -1; }
    .footer-col--contacts { grid-column: 2 / 3; }
    .footer-copy { max-width: 100%; }
    .footer-links { gap:20px; }
}
@media (max-width: 480px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-col { grid-column: auto; }
    .footer-col h4 { font-size:16px; }
    .footer-copy { font-size:13px; }
    .socials { justify-content: flex-start; gap:12px; }
    .footer-links { flex-direction: column; gap:12px; }
}
/* ===== FOOTER STYLES (end) ===== */

/* ===== PERSONAL ACCOUNT STYLES  ===== */



.personal-grid { 
    display: grid; 
    grid-template-columns: 335px 1fr; 
    gap: 15px; 
    align-items: start; 
    padding-bottom: 150px;
}



.personal-content { 
    background: var(--color-background-advantages); 
    padding:56px 68px 63px 47px; 
}

.personal-card { 
    background: transparent; 
}

.personal-card__title { 
    font-size: 20px; 
    font-weight: 700; 
    margin: 0 0 35px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    color: var(--color-dark); 
}

.personal-form { 
    max-width: 100%; 
}
.address-remove.address-remove--icon {
    top: 19px !important;
    right: 10px !important;   
}

.personal-form .form-row { 
    display: flex; 
    gap: 40px; 
    margin-bottom: 24px; 
}

.personal-form .form-col { 
    flex: 1; 
}

.personal-form .form-col-full { 
    flex: 1 1 100%; 
}



.personal-form .input { 
    width: 100%; 
    padding: 20px 30px; 
    color: var(--color-dark); 
    border: none;
    font-size: 17px; 
}

.personal-form .input:focus { 
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(10, 184, 54, 0.25);
}

.personal-form .input::placeholder { 
    color: var(--color-p); 
}

.personal-form .phone-note {
    margin-top: 21px;
    font-size: 14px;
    color: var(--color-p);
    padding-left: 20px;
}
.personal-form .field-error {
    margin-top: 6px;
    font-size: 13px;
    color: #dc3545;
}
.personal-form .input.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.06);
}

.address-row {
    transition: opacity 200ms ease, transform 200ms ease;
}

.address-remove--icon svg {
    width: 10px;
    height: 10px;
    display: block;
    transition: transform 160ms ease;
}

.address-remove--icon:hover svg {
    transform: rotate(18deg);
}

.section-header { 
    display: flex; 
    align-items: flex-end; 
    justify-content: space-between; 
    margin-top: 38px;
}

.price-list-section .price-list__header {
    margin-bottom: 60px;
}

@media (max-width: 1360px) {
    .price-list-section .price-list__header {
        margin-bottom: 40px;
    }
}
.price-list-section .section-header {
    margin-top: 0;
}

.main-page .akcii-section .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.wrapper-banner-long.main-page  {
    margin-bottom: 10px;
}

.personal-card__title.last-title {
    margin-top: 37px;
}
.services-lr .section-header {
    margin-top: unset;
}

.section-subtitle { 
    font-size: 16px; 
    font-weight: 600; 
    margin: 0; 
    color: #333; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}

.add-address-btn { 
    background: var(--color-p);
    color: var(--color-white);
    padding: 20px 40px;
    font-size: 17px;
     border: none; 
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition);
    cursor: pointer;
    width: 583px;
    text-align: left;
    margin-bottom: 16px;
}

.add-address-btn:hover { 
    background: var(--color-primary); 
}

.btn-personal-data {
    width: 226px;
    text-align: center;
    font-size: 17px;
    margin-top: 50px;
}

.personal-note { 
    font-size: 14px; 
    color: var(--color-p); 
    margin-top: 29px; 
}

.personal-note a { 
    color: #09882F; 
    text-decoration: underline; 
}


.icon--small { 
    width: 20px; 
    height: 20px; 
}

@media (max-width: 1024px) {
    .personal-grid { 
        display: flex;
        flex-direction: column-reverse;
        gap: 16px; 
        padding-bottom: 80px;
    }
    
    .personal-sidebar { 
        order: 2; 
        width: 100%;
    }
    
    .personal-content { 
        order: 1; 
        padding: 40px 32px; 
        width: 100%;
    }
    
    .personal-form .form-row { 
        flex-direction: column; 
        gap: 16px; 
    }
    
    .add-address-btn { 
        width: 100%; 
        text-align: center; 
        margin-top: 12px;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .personal-card__title {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .personal-form .input {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .btn-personal-data {
        width: 100%;
        max-width: 320px;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .personal-content { 
        padding: 32px 24px; 
    }
    
    .personal-card__title {
        font-size: 17px;
    }
    
    .personal-form .form-row {
        margin-bottom: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 32px;
    }
    
    .add-address-btn {
        padding: 14px 24px;
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .personal-form .phone-note {
        margin-top: 12px;
        font-size: 13px;
        padding-left: 12px;
    }
    
    .personal-note {
        font-size: 13px;
        margin-top: 20px;
    }
    
    .icon--small {
        width: 18px;
        height: 18px;
    }

    .pill-top {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {
    .personal-grid {
        padding-bottom: 60px;
    }
    
    .personal-content {
        padding: 24px 16px;
    }
    
    .personal-card__title {
        font-size: 16px;
        margin-bottom: 20px;
        gap: 6px;
    }
    
    .personal-form .input {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .personal-form .form-row {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .section-header {
        margin-top: 24px;
        gap: 12px;
    }
    
    .add-address-btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .personal-card__title.last-title {
        margin-top: 24px;
    }
    
    .btn-personal-data {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        margin-top: 24px;
    }
    
    .personal-note {
        font-size: 12px;
        line-height: 1.5;
        margin-top: 16px;
    }
    
    .personal-form .phone-note {
        font-size: 12px;
        padding-left: 8px;
        margin-top: 8px;
    }
    
    .icon--small {
        width: 16px;
        height: 16px;
    }
    
    .address-remove--icon {
        top: 14px !important;
        right: 8px !important;
        padding: 4px;
    }
    
    .address-remove--icon svg {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 375px) {
    .personal-content {
        padding: 20px 12px;
    }
    
    .personal-card__title {
        font-size: 15px;
    }
    
    .personal-form .input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .add-address-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .btn-personal-data {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .personal-note {
        font-size: 11px;
    }
}
/* ===== PERSONAL ACCOUNT STYLES  ===== */

/* ===== SERVICE SECTION ===== */
.service-section {
	padding-bottom: 150px;
}
.service-header {
	margin-bottom: 60px;
}
.service-grid-wrapper {
	position: relative;
	max-width: var(--container-width);
	margin: 0 auto;
	/* padding: 0 15px; */
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
	flex-wrap: wrap;
	gap: 30px;
}

.akcii .service-grid {
    grid-template-columns: repeat(3, 1fr);
}


.service-grid .service-card {
	position: relative;
	height: 518px;
	overflow: hidden;
	cursor: pointer;
	transition: transform var(--transition);
	flex: 1 1 calc(25% - 22.5px); 
	min-width: 280px;
}
.service-grid .service-card:hover {
	transform: translateY(-5px);
}
.card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition);
}
.service-card:hover .card-image img {
	transform: scale(1.05);
}
.card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}
.card-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 25px;
	color: var(--color-white);
	z-index: 2;
	transition: transform var(--transition);
}
.card-content--top {
    top: 0;
    bottom: unset;
} 
.service-card:hover .card-content {
    transform: translateY(-110px);
}
.service-card:hover .card-content--top {
    transform: translateY(0);
}
.service-card .card-title {
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 20px 0;
}

.service-card .card-description {
	font-size: 16px;
	line-height: 1.4;
	margin: 0 0 20px 0;
	opacity: 0.9;
}
.service-card .card-button {
	position: absolute;
	bottom: -60px; 
	left: 30px;
	right: 30px; 
	width: auto;
	max-width: none;
	opacity: 0;
	transition: all var(--transition);
	padding: 25px 24px;
}
.service-card .card-content--top .card-button {
    bottom: -90px;
}
.service-card:hover .card-button {
	opacity: 1;
	bottom: -55px;
}

/* Обертка-ссылка для полной кликабельности карточки */
.service-card-link {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	color: inherit;
}




@media (max-width: 1400px) {

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .akcii .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* На мобильных делаем всю карточку кликабельной */
@media (max-width: 900px) {
	.service-card {
        grid-template-columns: repeat(3, 1fr);
	}
	
	.service-card .card-content {
		transform: none !important;
	}
	
	.service-card .card-button {
		display: none;
	}
	
	.service-card-link:active .card-image img {
		transform: scale(1.05);
	}

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .akcii .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }

}

.service-footer {
	display: flex;
	justify-content: center;
	margin-top: 53px;
}
.service-all-button {
	padding: 25px 24px;
	max-width: 220px;
	min-width: 180px;
	opacity: 1;
	transform: none;
    height: 75px;
}

/* Адаптивность */
@media (max-width: 1200px) {
	.service-card {
		flex: 1 1 calc(33.333% - 20px); 
	}
}

@media (max-width: 900px) {
    .service-card .card-title {
        font-size: 24px;
    }
    
	.service-card {
		flex: 1 1 calc(50% - 15px);
	}
	.service-grid {
		gap: 20px;
	}
    .service-grid .service-card {
        height: 300px;
    }
    .service-section {
        padding-bottom: 30px;
    }
}

@media (max-width: 620px) {
    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 600px) {
	.service-card {
		flex: 1 1 100%;
		min-width: 100%;
	}
	.service-grid {
		gap: 15px;
	}
    .where-find__panel {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    } 
}
/* ===== SERVICE SECTION ===== */

/* ================= personal-service styles ================= */

.personal-service {
    padding: 0 0 80px;
    position: relative;
}

.personal-service .service-card {
    display: flex;
    gap: 20px;
    background: var(--color-white);
    padding: 20px 62px 20px 30px;
    border-radius: var(--border-radius);
    align-items: center;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.personal-service .section-subtitle {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-p);
    margin-bottom: 15px

}
.personal-service .section-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 34px;
    color: var(--color-dark)
}

.section-title svg,
.section-subtitle svg {
    margin-right: 20px;
    vertical-align: middle;
    display: inline-block;
}

.service-card__image {
    width: 211px;
    height: 190px;
    object-fit: cover;
    border-radius: 6px;
}

.service-card__center {
    flex: 1;
    padding-bottom: 40px;
    padding-left: 20px;
}

.service-car-title {
    margin: 0 0 6px;
    font-size: 21px;
    color: var(--color-p);
    font-weight: 700;
}

.car-meta {
    color: var(--color-p);
    font-size: 17px;
    display: flex;
    gap: 18px;
}

.car-meta.small {
    margin-top: 8px;
}

.car-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 24px;
    color: var(--color-p);
    font-size: 17px;
}

.car-meta-grid .car-meta-col {
    margin-bottom: 8px;
}


@media (max-width: 768px) {
    .car-meta-grid {
        grid-template-columns: 1fr;
    }
}

.service-card__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.service-action {
    min-width: 140px;
}

.service-edit {
    color: var(--color-p);
    font-size: 17px;
    margin-top: 6px;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0,0,0,0.15);
    padding-bottom: 6px;
    cursor: pointer;
}

.service-card__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.service-delete {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
    color: var(--color-p);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-delete:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.service-delete .icon--close {
    fill: currentColor;
}


.delete-confirmation {
    text-align: center;
    padding: 20px 0;
}

.delete-icon {
    margin-bottom: 20px;
}

.delete-message {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.4;
}

.delete-message strong {
    color: var(--color-p);
    font-weight: 600;
}

.delete-warning {
    font-size: 14px;
    color: var(--color-p);
    line-height: 1.4;
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}



.btn-danger {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    border-color: #bd2130;
}

.personal-service__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.personal-service__title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.personal-service__title .icon {
    fill: var(--color-text);
}

.personal-service__title .section-title {
    margin: 0;
}

.personal-service__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.personal-service .btn.btn-green {
    position: static;
}

.service-card__right .btn.btn-orange {
    background: #4a4f54 !important;
    border-color: #4a4f54 !important;
    color: #fff !important;
}

.service-card__right .btn.btn-orange:hover {
    background: var(--color-primary) !important;
}

.service-booking {
    margin-top: 18px;
}

.booking-row {
    display: flex;
    gap: 24px;
    align-items: center;
    color: var(--color-p);
}

.booking-row .booking-status {
    margin-left: auto;
    color: var(--color-dark);
    font-size: 17px;
}

.status {
    font-weight: 400;
}

.status--planned {
    color: var(--color-secondary);
}

.status--done {
    color: var(--color-whatsapp);
}

.service-history {
    margin-top: 38px;
}

.history-card {
    background: var(--color-white);
    padding: 22px 28px;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    position: relative;
}

.history-card + .history-card {
    margin-top: 32px;
}

.history-entry {
    padding-top: 100px;
    padding-bottom: 80px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.history-left {
    width: 160px;
    color: var(--color-p);
    font-size: 13px;
}

.history-left .history-date {
    color: var(--color-p);
    font-weight: 700;
    font-size: 17px;
}

.history-info {
    width: 260px;
    color: var(--color-p);
}

.history-car {
    font-weight: 700;
    color: var(--color-p);
    margin: 0 0 6px;
    font-size: 21px;
}

.history-meta {
    color: var(--color-p);
    font-size: 17px;
}

.history-services {
    flex: 1;
}

.history-lists {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.history-list {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-text);
    margin: 0;
    font-size: 17px;
}

.history-list li::marker {
    font-size: 10px;
    color: rgba(0,0,0,0.6);
}

.history-card__status {
    position: absolute;
    top: 46px;
    right: 53px;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 400;
    display: inline-block;
}

.history-card__status .status {
    font-weight: 400;
    color: var(--color-primary);
}

.history-products {
    margin-top: 18px;
}
.history-products h4 {
    margin: 0 0 30px;
    font-size: 21px;
    color: var(--color-p);
    font-weight: 700;
}

.products-grid {
    display: flex;
    gap: 20px;
}

.products-grid .product-card {
    width: 207px;
    background: var(--color-white);
    padding: 14px;
    border-radius: 6px;
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
    text-align: left;
    border: 1px solid rgba(0,0,0,0.04);
}

.products-grid .product-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.products-grid .product-card--link:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.products-grid .product-card--link:hover .product-title {
    color: var(--color-primary);
}

.products-grid .product-card img {
    width: 100%;
    height: 130px;
    object-fit: contain;
}

.products-grid .product-title {
    font-size: 17px;
    margin-top: 10px;
    color: var(--color-p);
    line-height: 1.25;
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card__right {
        width: 100%;
        align-items: center;
    }

    .personal-service .btn.btn-green {
        position: static;
        margin-left: auto;
    }

    .booking-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .personal-service__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .history-entry {
        flex-direction: column;
    }

    .history-left {
        width: 100%;
    }

    .history-card__status {
        position: static;
        width: 100%;
        text-align: left;
        margin: 12px 0;
        background: transparent;
        padding: 0;
    }

    
}

/* ================= responsive enhancements for personal-service ================= */

/* Desktop to tablet (1500px - 1024px) */
@media (max-width: 1500px) {
    .personal-service .service-card {
        padding: 20px 40px 20px 24px;
        gap: 16px;
    }

    .service-card__image {
        width: 180px;
        height: 160px;
    }

    .service-card__center {
        padding-left: 16px;
        padding-bottom: 30px;
    }

    .service-car-title {
        font-size: 20px;
    }

    .car-meta-grid {
        gap: 4px 20px;
        font-size: 16px;
    }

    .service-card__right {
        gap: 8px;
    }

    .service-action {
        min-width: 120px;
        padding: 18px 24px;
        font-size: 16px;
    }

    .service-edit {
        font-size: 15px;
        padding-bottom: 4px;
    }

    .booking-row {
        gap: 20px;
        font-size: 16px;
    }

    .personal-service .section-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .history-card {
        padding: 20px 24px;
    }

    .history-entry {
        padding-top: 70px;
        padding-bottom: 30px;
        gap: 24px;
    }

    .history-left {
        width: 140px;
    }

    .history-left .history-date {
        font-size: 16px;
    }

    .history-info {
        width: 220px;
    }

    .history-car {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .history-meta {
        font-size: 16px;
    }

    .history-lists {
        gap: 36px;
    }

    .history-list {
        font-size: 16px;
    }

    .history-products h4 {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .products-grid {
        gap: 16px;
        flex-wrap: wrap;
    }

    .products-grid .product-card {
        width: 180px;
        padding: 12px;
    }

    .products-grid .product-card img {
        height: 110px;
    }

    .products-grid .product-title {
        font-size: 16px;
    }

    .history-card__status {
        top: 40px;
        right: 40px;
    }

    .personal-service__header {
        margin-bottom: 18px;
    }

    .personal-service__title .section-title {
        font-size: 20px;
    }

    .personal-service__actions .btn-green {
        padding: 18px 28px;
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .advantages-lr .adv-item {
        max-width: 285px;
    }
    .advantages-lr .adv-item:nth-child(2) {
        max-width: 300px;
    }
    .advantages-lr .adv-item:nth-child(1)  {
         min-width: 250px;
    }
}
@media (max-width: 1280px) {
    .personal-service .service-card {
        padding: 18px 32px 18px 20px;
    }
    .advantages-row__inner{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 60px;
    }
    .news-section {
        padding: 40px 0;
    }
    .adv-item {
        max-width: 100%;
    }
    .news-slider-section {
        padding: 20px 0;
    }

    .service-card__image {
        width: 160px;
        height: 145px;
    }

    .service-card__center {
        padding-left: 12px;
    }

    .car-meta-grid {
        gap: 4px 16px;
        font-size: 15px;
    }


    .history-left {
        width: 120px;
    }

    .history-info {
        width: 200px;
    }

    .history-lists {
        gap: 28px;
    }

    .history-list {
        font-size: 15px;
    }

    .products-grid .product-card {
        width: 160px;
    }

    .products-grid .product-card img {
        height: 100px;
    }

    .products-grid .product-title {
        font-size: 15px;
    }
    .specialist-name {
        min-height: 56px;
    }
}
@media (max-width: 1200px) {
    .personal-service-page .personal-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        padding-bottom: 80px;
    }
    .personal-service-page .personal-sidebar {
        order: 2;
        width: 100%;
    }
}

/* Tablet landscape (1024px) */
@media (max-width: 1024px) {
    .personal-service {
        padding: 32px;
    }
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .history-lists {
        flex-direction: column;
        gap: 12px;
    }

    .personal-service .section-title {
        font-size: 24px;
    }
    .advantage-swiper {
        height: 500px;
    }

    .service-card__image {
        width: 180px;
    }

    .service-card__center {
        padding: 0 24px;
    }

    .booking-row {
        padding: 20px 0;
    }


    .history-entry__header h3 {
        font-size: 18px;
    }

    .history-entry__info {
        font-size: 15px;
    }
}


@media (max-width: 768px) {
    .history-entry {
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 24px;
    }
    .faq-info-block h2, .faq-info-block h3 {
        font-size: 25px;
    }
    .faq-info-block {
        padding: 53px 6px 52px 38px;
    }
}
@media (max-width: 700px) {
     .advantages-row__inner{ 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .personal-service {
        padding: 20px 16px;
    }

    .personal-service .section-title {
        font-size: 18px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .service-card__image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 16px;
    }
    

    .service-card__center h2 {
        font-size: 17px;
    }
     .reviews-categories-pills .pill-list {
        display: grid;
        grid-template-columns: repeat(2,1fr);
     }

    .car-meta-grid {
        gap: 10px;
    }

    .car-meta-item {
        font-size: 14px;
    }

    .car-meta-item strong {
        font-size: 14px;
    }

    .booking-row {
        padding: 12px 0;
        gap: 8px;
        font-size: 14px;
    }

    .booking-row__label {
        margin-bottom: 4px;
    }

    .status {
        padding: 5px 12px;
        font-size: 12px;
    }

    .history-section .section-title {
        font-size: 18px;
    }

    .history-entry {
        padding: 40px 16px;
    }

    .history-entry__header {
        gap: 12px;
    }

    .history-entry__header h3 {
        font-size: 16px;
    }

    .history-entry__info {
        font-size: 13px;
        margin-top: 8px;
    }

    .history-lists {
        gap: 24px;
    }

    .history-list h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .history-list ul {
        font-size: 13px;
    }

    .history-list ul li {
        padding-left: 20px;
    }

    .history-list ul li::before {
        width: 4px;
        height: 4px;
        left: 4px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card__image {
        width: 60px;
        height: 60px;
    }

    .product-card h4 {
        font-size: 13px;
    }

    .product-card__price {
        font-size: 14px;
    }

    .product-card__article {
        font-size: 11px;
    }
}

/* Mobile medium (375px) */
@media (max-width: 375px) {
    .personal-service {
        padding: 16px 12px;
    }

    .personal-service .section-title {
        font-size: 17px;
        margin-bottom: 16px;
    }

    .service-card {
        padding: 14px;
    }

    .service-card__center h2 {
        font-size: 16px;
    }

    .car-meta-item {
        font-size: 13px;
    }

    .car-meta-item strong {
        font-size: 13px;
    }

    .booking-row {
        font-size: 13px;
    }

    .status {
        padding: 4px 10px;
        font-size: 11px;
    }

    .history-entry {
        padding: 32px 12px;
    }

    .history-entry__header h3 {
        font-size: 15px;
    }

    .history-entry__info {
        font-size: 12px;
    }

    .history-list h4 {
        font-size: 14px;
    }

    .history-list ul {
        font-size: 12px;
    }

    .product-card h4 {
        font-size: 12px;
    }

    .product-card__price {
        font-size: 13px;
    }
}

/* ================= end responsive enhancements for personal-service ================= */

/* ================= end personal-service styles ================= */


/* contacts page styles start */

.contact-page .contacts-row {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.contact-page .contacts-row .section-title {
    margin: 0 0 50px 0;
}

.contact-page .contacts-col {
    box-sizing: border-box;
}

.contact-page .contacts-col--info {
    background: #f5f6f7;
    padding: 48px 56px;
    flex: 0 0 620px;
}

.contact-page .contacts-col--map {
    flex: 1 1 560px;
    min-height: 520px;
}

.contact-page .contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.contact-page .contact-item:not(:last-child) {
    margin-bottom: 44px;
}



.contact-page .contact-item__icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: inline-flex;
    align-items: center;
}
.contact-page .contact-item__icon .icon-coords {
    width: 18px;
    height: 18px;
}
.contact-page .contact-item__icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-p);
}

.contact-page .contact-item__label {
    font-weight: 700;
    color: var(--color-p);
    margin-bottom: 8px;
}

.contact-page .phones-grid {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-page .phone-col {
    min-width: 200px;
}

.contact-page .contacts-small {
    color: var(--color-p);
    font-weight: 400;
}

.contact-page .map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

.contact-page .contacts-col--info a {
    color: var(--color-p);
    transition: color var(--transition);
}

.contact-page .contacts-col--info a:hover {
    color: var(--color-primary);
}
.contact-page .contacts-col--info .whatsapp-link {
    color: var(--color-whatsapp);}

.contact-page .contacts-col--info .whatsapp-link:hover {
    color: var(--color-whatsapp-hover);
}
.contact-page .contacts-col--info .telegram-link {
    color: var(--color-telegram);
    transition: color var(--transition);
}

.contact-page .contacts-col--info .telegram-link:hover {
    color: var(--color-telegram-hover);
}


@media (max-width: 920px) {
    .contact-page .contacts-row {
        flex-direction: column;
    }
    .contact-page .contacts-col--map {
        max-height: 500px;
    }

    .contact-page .contacts-col--info {
        flex: 1 1 auto;
        padding: 28px;
    }
    .contact-page .contacts-row.contacts-row--requisites .contacts-col:last-child {
        padding-left: unset;
    }
}


/* contacts page styles end */

/* ================= catalog product card styles ================= */
.catalog-items-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 100%;
    margin-bottom: 85px;
}

.catalog-items-grid > .catalog-item {
	max-width: 100%;
	min-width: 0;
    width: 100%;
}
.product-item-container {
    height: 100%;
    display: flex;
    width: 100%;
}


.catalog-section {
	max-width: var(--container-width);
    margin: 0 auto;

}
.catalog-product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    width: 100%;
}

.catalog-product-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.product-slider-section .catalog-product-card:hover {
       transform: translateY(0)
}
.product-swiper-multiblock .catalog-product-card:hover {
       transform: translateY(0)
}

.catalog-product-card-content,
.catalog-product-card-image,
.catalog-product-card-volumes,
.catalog-product-card-actions {
    max-width: 100%;
    box-sizing: border-box;
}

.catalog-product-card-bagde {
    position: absolute;
    top: 14px;
    left: 0px;
    background: #DE401D;
    color: var(--color-white);
    font-size: 17px;
    font-weight: 600;
    padding: 9px 14px;
    z-index: 2;
}
.catalog-product-card-bagde.availability {
    top: 285px;
    left: 16px;
    font-weight: 700;
    background: unset;
    color: var(--color-primary)

}
.items-count-4 .catalog-product-card .catalog-product-card-bagde.availability{left: 6px;}
.catalog-product-card-bagde.availability.out {
    color: var(--color-text-lighter);
	/* left: 7px; */
}
.catalog-product-card-bagde.hit {
    background: #DE401D;
}
.catalog-product-card-bagde.new {
    background: var(--color-primary)
}
.catalog-product-card-bagde.stock {
    background: #DE401D;
}

.catalog-product-card-image {
    position: relative;
    margin-bottom: 35px;
    text-align: center;
    min-height: 265px;
    max-height: 265px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.catalog-product-card-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.catalog-product-card-img {
    max-width: 100%;
    max-height: 265px;
    object-fit: contain;
}

.catalog-product-card-no-image {
    color: var(--color-text-light);
    font-size: 14px;
}

.catalog-product-card-favorite {
    position: absolute;
    top: 25px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #D9D9D9;
    z-index: 10;
}

.catalog-product-card-favorite:hover {
    color: var(--star-hover);
}
.catalog-product-card-favorite.active {
    color: var(--star-hover);
}

/* Стили для галереи изображений */
.catalog-product-gallery-slider {
    position: relative;
    width: 100% ;
    max-width: 100% ;
    height: 265px ;
    max-height: 265px ;
    overflow: hidden;
    box-sizing: border-box;
}

.catalog-product-gallery-slider .swiper-wrapper {
    height: 100% ;
    width: 100% ;
    max-width: 100% ;
}

.catalog-product-gallery-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100% ;
    width: 100% ;
    max-width: 100% ;
    box-sizing: border-box;
}

.catalog-product-gallery-slider .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.catalog-product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.catalog-product-card-title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 21px 0;
    color: var(--color-p);
}

.catalog-product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.catalog-product-card-title a:hover {
    color: var(--color-primary);
}

.catalog-product-card-meta {
    margin-bottom: 20px;
}

.catalog-product-card-meta-item {
    display: flex;
    gap: 5px;
    color: var(--color-p);
    font-weight: 400;
    font-size: 17px;
}

.catalog-product-card-meta-item:last-child {
    margin-bottom: 0;
}

.catalog-product-card-meta-item.article {
    font-weight: 700;
}

.catalog-product-card-volumes {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: nowrap;
}

.catalog-product-card-volume {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.09);
    padding: 18px 23px;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
}

.catalog-product-card-volume:hover,
.catalog-product-card-volume.active {
    border-color: rgba(0, 0, 0, 0.5);
}

.volume-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.35);
    color: var(--color-text-light, #777);
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
    font-family: Georgia, "Times New Roman", serif;
    cursor: help;
    user-select: none;
    margin-left: -4px;
}

.volume-info-tip {
    position: absolute;
    bottom: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 260px;
    padding: 9px 12px;
    background: #2b2b2b;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.35;
    text-align: left;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
    pointer-events: none;
    z-index: 30;
}

.volume-info-tip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #2b2b2b;
}

.volume-info:hover .volume-info-tip,
.volume-info:focus .volume-info-tip,
.volume-info:focus-within .volume-info-tip {
    opacity: 1;
    visibility: visible;
}

.catalog-product-card-price {
    margin-bottom: 15px;
}

.catalog-product-card-price-old {
    color: var(--color-text-light);
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 8px;
}

.catalog-product-card-price-current {
    color: var(--color-p);
    font-size: 21px;
    font-weight: 700;
}

.catalog-product-card-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.catalog-product-card-actions.not-available {
    justify-content: center;
}

.catalog-product-card-buy {
    flex: 0 0 auto;
    min-width: 161px;
    background: var(--color-p);
    color: var(--color-white);
    border: none;
    padding: 20px 18px;
    border-radius: var(--border-radius);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.catalog-product-card-buy:hover {
    background: var(--color-primary);
}

.catalog-product-card-buy svg {
    fill: currentColor;
}

.catalog-product-card-cart {
    flex-shrink: 0;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    width: 51px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.catalog-product-card-cart:hover {
    background: var(--color-secondary);
}
.catalog-product-card-cart.active {
    background: var(--color-secondary);
}

.catalog-product-card-cart svg {
    fill: currentColor;
}

.catalog-product-card-not-available {
    color: var(--color-text-light);
    font-size: 14px;
    text-align: center;
    padding: 12px;
    width: 100%;
}

/* ================= end catalog product card styles ================= */

/* ================= catalog-promo styles ================= */
.catalog-promo {
  margin: 60px 0;
}

.catalog-promo__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.catalog-promo__media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.catalog-promo__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.catalog-promo__media:hover img {
  transform: scale(1.05);
}

.catalog-promo__content {
  background: var(--color-background-service);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}
.catalog-promo__content--wide {
    grid-column: 1 / -1;
}

.catalog-promo__title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 30px;
  color: var(--color-dark);
  line-height: 1.2;
}

.catalog-promo__lead {
  color: var(--color-p);
  margin: 0;
  line-height: 1.7;
  font-size: 17px;
  font-weight: 500;
}

.catalog-promo__text {
  color: var(--color-p);
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .catalog-promo__content {
    padding: 50px 60px;
  }
  
  .catalog-promo__title {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .catalog-promo {
    margin: 40px 0;
  }
  
  .catalog-promo__container {
    grid-template-columns: 1fr;
  }
  
  .catalog-promo__media {
    order: 1;
    min-height: 300px;
  }
  
  .catalog-promo__content {
    order: 2;
    padding: 40px 30px;
  }
  
  .catalog-promo__title {
    font-size: 28px;
    margin: 0 0 20px;
  }
  
  .catalog-promo__lead {
    font-size: 16px;
    margin: 0 0 16px;
  }
  
  .catalog-promo__text {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .catalog-promo {
    margin: 30px 0;
  }
  
  .catalog-promo__media {
    min-height: 250px;
  }
  
  .catalog-promo__content {
    padding: 30px 20px;
  }
  
  .catalog-promo__title {
    font-size: 24px;
  }
  
  .catalog-promo__lead {
    font-size: 15px;
  }
  
  .catalog-promo__text {
    font-size: 14px;
  }
}
/* ================= end catalog-promo styles ================= */


/* ================= catalog product detail styles ================= */
.product-item-detail {
    padding-bottom: 30px;
}
.items-count-4 .catalog-items-grid {
	grid-template-columns: repeat(4, 1fr);
}
.items-count-4 .catalog-product-card {
	padding: 20px;
}
.items-count-4 .container {
	padding: unset;
}

.product-item-detail .detail-inner {
    display: grid;
    grid-template-columns: 768px 1fr;
    gap: 40px;
    align-items: start;
	max-width: 100%;
}

.product-item-detail .detail-gallery {
    background: #fff;
    border: 1px solid var(--color-border);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
	max-width: 100%;
	height: 100%;
	overflow: hidden;
}
.product-item-detail .detail-gallery img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 430px;
}

.product-item-detail .catalog-product-gallery-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
	height: 100%;
	max-height: 100%;
}
.product-item-detail .catalog-product-gallery-slider .swiper-wrapper {
    display: flex;
    width: 100%;
}
.product-item-detail .catalog-product-gallery-slider .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-item-detail .catalog-product-gallery-slider .swiper-slide img {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
}
.product-item-detail .swiper-pagination {
    position: relative;
    margin-top: 16px;
}
.product-item-detail .swiper-button-prev,
.product-item-detail .swiper-button-next {
    width: 20px;
	height: 20px;
}
.product-item-detail .detail-no-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: var(--color-text-light);
}

.product-item-detail .detail-info {
    background: var(--color-background-service);
    padding: 60px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.product-item-detail .detail-stock {
    color: #09882F;
    font-weight: 700;
}

.product-item-detail .detail-stock--in {
    color: #09882F;
}
.product-item-detail .detail-stock--limited {
    color: var(--color-secondary);
}
.product-item-detail .detail-stock--out {
    color: var(--color-text-lighter);
}

.product-item-detail .detail-meta {
    color: var(--color-p);
    font-size: 17px;
    line-height: 1.4;
}
.product-item-detail .detail-meta .meta-label {
    color: var(--color-p);
    margin-right: 5px;
}
.detail-meta .meta-row:last-child {
	margin-bottom: 50px;
}


.detail-price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
}
.detail-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-p);
}
.catalog-product-detail-card-actions {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.detail-price-flex  .catalog-product-card-buy {
    padding: 19.5px 22px;

}
.catalog-actions-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.catalog-actions-right {
    margin-left: auto; 
    display: flex;
    align-items: center;
}
.detail-price-flex .actions-top .catalog-product-card-cart {
	width: 185px;
	font-size: 17px;
	font-weight: 700;
	gap: 10px;
}
.detail-price-flex .actions-top .catalog-product-card-buy {
	min-width: 181px;
}

.detail-price-flex {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 12px;
    width: 100%;
}
.detail-price-flex .price-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
	padding-top: 10px;
}
.detail-price-flex .actions-col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.detail-price-flex .actions-top {
    display: flex;
    gap: 12px;
    align-items: center;
}
.detail-price-flex .actions-bottom {
    margin-top: 12px;
}

@media (max-width: 768px) {
    .detail-price-flex {
        flex-direction: column;
        gap: 12px;
    }
    .detail-price-flex .actions-top {
        justify-content: flex-start;
        gap: 8px;
    }
}

.detail-description {
    margin-top: 17px;
    color: var(--color-p);
    line-height: 1.6;
}
.detail-description-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-p);
    margin-bottom: 22px;
}

.detail-favorite-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    color: var(--color-text);
}
.detail-favorite-icon {
    display: inline-block;
	align-self: center;
	align-items: center;
    width: 20px;
    height: 18px;
	color: #D9D9D9;
	cursor: pointer;
}
.detail-favorite-text {
    font-size: 17px;
}
.detail-favorite-icon:hover {
	color: var(--star-hover);
}
.detail-favorite-row.active .detail-favorite-icon {
	color: var(--star-hover);
}
/* ================= end catalog detail card styles ================= */

/* ================= LR Filter Styles ================= */
.lr-filter-root .bx-filter-parameters-box.bx-active {
  background: #F2F2F2;
  padding: 50px 40px 0;
  max-width: 400px;

}
.lr-filter-root .bx-filter-parameters-box-title {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  cursor: default;
}

.lr-filter-root .bx-filter-parameters-box-container.buttons {
    margin-bottom: 12px;
    padding: 10px 40px 50px;
    background: #F2F2F2;
}

.lr-filter-root.bx-filter.bx-blue .btn {
    background-color: var(--color-p);
    color: #fff;
    border-radius: 0;
}

.lr-filter-root.bx-filter.bx-blue .btn-themes.btn {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.lr-filter-root.bx-filter.bx-blue .btn-themes.btn:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}


.lr-filter-root .bx-filter-parameters-box-title span {
  color: var(--color-p);
  font-size: 17px;
}
.lr-filter-root .bx-filter-param-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  margin: 0;
}
.lr-filter-root .checkbox,
.lr-filter-root .radio {
  margin: 0;
  padding: 0;
}
.lr-filter-root .bx-filter-input-checkbox input[type="radio"],
.lr-filter-root .bx-filter-input-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.lr-filter-root .bx-filter-input-checkbox input[type="checkbox"] {
  border-radius: 0;
}
.lr-filter-root .bx-filter-input-checkbox input[type="radio"]:checked,
.lr-filter-root .bx-filter-input-checkbox input[type="checkbox"]:checked {
  border-color: var(--color-primary, #09882f);
  background: var(--color-primary, #09882f);
}
.lr-filter-root .bx-filter-input-checkbox input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}
.lr-filter-root .bx-filter-input-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.485 3.515a.75.75 0 0 1 0 1.06l-7 7a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l2.47 2.47 6.47-6.47a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M13.485 3.515a.75.75 0 0 1 0 1.06l-7 7a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06l2.47 2.47 6.47-6.47a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.lr-filter-root .bx-filter-param-text {
  color: var(--color-p);
  font-size: 17px;
  flex: 1;
  line-height: 1.4;
}

.lr-filter-root .bx-filter-input-checkbox {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lr-filter-root .bx-filter-title {
  display: none;
}
.lr-filter-root .bx-filter-block {
  padding: 0;
}
/* ================= end LR Filter Styles ================= */

.catalog-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px; 
    width: 100%;
    background: var(--color-p);
    color: #fff;
    padding: 19px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: var(--transition, 0.3s ease);
    margin-top: 16px;
    margin-bottom: 32px;
    max-width: 400px;
}
.catalog-whatsapp-btn:hover {
    background: var(--color-primary);
    color: #fff;
}
.catalog-whatsapp-btn svg {
    flex-shrink: 0;
}

/* ================= catalog product card quantity controls ================= */
.catalog-product-card-quantity {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    height: 40px;
    width: fit-content;
    margin:  0 22px;
}

.catalog-product-card-quantity .quantity-btn {
    width: 40px;
    height: 38px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 0;
    line-height: 1;
}

.catalog-product-card-quantity .quantity-btn:hover {
    background: var(--color-background);
    color: var(--color-primary);
}

.catalog-product-card-quantity .quantity-btn:active {
    background: var(--color-primary);
    color: #fff;
}

.catalog-product-card-quantity .quantity-decrease {
    border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
}

.catalog-product-card-quantity .quantity-increase {
    border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}

.catalog-product-card-quantity .quantity-value {
    min-width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    padding: 0 8px;
}

/* ================= end catalog product card quantity controls =================  */

/* ================= catalog-section-list BEM styles ================= */
.catalog-section-list__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 44px 10px;
	padding: 0;
	margin: 0;
}

.catalog-section-list__item {
	list-style: none;
	box-sizing: border-box;
	text-align: center;
}

.catalog-section-list__item-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.catalog-section-list__img {
	display: block;
	width: 100%;
	max-width: 230px;
    height: 100%;
	object-fit: contain;
	margin: 0 auto;
	transition: var(--transition);
}

.catalog-section-list__img-link { display: block;  width: 100%;}



.catalog-section-list__title {
	margin-top: 10px;
	font-size: 17px;
	color: var(--color-p);
	text-align: left;

}
.catalog-section-list__title a {
	color: var(--color-p);
	text-decoration: none;
}
/* Hover effect: scale image & make title green */
.catalog-section-list__img {
	transition: transform 0.28s ease, box-shadow 0.28s ease;
	transform-origin: center center;
}
.catalog-section-list__title a {
	transition: color 0.2s ease;
}
.catalog-section-list__item:hover .catalog-section-list__img {
	transform: scale(1.02);
	box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.catalog-section-list__item:hover .catalog-section-list__title a {
	color: var(--color-primary);
}


@media (max-width: 1500px) {
    .section-incatalog .catalog-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}
@media (max-width: 1400px) {
    .subcatalog-section-list__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1280px) {
    .catalog-section-list__list { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 25px 10px;
    }
    .catalog-section-list__title {
        font-size: 15px;
    }
    #content:has(.catalog-detail-section) .h1-title,
    .h1-title {
        font-size: 28px;
    }
}
@media (max-width: 1200px) {
    .subcatalog-section-list__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .catalog-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 980px) {
	.catalog-section-list__list { grid-template-columns: repeat(3, 1fr); }
}


@media (max-width: 410px) {
	.catalog-section-list__list { grid-template-columns: repeat(1, 1fr); }
	.catalog-section-list__img { max-width: 100%; }
}

/* ================= end catalog-section-list BEM styles ================= */

/* ================= favorites styles ================= */
.favorites-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 400px;
}

.favorites-empty-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    opacity: 0.3;
}

.favorites-empty-icon svg {
    width: 100%;
    height: 100%;
    fill: #2d8a4e;
}

.favorites-empty h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.favorites-empty p {
    font-size: 16px;
    color: #666;
    margin: 0 0 32px 0;
    max-width: 400px;
}

.favorites-empty .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #2d8a4e;
    color: #fff;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.favorites-empty .btn-primary:hover {
    background: #246b3e;
}

.favorites-page-title {
    padding: 32px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 32px;
}

.favorites-page-title h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

@media (max-width: 768px) {
    .favorites-empty {
        padding: 60px 20px;
    }
    .lr-filter-root .bx-filter-parameters-box.bx-active {
        max-width: 100%;
    }
    
    .favorites-empty-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 24px;
    }
    
    .favorites-empty h2 {
        font-size: 24px;
    }
    
    .favorites-empty p {
        font-size: 14px;
    }
    
    .favorites-page-title h1 {
        font-size: 24px;
    }
}
/* ================= end favorites styles ================= */

/* ================= personal orders styles start ================= */

.order-page .sale-order-list-container {
    margin-bottom: 30px;
}
.order-page .pagination {
    margin-bottom: unset;
}


.order-page .page-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 40px;
    margin-bottom: 35px;
}

.order-page .order-header {
    display: flex;
    justify-content: space-between;
}

.order-page .page-title-row .icon {
    width: 24px;
    height: 24px;
    color: var(--color-p);
}

.order-page .page-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.order-page .order-card {
    background: var(--color-white);
    border-radius: var(--border-radius);    
    padding: 40px 40px 50px 45px;
}

.order-page .order-number {
    font-weight: 700;
    color: var(--color-p);
    font-size: 17px;
}
.order-page .order-date {
    color: var(--color-p);
    margin-top: 6px;
    font-size: 17px;
}
.order-page .order-status {
    text-align: right;
    font-weight: 400;
    color: #000000;
}


.order-page .order-status .order-status__text--success  {
    text-align: right;
    color: #2e8b57;
    font-weight: 400;
}

.order-page .order-status__eta {
    color: var(--color-p);
    margin-top: 3px;
}

.order-page .order-status__eta span{
    color: var(--color-primary);
}

.order-page .order-section-title {
    margin: 29px 0 15px;
    font-weight: 700;
    font-size: 21px;
    color: var(--color-p);
}

.order-page .order-total-bar {
    margin-top: 30px;
}
.order-page .order-total-bar__inner {
    background: var(--color-p);
    color: var(--color-white);
    padding: 13px 18px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    font-size: 17px;
}
.order-page .order-total-amount{ font-weight:700; margin-left:12px }

.order-page .order-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-background);
}

.order-page .order-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.order-page .order-table-wrapper::-webkit-scrollbar-track {
    background: var(--color-background);
    border-radius: 10px;
    margin: 0 20px;
}

.order-page .order-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
    transition: background var(--transition);
}

.order-page .order-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-hover);
}

.order-page .order-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.order-page .order-table th {
    font-size: 17px;
}
.order-page .order-table td {
    font-size: 19px;
}

.order-page .order-table th,
.order-page .order-table td {
    padding: 14px 12px;
    text-align: left;
}

.order-page .order-table th {
    background: var(--color-background-service);
    color: var(--color-p);
    font-weight: 700;
}

.order-page .order-table th:first-child,
.order-page .order-table td:first-child {
    padding-left: 34px;
}

.order-page .order-table td  {
    color: var(--color-p);
}

.order-page .order-table .price-sum, 
.order-page .order-table .total-sum {
    font-weight: 700;
}
.order-page .order-table .price-sum {
    text-wrap: nowrap;
}


.order-page .order-totals {
    margin-top: 18px;
}

.order-page .order-totals .subtotal {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 2px;
    font-weight: 700;
}

.order-page .order-summary {
    text-align: right;
}
.order-table .total {
    width: 126px;
}
.order-table .price {
    min-width: 100px;
}

.order-page .order-summary .label {
    color: var(--color-p);
    font-size: 17px;
}
.order-page .order-summary .label + .label {
    margin-top: 12px;
}

.order-page .order-summary .label.total_sum {
    font-weight: 700;
    font-size: 21px;
}


.order-page .order-summary .amount {
    padding-left: 10px;
}

.order-page .order-actions {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    align-items: flex-end;
    justify-content: flex-end;
}


.btn-outline {
    background: transparent;
    color: var(--color-p);
    border: none;
    padding: 0;
    font-size: 17px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    font-weight: 500;
}

.btn-outline::after {   
    content: '';
    display: block;
    height: 2px;
    margin-top: 12px;
    background-image: linear-gradient(to right, var(--color-p) 33%, rgba(0,0,0,0) 0%);
    background-size: 6px 2px;
    background-repeat: repeat-x;
}

.btn-order {
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 18px;
    min-width: 160px;
    text-align: center;
}

/* ================= responsive for personal orders ================= */

/* Desktop to tablet (1500px - 1024px) */
@media (max-width: 1500px) {
    .order-page .order-card {
        padding: 32px 32px 40px 36px;
    }

    .order-page .order-number,
    .order-page .order-date {
        font-size: 16px;
    }

    .order-page .order-status {
        font-size: 16px;
    }

    .order-page .order-section-title {
        margin: 24px 0 12px;
        font-size: 19px;
    }

    .order-page .order-table th {
        font-size: 15px;
        padding: 12px 10px;
    }

    .order-page .order-table td {
        font-size: 16px;
        padding: 12px 10px;
    }

    .order-page .order-table th:first-child,
    .order-page .order-table td:first-child {
        padding-left: 24px;
    }

    .order-page .order-total-bar {
        margin-top: 24px;
    }

    .order-page .order-total-bar__inner {
        padding: 12px 16px;
        font-size: 16px;
    }

    .order-page .order-summary .label {
        font-size: 16px;
    }

    .order-page .order-summary .label.total_sum {
        font-size: 19px;
    }

    .order-page .order-actions {
        gap: 24px;
        margin-top: 18px;
    }

    .btn-order {
        padding: 10px 24px;
        font-size: 16px;
        min-width: 140px;
    }

    .btn-outline {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .order-page .order-card {
        padding: 28px 28px 36px 32px;
    }
    .slide-title {
        font-size: 25px;
    }
    .slide-footnote {
        font-size: 18px;
    }

    .order-page .order-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .order-page .order-status {
        text-align: left;
    }

    .order-page .order-table th {
        font-size: 14px;
        padding: 10px 8px;
    }

    .order-page .order-table td {
        font-size: 15px;
        padding: 10px 8px;
    }

    .order-page .order-table th:first-child,
    .order-page .order-table td:first-child {
        padding-left: 20px;
    }

    .order-page .order-table .qty,
    .order-page .order-table .price,
    .order-page .order-table .total {
        min-width: auto;
        width: auto;
    }
}

@media (max-width: 1024px) {
    .order-page .order-card {
        padding: 24px 20px 32px 24px;
    }

    .order-page .page-title-row {
        padding-left: 24px;
        margin-bottom: 24px;
    }

    .order-page .page-title {
        font-size: 20px;
    }

    .order-page .order-section-title {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .order-page .order-table {
        font-size: 14px;
    }

    .order-page .order-table th {
        font-size: 13px;
        padding: 10px 6px;
    }

    .order-page .order-table td {
        font-size: 14px;
        padding: 10px 6px;
    }

    .order-page .order-table th:first-child,
    .order-page .order-table td:first-child {
        padding-left: 16px;
    }
}

@media (max-width: 768px) {
    .order-page .order-card {
        padding: 20px 16px 28px 20px;
    }

    .order-page .page-title-row {
        padding-left: 16px;
        margin-bottom: 20px;
    }

    .order-page .page-title {
        font-size: 18px;
    }

    .order-page .order-number,
    .order-page .order-date {
        font-size: 15px;
    }

    .order-page .order-section-title {
        font-size: 17px;
        margin: 18px 0 10px;
    }

    .order-page .order-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
        position: relative;
    }

    .order-page .order-table-wrapper::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 8px;
        width: 40px;
        background: linear-gradient(to left, rgba(255,255,255,0.9) 0%, transparent 100%);
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .order-page .order-table-wrapper.scrolled-end::after {
        opacity: 0;
    }

    .order-page .order-table {
        min-width: 600px;
    }

    .order-page .order-table th {
        font-size: 12px;
        padding: 8px 6px;
    }

    .order-page .order-table td {
        font-size: 13px;
        padding: 8px 6px;
    }

    .order-page .order-table th:first-child,
    .order-page .order-table td:first-child {
        padding-left: 12px;
    }

    .order-page .order-total-bar__inner {
        font-size: 15px;
        padding: 10px 14px;
    }

    .order-page .order-summary .label {
        font-size: 15px;
    }

    .order-page .order-summary .label.total_sum {
        font-size: 17px;
    }

    .order-page .order-summary .label + .label {
        margin-top: 10px;
    }

    .btn-order {
        padding: 12px 20px;
        font-size: 15px;
    }

    .btn-outline {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .order-page .order-card {
        padding: 16px 12px 24px 16px;
    }

    .order-page .page-title-row {
        padding-left: 12px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .order-page .page-title {
        font-size: 16px;
    }

    .order-page .page-title-row .icon {
        width: 20px;
        height: 20px;
    }

    .order-page .order-number,
    .order-page .order-date,
    .order-page .order-status {
        font-size: 14px;
    }

    .order-page .order-section-title {
        font-size: 16px;
        margin: 16px 0 8px;
    }

    .order-page .order-table-wrapper {
        margin: 0 -12px;
        padding: 0 12px;
    }

    .order-page .order-table-wrapper::after {
        width: 30px;
    }

    .order-page .order-table {
        min-width: 550px;
    }

    .order-page .order-table th {
        font-size: 11px;
        padding: 8px 4px;
    }

    .order-page .order-table td {
        font-size: 12px;
        padding: 8px 4px;
    }

    .order-page .order-table th:first-child,
    .order-page .order-table td:first-child {
        padding-left: 10px;
    }

    .order-page .order-total-bar {
        margin-top: 20px;
    }

    .order-page .order-total-bar__inner {
        font-size: 14px;
        padding: 10px 12px;
    }

    .order-page .order-totals {
        margin-top: 16px;
    }

    .order-page .order-summary .label {
        font-size: 14px;
    }

    .order-page .order-summary .label.total_sum {
        font-size: 16px;
    }

    .order-page .order-summary .label + .label {
        margin-top: 8px;
    }

    .order-page .order-actions {
        gap: 12px;
        margin-top: 16px;
    }

    .btn-order {
        padding: 10px 16px;
        font-size: 14px;
    }

    .btn-outline {
        font-size: 14px;
    }

    .btn-outline::after {
        margin-top: 8px;
    }
}

/* ================= personal orders styles end ================= */


.search-catalogs-section {
   margin-bottom: 40px;
}

.section-incatalog .section-title {
    font-size: 30px;
    margin: 40px 0 40px 0;
}

.header-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    background: var(--color-p);
    color: #fff;
    padding: 17px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 21px;
    transition: var(--transition, 0.3s ease);
    margin-bottom: 7px;
    max-width: 400px;
}
.header-back-btn svg { display:block; width:18px; height:18px; }
.header-back-btn:hover {
    background: var(--color-primary);
    text-decoration: none;
    color: var(--color-white);
}

/* ================= news-detail styles ================= */
.news-detail {
    margin-bottom: 80px;
}


.spare-news .section-title {
    margin: 0 0 30px 0;
}
.contact-page .callback-form-inline {
    margin: 100px 0 50px;
}
.callback-form-inline{
    background: #484f55;
    padding: 50px 70px 50px 70px;

}

.callback-form-inline .form-title{
    font-weight: 700;
    font-size: 42px;
    color: #fff;
    margin-bottom: 45px;
}

.news-detail-section .callback-form-inline .form-title {
    font-size: 30px;
}

/* .news-detail-section .banner-form {
    gap: 25px;
} */

.callback-form-inline .form-subtitle{
    font-weight: 700;
    font-size: 21px;
    color: #fff;
    margin-bottom: 55px;
}

.callback-form-inline .banner-form input{
    padding: 30px 40px;
    font-weight: 400;
}
.callback-form-inline .banner-form .form-row{
    align-items: inherit;
    margin-top: 0;
    position: relative;
}
.callback-form-inline .banner-form .form-checkbox {
    margin: 15px 0 30px 0;
}
.callback-form-inline .banner-form .form-row .field-error{
    position: absolute;
    right: 0; 
    top: 100%;
    margin-top: 10px;
}
.callback-form-inline .banner-form button{
    height: auto;
}
.callback-form-inline .banner-form .note, 
.callback-form-inline .banner-form .note a{
    color: #fff;
}

.news-detail-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-detail-date {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

.all-news-button-wrapper {
    display: flex;
    justify-content: center;
}
.all-news-button-wrapper .btn-primary {
    font-size: 17px;
    width: 374px;
    padding: 27px 20px;
}

.news-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
    margin: 0;
}






@media (min-width: 1651px) {
    #content .actsii-detail .product-swiper-multiblock-wrapper .product-prev {
        left: 0;
    }

    #content .actsii-detail .product-swiper-multiblock-wrapper .product-next {
        right: -60px;
        left: unset;
    }

    #content .actsii-products .product-swiper-multiblock-wrapper {
        max-width: calc(100% - 30px);
    }

    #content .actsii-detail .product-swiper-multiblock-wrapper .product-next , #content .actsii-detail .product-swiper-multiblock-wrapper .product-prev {
        position: absolute;
        top: var(--swiper-navigation-top-offset,50%);
        width: calc(var(--swiper-navigation-size)/ 44 * 27);
        height: var(--swiper-navigation-size);
        margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color,var(--swiper-theme-color));
    }
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 24px;
    }
}
@media (max-width: 500px) {
    .search-hint {
        font-size: 9px;
    }
}

.news-detail-preview {
    font-size: 16px;
    color: var(--color-p);
    line-height: 1.6;
}
.news-detail table{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    
}
.news-detail table tr td{
    border: 1px solid var(--color-p);
    padding: 5px;
}


.news-detail-content {
    font-size: 17px;
    color: #000000;
}

.news-detail-content p {
    margin: 0 0 15px 0;
}
.news-detail-content img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
    display: block;
    margin: 0 auto;
}


.news-detail-properties {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.news-detail-property {
    font-size: 14px;
    color: var(--color-text);
}

.news-detail-property-label {
    font-weight: 600;
    color: var(--color-dark);
}

.news-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    margin-top: 10px;
}

.news-detail-badge svg {
    width: 16px;
    height: 16px;
}

.news-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
    float: right;
    width: 560px;
    margin: 0 0 20px 30px;
}
.news-detail-section .akcii-section .service-grid-wrapper {
    padding: unset;
}

.news-detail-main-image {
    width: 100%;
    height: 370px;
    overflow: hidden;
    background: var(--color-background);
}

@media (max-width: 768px) {
    .news-detail-main-image {
        height: 300px;
    }
}

.news-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    cursor: pointer;
    transition: var(--transition);
}

.news-detail-main-image img:hover {
    transform: scale(1.05);
}

.news-detail-gallery-slider {
    width: 100%;
}


.news-detail-gallery-slide {
    width: 180px;
    height: 120px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--color-background);
}

.news-detail-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-detail-gallery-slide.active {
    border-color: var(--color-primary);
}

.news-detail-gallery-slide:hover {
    border-color: var(--color-primary);
}

/* ================= news-detail adaptive styles ================= */
@media (max-width: 1200px) {
    .news-detail {
        gap: 30px;
    }
    
    .news-detail-main-image {
        height: 350px;
    }

    .news-detail-gallery {
        float: unset;
        margin: 0;
        width: 100%;
    }
    
    .news-detail-gallery-slide {
        width: 160px;
        height: 110px;
    }
     .news-detail {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .news-detail-main-image {
        height: 300px;
    }
    
    .news-detail-gallery-slide {
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .news-detail-section {
        padding: 30px 0;
    }
    
    .news-detail {
        gap: 20px;
    }
    
    .news-detail-main-image {
        height: 250px;
    }
    
    .news-detail-gallery {
        gap: 10px;
    }
    
    .news-detail-gallery-slide {
        width: 120px;
        height: 80px;
    }
    
    .news-detail-badge {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .news-detail-badge svg {
        width: 14px;
        height: 14px;
    }
}
/* ================= end news-detail adaptive styles ================= */

/* ================= end news-detail styles ================= */

/* ================= catalog-section styles ================= */
.catalog-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 80px;
}

.catalog-pagination-wrapper .pagination-wrapper {
    margin: unset
}
.catalog-pagination-wrapper .pagination {
    margin-bottom: unset;
}

.catalog-pagination-wrapper .btn-primary {
    font-size: 17px;
    padding: 27px 24px;
    width: 374px;
}

.catalog-pagination-wrapper .btn-primary:hover {
    background: var(--color-primary-hover);
}

@media (max-width: 768px) {
    .catalog-pagination-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .catalog-pagination-wrapper .btn-primary {
        text-align: center;
    }
}

/* ================= end catalog-section styles ================= */

/* ================= certificate-slider styles ================= */
.certificate-company {
    padding: 80px 0;
}

.certificate-company .section-title {
    margin-bottom: 60px;
}

.certificate-slider-wrapper {
    position: relative;
    overflow: visible;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
}

.certificate-slider-wrapper .swiper {
    overflow: hidden;
    max-width: calc(var(--container-width) - 30px);
    margin: 0 auto;
    position: relative;
}

.certificate-slide {
    position: relative;
    height: 522px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

.certificate-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.certificate-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--color-white);
    transition: transform var(--transition);
}

.certificate-slide:hover .certificate-slide-image img {
    transform: scale(1.02);
}

.certificate-prev {
    left: 0px;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.certificate-next {
    right: 0px;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
}


/* ================= end certificate-slider styles ================= */


/* ================= company-thank-you styles ================= */
.company-thank-you {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}


.company-thank-you-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-p);
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .company-thank-you-title {
        font-size: 24px;
    }
}

.company-thank-you-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .company-thank-you-text-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.company-thank-you-text-column {
    font-size: 15px;
    color: var(--color-p);
    
}

.company-thank-you-text-column p {
    margin: 0 0 15px 0;
}

.company-thank-you-text-column p:last-child {
    margin-bottom: 0;
}

.company-thank-you-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.company-thank-you-image {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
}

.company-thank-you-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.company-thank-you-services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .company-thank-you-services-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.company-thank-you-services-column {
    font-size: 15px;
    color: var(--color-p);
}

.company-thank-you-services-column p {
    margin: 0 0 15px 0;
}
.company-thank-you-services-column:has(ul) p {
    margin: unset;

}

.company-thank-you-services-column ul {
    margin: 0;
    padding-left: 20px;
}

.company-thank-you-services-column li {
    color: var(--color-p);
}

.company-thank-you-services-column li:last-child {
    margin-bottom: 0;
}

/* ================= end company-thank-you styles ================= */

/* ================= company-image-text styles ================= */
.company-image-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 60px;
    margin-bottom: 60px;
    
}

@media (max-width: 1024px) {
    .company-image-text {
        gap: 30px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .company-image-text {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
}

.company-image-text-image {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    order: 2;
}

.company-image-text-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.company-image-text-content {
    font-size: 15px;
    color: var(--color-p);
    order: 1;
}

.company-image-text-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-p);
    margin: 0 0 20px 0;
}

@media (max-width: 768px) {
    .company-image-text-content h3 {
        font-size: 20px;
    }
}

.company-image-text-content p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.company-image-text-content p:last-child {
    margin-bottom: 0;
}

.company-image-text-content ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.company-image-text-content li {
    color: var(--color-p);
    margin-bottom: 8px;
}

.company-image-text-content li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .company-image-text-content order,
    .company-image-text-image order {
        order: unset;
    }
}

/* ================= end company-image-text styles ================= */

/* ================= vacancies-section styles ================= */
.vacancies-section {
    padding: 40px 0;
    background: var(--color-white);
}

.vacancies-header {
    margin-bottom: 60px;
}

.vacancies-header .section-title {
    margin-bottom: 0;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .vacancies-grid {
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .vacancies-grid {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }
}

.vacancy-item {
    font-size: 15px;
    color: var(--color-p);
    line-height: 1.6;
}

.vacancy-item-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.vacancy-item-subtitle {
    font-size: 17px;
    color: var(--color-p);
    margin: 2px 0 2px 0;
}

.vacancy-item-subtitle:first-of-type {
    margin-top: 0;
}

.vacancy-item-list {
    list-style: none;
    margin: 0 0 2px 0;
    padding: 0;
    font-size: 17px;
    color: var(--color-p);
}

.vacancy-item-list li {
    margin-bottom: 0px;
    padding-left: 15px;
    position: relative;
}

.vacancy-item-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-p);
    font-weight: bold;
}

.vacancy-item-list li:last-child {
    margin-bottom: 0;
}

.vacancies-footer {
    text-align: center;
}

.vacancies-button {
    padding: 27px 50px;
    font-size: 17px;
    font-weight: 700;
    width: 300px;
    margin: 0 auto;
}

/* ================= end vacancies-section styles ================= */

/* ================= why-buy page styles ================= */

.why-buy-wrapper {
    background: var(--color-background-service);
    padding: 60px;
    margin-bottom: -30px;
}

.why-buy-intro {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.why-buy-intro p {
    margin: 0;
    font-size: 17px;
    color: var(--color-p);
    line-height: 1.6;
}

.why-buy-content {
    margin: 0;
}

.why-buy-content p {
    font-size: 17px;
    color: var(--color-p);
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.why-buy-content p:first-child {
    font-weight: 700;
    padding-bottom: 20px;
}

.why-buy-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-p);
    margin: 30px 0 20px 0;
}

.why-buy-content h3:first-of-type {
    margin-top: 0;
}

.why-buy-content strong {
    color: var(--color-dark);
    font-weight: 700;
}

.why-buy-content ul {
    font-size: 15px;
    color: var(--color-p);
    line-height: 1.8;
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.why-buy-content ul li {
    margin-bottom: 8px;
}

.why-buy-content ul li:last-child {
    margin-bottom: 0;
}

.why-buy-content a {
    color: var(--color-p);
    text-decoration: none;
    transition: var(--transition);
}

.why-buy-content a:hover {
    color: var(--color-primary);
}

.why-buy-content h4 {
    font-weight: 700;
    color: var(--color-p);
    margin: 20px 0 10px 0;
    font-size: 15px;
}

.universal-block .where-find {
    padding-top: 0;
    margin-bottom: 100px;
}

.universal-block .where-find__panel {
    right: clamp(15px, (100vw - var(--container-width)) / 2 , 100%);
    top: -138px;
    padding: 90px 113px 90px 90px;
}



@media (min-width: 901px) {
    .universal-block .where-find__map .map-wrapper {
        height: 760px;
    }
}

.universal-block .where-find__map iframe {
    height: 760px;
}


@media (max-width: 1280px) {
  .universal-block .where-find {
        margin-bottom: 65px;
  }
}

@media (max-width: 1280px) {
    .universal-block .where-find {
        margin-bottom: 35px;
    }
}

/* ================= end why-buy page styles ================= */
.personal-left-menu {
    background-color: var(--color-background-service);
}

/* ================= header responsive styles ================= */
@media (max-width: 1580px) {
    .where-find__panel {
        padding: 60px 63px 57px 60px;
        right: 60px;
        width: 680px;
    }
    .service-cta-btn {
       margin-top: 125px;
    }
    .process-card__title {
        font-size: 24px;
    }
    .detail-favorite-row {
        margin-left: -5px;
    }
}
@media (max-width: 1438px) {
    .service-cta-btn {
       margin-top: 103px;
    }
}



@media (max-width: 1500px) {
    .product-item-detail .detail-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
}
@media (max-width: 1440px) {
    
    /* .search-form input[type="text"] {
        width: 300px;
    } */
    .reception-step {
        padding: 45px 30px 36px 30px;
    }
    .items-count-4 .catalog-items-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 1360px) {
    .process-card__title {
        font-size: 20px;
    }
    .process-card__body {
        font-size: 15px;
    }
    
}
@media (max-width: 1200px) {
   
    
    /* .search-form input[type="text"] {
        width: 250px;
    } */
      .service-cta-btn {
        margin-top: unset;
      }
    .header-buttons {
        gap: 10px;
    }
     .w-40p {
        max-width: 1000%;
    }
    
    .header-buttons .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
}
@media (max-width: 1100px) {
    .items-count-4 .catalog-items-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .where-find__panel {
        width: 580px;
    }

}

@media (max-width: 1025px) {
    .top-bar {
        display: none;
    }
    .reception-actions {
        margin-top: unset;
    }
    .header-buttons {
        display: none;
    }
    .detail-price-flex .actions-top{
        flex-direction: column;
        width: 80%;
    }
    .detail-price-flex {
        flex-direction: column;
    }
    .price-list-section {
        padding: 40px 0;
    }
    .timeline-year {
        font-size: 20px;
    }
    .timeline-achievement {
        font-size: 14px;
    }
    #content:has(.catalog-detail-section) .h1-title,
    .section-title, .h1-title, .faq-title {
        font-size: 34px;
    }
    .chart-legend {
        margin-bottom: 10px;
    }
    .h1-title
    .step-title p {
        font-size: 23px;
    }
    .history-text-block {
        padding: 10px 20px;
        font-size: 25px;
    }
    h1, h1 p {
        font-size: 23px;
    }
    h2, h2 p {
        font-size: 20px;
    }
    .history-header {
        margin-bottom: 25px;
    }
    p {
        font-size: 15px;
    }
    .step-number {
        font-size: 41px;
    }
    #content:has(.catalog-detail-section) .h1-title,
    .h1-title {
        margin: 0 0 30px 0;
    }
    .step-title p {
        font-size: 23px;
    }
    .step-number {
        font-size: 38px;
    }
    .callback-form-inline .form-title {
         font-size: 34px;
    }
    .callback-form-inline .banner-form input {
        padding: 20px;
        font-size: 15px;
    }
    .callback-form-inline {
        padding: 40px 40px 60px 40px;
    }
    
    
    .burger-menu {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    .mobile-social .icon-whatsapp {
        color: var(--color-whatsapp);
    }
    .mobile-social .icon-whatsapp:hover {
        color: var(--color-whatsapp-hover);
    }
    .mobile-social .icon-telegram {
        color: var(--color-telegram);

    }
    .mobile-social .icon-telegram:hover {
        color: var(--color-telegram-hover);
    }

    .site-header {
        padding: 20px 0;
    }



    .header-row {
        gap: 15px;
    }
    
    .search-and-buttons-wrapper {
        gap: 0px;
        flex: 1;
    }
    
    .search-section {
        width: 100%;
    }
    
    .search-form input[type="text"] {
        width: 100%;
    }
    
    .header-buttons {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .header-buttons .btn {
        flex: 1;
        min-width: 150px;
    }
    
    .user-actions {
        gap: 10px;
    }
    
    .user-link span,
    .cart-link span {
        display: none;
    }
    .legend-text {
        font-size: 16px;
        padding-left: 10px;
    }
}

@media (max-width: 900px) {
    .catalog-top-menu .main-menu {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    .where-find__panel {
        position: static;
        width: 100%;
    }
     .where-find__inner {
        display: flex;
        flex-direction: column-reverse;
     }
     .where-find__inner .container {
        margin: unset;
        padding: unset;
     }
     .where-find__map .map-wrapper {
        height: 600px;
     }

}
@media (max-width: 800px) {
    .items-count-4 .catalog-items-grid {
        grid-template-columns: repeat(1,1fr);
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .contact-page .contacts-small {
        font-size: 14px;
    }
    .product-item-detail .detail-inner {
        grid-template-columns: 1fr;
    }
    .product-item-detail .detail-gallery {
        max-height: 564px;
    }

    
    .header-row {
        gap: 10px;
    }
    .site-header {
        padding-bottom: 30px;
    }
    
    .logo-img {
        max-width: 150px;
    }
    
    .search-hint {
        font-size: 12px;
    }
    
    .header-buttons {
        flex-direction: column;
    }
    
    .header-buttons .btn {
        width: 100%;
        min-width: unset;
    }
    
    .user-actions {
        gap: 8px;
    }
    .why-buy-wrapper {
        padding: 25px;
    }
}

@media (max-width: 650px) {
    .service-reception__steps {
        grid-template-columns: repeat(1,1fr);
    }
    #content:has(.catalog-detail-section) .h1-title,
     .section-title, .h1-title, .faq-title {
        font-size: 28px;
    }
    .history-title p {
        font-size: 28px;
    }
    .catalog-top-menu .main-menu {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .catalog-top-menu .menu-link {
        padding: 11px 15px;
        font-size: 14px;
    }

    .fix-divider-section .section-title {
        font-size: 28px;
    }

}

@media (max-width: 500px) {
    .logo-img {
        max-width: 46vw;
    }
}

@media (max-width: 480px) {
    
    .header-row {
        flex-wrap: wrap;
    }
    
    
    .logo-img {
        max-width: 46vw;
    }
    
    .search-form input[type="text"] {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .search-btn {
        width: 40px;
        height: 40px;
    }
    
    .header-buttons .btn {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .user-link svg,
    .cart-link svg {
        width: 20px;
        height: 20px;
    }
    
    .basket-count-head {
        width: 14px;
        height: 14px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }
}
/* ================= end header responsive styles ================= */

/* ================= media ================= */
@media screen and (max-width: 1600px) {
    .user-actions {
        padding-left: 25px;
        gap: 30px;
    }
    
}

/* ================= catalog sidebar menu adaptive ================= */

.spare-parts-section.lr-service {
    padding: 40px 0;
}

.container-with-menu {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.container-aside {
	position: sticky;
	top: 20px;
}

.container-main {
	flex: 1;
	min-width: 0;
}

/* Кнопка переключения меню для мобильных */
.catalog-menu-toggle {
	display: none;
	width: 100%;
	padding: 18px 25px;
	background: var(--color-primary);
	color: var(--color-white);
	border: none;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	transition: all var(--transition);
	box-shadow: 0 2px 8px rgba(9, 136, 47, 0.2);
}

.catalog-menu-toggle:hover {
	background: var(--color-primary-hover);
	box-shadow: 0 4px 12px rgba(9, 136, 47, 0.3);
	transform: translateY(-1px);
}

.catalog-menu-toggle:active {
	transform: translateY(0);
}

.catalog-menu-toggle svg {
	width: 20px;
	height: 20px;
	transition: transform var(--transition);
	flex-shrink: 0;
}

.catalog-menu-toggle.active svg {
	transform: rotate(180deg);
}


@media (max-width: 1280px) {
    .process-card__title {
        font-size: 20px;
    }
    .process-card__head {
        padding: 16px 21px;
    }
    .contact-page .callback-form-inline {
        margin: 65px 0 30px;
    }
    .step-title p {
        font-size: 27px;
    } 
    .section-header {
        margin-top: unset;
    }
    .price-list-section .price-list__header {
        margin-bottom: 20px;
    }
    .price-list-section {
        padding: 40px 0;
    }
    .reception-video--new {
        margin: 0 auto 60px auto;
    }
}
@media (max-width: 1024px) {
	.container-aside {
		flex: 0 0 240px;
	}
     .personal-menu__link {
        font-size: 18px;
        padding: 15px 20px;
    }
    .service-reception__steps-lr-info {
        padding: 40px 0;
    }
    .services-grid-section {
        margin-bottom: 20px;
    }
    .services-grid-section {
        padding: 40px 0 30px;
    }
    .attention-banner {
        padding: 20px 0 !important;
    }

    .spare-parts-section, .advantages-section {
        padding: 20px 0 !important;
    }
    .faq-section.faq-section-info-lr {
        padding: 20px 0;
    }
    .service-content-section {
        padding: 20px 0 !important;
    }
    .specialization-section {
        padding: 40px 0 20px 0;
    }
    .video-gallery-section {
        padding: 20px 0;
    }
    .advantages-lr .advantages-row {
        padding: 30px 0;
    }
	
	.container-with-menu {
		gap: 20px;
	}
    .personal-menu__link-main {
        font-size: 18px;
        padding: 11px 26px;
    }
    .catalog-menu__level-2 > .personal-menu__link-main, .catalog-menu__level-3 > .personal-menu__link-main, .catalog-menu__level-4 > .personal-menu__link {
        padding: 5px 26px 10px 4px;
        font-size: 16px;
    }
    .catalog-product-card-quantity {
        margin: unset;
    }

    .fix-divider-section .section-title {
        font-size: 34px;
    }

}

/* Адаптив для маленьких планшетов и мобильных */
@media (max-width: 768px) {
	.container-with-menu {
		flex-direction: column;
		gap: 0;
	}
    .personal-menu__link {
        font-size: 16px;
        padding: 13px 20px;
    }
    .personal-menu {
       background-color: var(--color-background-service);;
    }
	
	.container-aside {
		flex: 0 0 auto;
		width: 100%;
		position: static;
		margin-bottom: 20px;
		background: transparent;
		padding: 0;
	}
	
	.catalog-menu-toggle {
		display: flex;
	}
	
	.container-menu {
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		transition: max-height 0.4s ease, opacity 0.3s ease;
		background: var(--color-white);
		border-radius: 8px;
		margin-top: 10px;
	}
	
	.container-menu.active {
		max-height: 2000px;
		opacity: 1;
		padding: 10px 0;
	}
	
	/* Адаптив для меню каталога */
	.container-menu .header-back-btn {
		display: none;
	}
	
	/* Переделываем стили меню для мобильных */
	.container-menu .bx-menu-vert {
		padding: 0 10px;
	}
	
	.container-menu .bx-menu-vert > li {
		margin: 0;
		border-bottom: 1px solid var(--color-border);
	}
	
	.container-menu .bx-menu-vert > li:last-child {
		border-bottom: none;
	}
	
	.container-menu .bx-menu-vert > li > a {
		padding: 12px 15px;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		font-weight: 500;
	}
	
	.container-menu .bx-menu-vert > li.current > a {
		background: var(--color-background);
		color: var(--color-primary);
		font-weight: 600;
	}
	
	.container-menu .bx-menu-vert ul {
		background: var(--color-background);
		margin: 0;
		padding: 5px 0;
	}
	
	.container-menu .bx-menu-vert ul li {
		border: none;
	}
	
	.container-menu .bx-menu-vert ul li a {
		padding: 10px 15px 10px 30px;
		font-size: 13px;
	}
	
	.container-menu .bx-menu-vert ul li.current a {
		background: rgba(9, 136, 47, 0.1);
		color: var(--color-primary);
		font-weight: 600;
	}
	
	.catalog-whatsapp-btn {
		display: none !important;
	}
	
	.container-main {
		width: 100%;
	}
    .product-item-detail .detail-info {
        padding: 30px;
    }
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
	.catalog-menu-toggle {
		padding: 15px 20px;
		font-size: 15px;
	}
	
	.catalog-menu-toggle svg {
		width: 18px;
		height: 18px;
	}
	
	.container-menu .bx-menu-vert > li > a {
		padding: 10px 12px;
		font-size: 13px;
	}
	
	.container-menu .bx-menu-vert ul li a {
		padding: 8px 12px 8px 28px;
		font-size: 12px;
	}
}
/* ================= end catalog sidebar menu adaptive ================= */

/* ================= order success page styles ================= */
.order-success-wrapper {
    padding: 60px 0;
    background: var(--color-background);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-success-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.order-success-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 15px 0;
}

.order-success-message {
    font-size: 16px;
    color: var(--color-text-light);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.order-success-details {
    background: var(--color-background);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.order-detail-item:last-child {
    border-bottom: none;
}

.order-detail-label {
    font-size: 15px;
    color: var(--color-text-light);
}

.order-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
}

.order-success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.order-payment-section {
    margin-top: 30px;
}

.order-payment-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--color-border);
}

.order-payment-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 25px 0;
    text-align: center;
}

.order-payment-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.payment-logo img {
    max-width: 120px;
    height: auto;
}

.payment-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
}

.order-payment-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.btn-primary-order {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary-order:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.btn-secondary-order {
    background: var(--color-background);
    color: var(--color-dark);
    border: 1px solid var(--color-border);
}

.btn-secondary-order:hover {
    background: var(--color-border);
}

.order-error-wrapper {
    padding: 60px 0;
    background: var(--color-background);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-error-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-error-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.order-error-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 20px 0;
}

.order-error-content {
    margin-bottom: 40px;
}

.order-error-content p {
    font-size: 16px;
    color: var(--color-text-light);
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.order-error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.order-error-message {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
    color: #856404;
    text-align: center;
}

@media (max-width: 768px) {
    .order-success-card,
    .order-error-card {
        padding: 40px 25px;
    }
    .site-wrapper .container-aside .catalog-menu-toggle,
    .site-wrapper .container-aside .container-menu
    {
        display: none;
    }
    .with-menu-mobile .container-aside .container-menu
    {
        display: block;
    }
    .with-menu-mobile .container-aside .catalog-menu-toggle {
        display: flex;
    }
    
    .order-success-title,
    .order-error-title {
        font-size: 26px;
    }
    
    .order-success-message,
    .order-error-content p {
        font-size: 15px;
    }
    
    .order-detail-item {
        flex-direction: column;
        gap: 5px;
        text-align: left;
    }
    
    .order-error-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .order-success-wrapper,
    .order-error-wrapper {
        padding: 30px 0;
    }
    
    .order-success-card,
    .order-error-card {
        padding: 30px 20px;
    }
    
    .order-success-icon svg,
    .order-error-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .order-success-title,
    .order-error-title {
        font-size: 22px;
    }
    
    .order-payment-card {
        padding: 25px 20px;
    }
}
/* ================= end order success page styles ================= */


/* ================= media ================= */

/* Аккордеон для пунктов */
.parts-accordion [data-acc-title="1"]{
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

/* стрелка */
.parts-accordion [data-acc-title="1"] .parts-accordion__arrow{
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-white);  
  border-bottom: 2px solid var(--color-white); 
  transform: rotate(-135deg);     
  transition: var(--transition);
} 

/* тело (любой блок со списком подпунктов) */
.parts-accordion .parts-accordion__body{
  overflow: hidden;
  max-height: 9999px;
  transition: max-height .25s ease, opacity .25s ease;
  opacity: 1;
}

/* закрыто (на уровне конкретного пункта, а не всего меню) */
.parts-accordion .parts-acc-item--collapsed [data-acc-title="1"] .parts-accordion__arrow{
  transform: rotate(45deg); /* закрыто = вниз */
}
.parts-accordion .parts-acc-item--collapsed .parts-accordion__body{
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}



/* Кнопка ... */
.bx-breadcrumb-more{ display:inline-flex; align-items:center; }
.bx-breadcrumb-more__btn{
  background: transparent; border: 0; padding: 0; margin: 0;
  cursor: pointer; user-select: none;
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit; font: inherit;
}

/* Выпадающий блок */
.bx-breadcrumb-drop{
  display: none;
  margin-top: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: 6px 0;
}

.bx-breadcrumb-drop.is-open {
    display: inline-block;
    padding-right: 125px;
}

.bx-breadcrumb-drop a{
  display:block;
  padding: 8px 12px;
  text-decoration:none;
  color: inherit;
  font-size: 14px;

}
.bx-breadcrumb-drop {
    margin-bottom: 10px;
}
.bx-breadcrumb-drop a:hover{ background: rgba(0,0,0,.06); }
/* ================= service grid responsive (desktop/mobile) ================= */
.service-grid-wrapper {
  width: 100%;
}


/* Mobile версия (скрыта по умолчанию) */
.service-grid--mobile {
  display: none;
}

/* На экранах ≤ 1280px: скрываем сетку и показываем слайдер */
@media (max-width: 1280px) {
  .service-grid--desktop {
    display: none;
  }
  
  .service-grid--mobile {
    display: block;
  }
}

/* Стили для слайдера сервисов */
.service-slider-section {
  overflow: hidden;
}

.service-slider-wrapper {
  position: relative;
  margin: 0 60px;
  min-height: 400px;
}

.service-slider-wrapper .swiper {
  height: auto;
}

.service-slider-wrapper .swiper-wrapper {
  height: auto;
}

.service-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.service-slider-wrapper .service-slide .service-card {
    flex: unset;
    min-height: 500px;
}

.service-slide .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-prev {
    position: absolute;
    left: -50px;
    top: 50%;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}
.service-next {
    position: absolute;
    right: -50px;
    top: 50%;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all var(--transition);
    z-index: 10;
}





@media (max-width: 900px) {.service-about__advantages-section{width: 100% !important;}
	.reception-actions{flex-direction: row;}
.history-timeline{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;                 
  justify-content: flex-start; 
}
.product-slider-wrapper .swiper-slide {
    flex: 1 1 calc(50% - 10px); /* 2 элемента в ряду */
  }
	.car-meta-grid .car-meta-col{line-height: 1.8;}
	.news-section{padding: 15px 0;}
	.service-about{padding-top: 30px;}
	.service-detail-attention{margin-top: 50px;}
	.where-find .section-title{margin: 20px 0 31px 0;}
	.news-slider-section{padding: 0px 0 80px 0;}
.history-timeline > *{
  flex: 0 0 calc((100% - 40px) / 3);  /* 3 в ряд при gap 20px (2 промежутка = 40px) */
  box-sizing: border-box;}
    .where-find{padding-top: 0px;}
	.faq-section{padding: 80px 0 0px 0;}
.reviews-categories-pills .pill-list{
    flex-wrap: nowrap;
    justify-content: flex-start;  /* можно оставить flex-end если нужно справа */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 12px;
  }

  .reviews-categories-pills .pill-list .pill{
    flex: 0 0 auto;  /* чтобы не сжимались в кашу */
    white-space: nowrap;
  }
.where-find__panel{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 18px;
  align-content: start;
}

/* заголовок "Контакты" на всю ширину */
.where-find__panel > h3{
  grid-column: 1 / -1;
}

/* кнопка "Записаться..." тоже на всю ширину (если нужно) */
.where-find__panel .where-find__call-btn{
  grid-column: 1 / -1;
}
}

@media (max-width: 768px){

  .reception-actions > *{ width: 100%; height: 100%; }
  .history-timeline > *{ flex-basis: calc((100% - 20px) / 2); }

    .reviews-categories-pills{
    width: 100%;
  }

    .reviews-categories-pills .pill-list{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
    align-items: stretch;
  }
	.faq-info-block{padding: 53px 40px 52px 38px !important; overflow:hidden !important;}
	.faq-info-block-inner{padding-bottom: 0 !important;}


  .reviews-categories-pills .pill-list .pill{
    width: 100%;
    white-space: nowrap;
  }
  .detail-price-flex:not(:has(.catalog-product-card-cart)) .actions-col {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .detail-price-flex:not(:has(.catalog-product-card-cart)) .actions-top {
    width: unset;
  }
  .detail-price-flex:not(:has(.catalog-product-card-cart)) .actions-bottom, .detail-favorite-row {
    margin-top: unset;
  }
  .product-item-detail:not(:has(.catalog-product-card-cart)) .detail-info {
    padding: 30px;
  }
  .product-item-detail {
    padding-bottom: unset;
  }
}

@media (max-width: 899px){.product-slider-wrapper .swiper-slide {
		flex: none !important; /* 1 элемент в ряду */}}



@media (max-width: 600px){
    .where-find__panel {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        row-gap: 5px;
        padding: 35px 20px;
    } 
    .detail-price-flex:not(:has(.catalog-product-card-cart)) .actions-top .catalog-product-card-buy {
        min-width: 151px;
        padding: 13.5px 17px;
        font-size: 16px;
    }
    .detail-favorite-text {
        font-size: 15px;
    }
    .where-find__panel h3 {
        margin: 0px 0 25px;
    }
    .where-find__contact-item {
        margin-bottom: 15px;
    }

    .contact-item-bottom {
        margin-top: 15px;
    }

    .where-find__map .map-wrapper {
        height: 350px;
    }
    .where-find__map iframe{
        height: 350px;
    }
    .news-slider-section {
        padding: 0;
    }

    .catalog-items-grid,
    .section-incatalog .catalog-items-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .banner-utp-left {
        max-width: 100%;
        left: 0;
        top: 15px;
    }
    .banner-slider .swiper {
        height: 820px!important;
    }
}

@media (max-width: 576px){
  .reviews-categories-pills .pill-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
    justify-content: stretch;
    align-items: stretch;
  }

  .reviews-categories-pills .pill-list .pill{
    width: 100%;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
    .banner-utp-item span {
        font-size: 12px;
    }
    .banner-slider .swiper {
        height: 900px!important;
    }
}

@media (max-width: 400px){
    
    
    .history-timeline > *{ flex-basis: 100%; }
    .catalog-product-card {
        padding: 20px;
    }
    .catalog-product-card-bagde.availability{left: 6px}
    .catalog-product-card-buy {
        font-size: 15px;
        padding:15px;
    }
    .catalog-product-card-cart {
        height: 47px;
    }
    .search-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

}
.contact-page .contacts-col--info a{text-decoration: underline;}
.process-steps--mobile {
	display: none;
}
@media (max-width: 480px) {
	/* Скрываем desktop версию */
	.process-steps--desktop {
		display: none;
	}

	/* Показываем mobile версию со слайдером */
	.process-steps--mobile {
		display: block;
		position: relative;
        padding: unset;
        margin-bottom: 30px;
	}

	.process-steps--mobile .process-steps__slider-wrapper {
		position: relative;
	}

	.process-steps--mobile .swiper-slide {
		display: flex;
		flex-direction: column;
		height: auto;
	}

	.process-steps--mobile .process-card {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	/* Навигация слайдера снизу */
	.process-steps-slider-nav {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 30px;
	}

	/* Navigation arrows */
	.process-slider-prev,
	.process-slider-next {
		width: 20px;
		height: 20px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		cursor: pointer;
		transition: opacity 0.3s ease;
	}

	.process-slider-prev {
		background-image: url('/local/templates/lr-service/images/arow-left.svg');
	}

	.process-slider-next {
		background-image: url('/local/templates/lr-service/images/arow-right.svg');
	}

	.process-slider-prev:hover,
	.process-slider-next:hover {
		opacity: 0.7;
	}

	.process-slider-prev::after,
	.process-slider-next::after {
		display: none;
	}
}

@media (max-width: 440px){
	.banner-content h2, .banner-content h1{font-size: 20px;}
	.banner-content p.lead{font-size: 17px;}
	.banner-content{padding: 35px;}
	.banner-form .form-row{align-items: stretch;flex-direction: column-reverse;margin-top: 0px;}
	.advantages-row{padding: 0px 0 48px 0;}
	.history-stats{padding: 0px 0;}
	.service-reception{padding: 0px 0;}
	.reception-video--new .section-title{margin: 0 0 24px 0;}
	.process-steps{padding: 15px 0;}
    .swiper-slide .banner-content.main-page {
        top: 180px !important;
    }
    #content:has(.catalog-detail-section) .h1-title,
    .section-title, .h1-title, .faq-title {
        font-size: 24px;
    }

    p {
        font-size: 14px;
    }
	.specialist-name{min-height: 0px;}
	.price-table__header{text-align: left;}
	.advantage-check{flex-direction: row;}
	.advantage-text{font-size: 14px;text-align: left;}
	.faq-question-text{font-size: 16px;}
	.faq-answer-content{font-size: 14px;}
	.faq-info-block{overflow: auto !important;}
	.faq-info-block h2, .faq-info-block h3{font-size: 16px;}
	.faq-info-block p{font-size: 14px;}
	.custom-select-trigger{margin-bottom: 45px; min-height: unset;}
	.reviews-section{padding: 10px 0;}
	.where-find__panel h3{margin: 0 0 18px;}
	.footer-logo{margin: 0 auto;}

    .logo-img {
        display: block;
        max-width: 44vw;
    }
	.user-actions{padding-left: 0px;gap: 17px;}

	.company-thank-you-title{font-size: 20px;}
	.company-thank-you{margin-bottom: 25px;}
	.price-list-section{padding: 0px 0;}
	.certificate-company{padding: 26px 0;}
	.service-detail-top > div{padding: 10px 20px;}
	.mb90{margin-bottom: 10px !important;}
	.catalog-items-grid{margin-bottom: 5px;}
	.service-detail .news-section{padding: 10px 0 0px;}
	.news-slider-section{padding: 0px 0 15px 0;}
	.service-about__content .section-title p{font-size: 28px;}
	.service-detail-bottom-form .form-title{padding-top: 10px;}
	.bx-breadcrumb .bx-breadcrumb-item + .bx-breadcrumb-item::before{margin: 0px 2px;}
	.catalog-product-card-title{font-size: 16px;}
	.catalog-product-card-buy{min-width: 0px;}
	.pagination-btn{width: 40px;height: 40px;}
    .step-title p {
        font-size: 22px;
    }
    .step-text {
        font-size: 15px;
    }



    .step-title {
        margin-bottom: unset;
    }
    .reviews-title-row {
        align-items: flex-start;
        margin-bottom: unset;
        margin-top: 30px;
    }
    .certificate-company .certificate-slider-wrapper {
        max-width: calc(100% - 30px);
        padding-bottom: 60px;
    }
    .certificate-company .certificate-prev,
    .certificate-company .certificate-next {
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .certificate-company .certificate-next {
        margin-left: 30px;
    }
    .certificate-company .certificate-prev {
        margin-left: -30px;
    }
    .certificate-company {
        padding: 25px 0 0 0;
    }
    .certificate-company .section-title {
        margin-bottom: 30px;
    }
    .catalog-product-card-volume {
        padding: 7px 25px;
    }
    .service-about {
        margin-top: 20px;
    }
    .contact-page .contacts-row.contacts-row--notes {
        margin-bottom: 30px;
    }
    .contact-page .callback-form-inline {
        margin: 35px 0;
    }
    .callback-form-inline .form-title {
        font-size: 25px;
    }
    .banner-form .note {
        font-size: 10px;
    }
    .callback-form-inline .banner-form .form-row {
        flex-direction: column;
    }
    .history-text-block {
        font-size: 18px;
    }
    .callback-form-inline {
        padding: 30px 20px;
    }
    .callback-form-inline .form-title {
        margin-bottom: 25px;
    }
    .news-section .all-news-button-wrapper .btn-primary {
        width: 160px;
        padding: 16px; 
        font-size: 16px;
    }
    .detail-description {
        order: -1;
        margin-bottom: 5px;
    }
    .detail-description-title {
        margin-top: 0;
    }
    .product-item-detail .detail-info {
        padding: 20px;
    }

    .search-toggle-btn {
        justify-content: center;
    }



}

/* ================= history-timeline slider styles ================= */
/* Показываем desktop версию по умолчанию, скрываем mobile */
.history-timeline--mobile {
	display: none;
}

.history-timeline--desktop {
	display: flex;
}

@media (max-width: 450px) {
	/* Скрываем desktop версию, показываем mobile слайдер */
	.history-timeline--desktop {
		display: none;
	}

	.history-timeline--mobile {
		display: block;
		position: relative;
	}

	.history-timeline--mobile .swiper-slide {
		height: auto;
		display: flex;
	}

	.history-timeline--mobile .timeline-item {
		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
	}

	/* Навигация слайдера снизу */
	.history-timeline-slider-nav {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 15px;
	}
    .history-timeline {
        margin-bottom: 20px;
    }

	.history-slider-prev,
	.history-slider-next {
		position: static;
		width: 20px;
		height: 20px;
		background-color: transparent;
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		margin: 0;
		transition: opacity var(--transition);
	}

	.history-slider-prev {
		background-image: url('/local/templates/lr-service/images/arow-left.svg');
	}

	.history-slider-next {
		background-image: url('/local/templates/lr-service/images/arow-right.svg');
	}

	.history-slider-prev:hover,
	.history-slider-next:hover {
		opacity: 0.7;
	}

	.history-slider-prev::after,
	.history-slider-next::after {
		display: none;
	}
}
/* ================= end history-timeline slider styles ================= */

/* ================= mobile stock display (product detail) ================= */
/* Скрываем мобильную версию по умолчанию */
.detail-stock-mobile {
	display: none;
}

/* Показываем под h1 на мобильных (≤440px) */
@media (max-width: 440px) {
	.detail-stock-mobile {
		display: inline-block;
		padding: 6px 12px;
		border-radius: var(--border-radius-small);
		font-size: 14px;
		font-weight: 500;
		text-align: center;
        margin-bottom: 15px;

	}
	
	/* Статус "В наличии" */
	.detail-stock-mobile.detail-stock--in {
		background: #e8f5e9;
		color: var(--color-primary);
	}
	
	/* Статус "Под заказ" */
	.detail-stock-mobile.detail-stock--out {
		background: #ffebee;
		color: #c62828;
	}
	
	/* Статус "Осталось X шт." */
	.detail-stock-mobile.detail-stock--limited {
		background: #fff3e0;
		color: #ef6c00;
	}
}
/* ================= end mobile stock display ================= */

/* ================= reviews-categories-pills slider styles ================= */
/* Desktop версия отображается по умолчанию */
.reviews-categories-pills--mobile {
	display: none;
}

@media (max-width: 450px) {
	/* Скрываем desktop версию */
	.reviews-categories-pills--desktop {
		display: none;
	}

	/* Показываем mobile версию со слайдером */
	.reviews-categories-pills--mobile {
		display: block;
		position: relative;
        width: 100%;
	}

	.reviews-categories-pills--mobile .pills-slider-wrapper {
		position: relative;
	}

	.reviews-categories-pills--mobile .swiper-slide {
		display: flex;
		flex-direction: column;
		height: auto;
	}

	.reviews-categories-pills--mobile .pill {

		display: flex;
		flex-direction: column;
		height: 100%;
		width: 100%;
	}

	/* Навигация слайдера снизу */
	.pills-slider-nav {
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 15px;
	}

	/* Navigation arrows */
	.pills-slider-prev,
	.pills-slider-next {
		width: 20px;
		height: 20px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		cursor: pointer;
		transition: opacity 0.3s ease;
	}
    .reviews-header {
        margin-bottom: 10px;
    }

	.pills-slider-prev {
		background-image: url('/local/templates/lr-service/images/arow-left.svg');
	}

	.pills-slider-next {
		background-image: url('/local/templates/lr-service/images/arow-right.svg');
	}

	.pills-slider-prev:hover,
	.pills-slider-next:hover {
		opacity: 0.7;
	}

	.pills-slider-prev::after,
	.pills-slider-next::after {
		display: none;
	}
    .detail-price-flex:has(.catalog-product-card-cart) .actions-col {
        flex-direction: column;
        gap: unset;
        align-items: center;
    }
}
/* ================= end reviews-categories-pills slider styles ================= */

@media (max-width: 400px){
    .detail-price-flex .actions-col {
    flex-direction: column;
    gap: unset;
    align-items: center;
  }
  .detail-favorite-row:not(:has(.catalog-product-card-cart)) {
    margin-top: 12px;
  }
  .detail-price-flex:not(:has(.catalog-product-card-cart)) .actions-top .catalog-product-card-buy {
    min-width: unset;
    width: 100%;
  }
  .detail-price-flex:not(:has(.catalog-product-card-cart)) .actions-top {
    width: 100%;
  }
}
@media (max-width: 360px){
    .step-title p {
        font-size: 19px;
    }
    .step-text {
        font-size: 13px;
    }
    .swiper-slide .banner-content.main-page {
        top: 130px !important;
        bottom: auto;
    }
    .banner-slider .swiper:has(.banner-content.main-page) {
        height: 800px !important;
    }
	.history-text-block{font-size: 19px;}
	.address-remove.address-remove--icon{top: 10px !important;}
	.banner-utp-item span{font-size: 12px;}
	.banner-utp-left{top: 6px;}
}

/* ================= attention banner styles ================= */
.attention-banner {
    padding: 40px 0;
}

.attention-banner__inner {
    display: flex;
    align-items: center;
    gap: 52px;
    background-color: var(--color-primary);
    padding: 20px 60px;
}

.attention-banner__icon {
    flex-shrink: 0;
    width: 94px;
    height: 71px;
}

.attention-banner__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
}

.attention-banner__text {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.0;
    color: var(--color-white);
}

.attention-banner__text strong {
    color: var(--color-dark);
    font-weight: 700;
}

@media (max-width: 1200px) {
    .attention-banner__text {
        font-size: 24px;
    }
    
    .attention-banner__icon {
        width: 70px;
        height: 53px;
    }
    
    .attention-banner__inner {
        gap: 30px;
        padding: 30px 40px;
    }
}

@media (max-width: 768px) {
    .attention-banner {
        padding: 30px 0;
    }
    
    .attention-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .attention-banner__text {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .attention-banner__icon {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .attention-banner__text {
        font-size: 18px;
    }
}
/* ================= end attention banner styles ================= */

/* ================= spare parts section styles ================= */
.spare-parts-section {
    padding: 50px 0;
}

.spare-parts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spare-parts-card {
    overflow: hidden;
    background: var(--color-background-service);
}

.spare-parts-card__header {
    background: var(--color-p);
    padding: 28px 30px;
}

.spare-parts-card__title {
    font-weight: 700;
    font-size: 21px;
    line-height: 1.0;
    color: var(--color-white);
    text-transform: uppercase;
    margin: 0;
}

.spare-parts-card__content {
    padding: 40px 30px;
}

.spare-parts-card__content--video {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 0;
}

.spare-parts-card__content--video .spare-parts-card__text {
    padding: 0 30px;
}

.spare-parts-card__video {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.spare-parts-card__video video {
    width: 100%;
    height: auto;
    display: block;
}

.spare-parts-card__text {
    font-weight: 500;
    font-size: 21px;
    line-height: 1.42;
    color: var(--color-dark);
}

.spare-parts-card__text p {
    margin: 0 0 20px 0;
    color: var(--color-dark);
}

.spare-parts-card__text p:last-child {
    margin-bottom: 0;
}

.spare-parts-card__text ul {
    margin: 0 0 20px 0;
    padding-left: 32px;
    list-style-type: disc;
}

.spare-parts-card__text ul:last-child {
    margin-bottom: 0;
}

.spare-parts-card__text li {
    margin-bottom: 8px;
}

.spare-parts-card__text li:last-child {
    margin-bottom: 0;
}

.spare-parts-card__subtitle {
    font-weight: 800;
    font-size: 21px;
    line-height: 1.42;
    color: var(--color-dark);
    margin: 20px 0 15px 0;
}

@media (max-width: 1200px) {
    .spare-parts-card__title {
        font-size: 18px;
    }
    
    .spare-parts-card__text {
        font-size: 18px;
    }
    
    .spare-parts-card__subtitle {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .spare-parts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spare-parts-section {
        padding: 40px 0;
    }
    
    .spare-parts-card__content {
        padding: 30px 20px;
    }
    
    .spare-parts-card__header {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .spare-parts-card__title {
        font-size: 16px;
    }
    
    .spare-parts-card__text {
        font-size: 16px;
    }
    
    .spare-parts-card__subtitle {
        font-size: 16px;
    }
    
    .spare-parts-card__text ul {
        padding-left: 24px;
    }
}
/* ================= end spare parts section styles ================= */

/* ================= advantages section styles ================= */
.advantages-section {
    padding: 30px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.advantages-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.advantages-item__icon {
    flex-shrink: 0;
    width: 37px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantages-item__text {
    flex: 1;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-black);
}

.advantages-item__text strong,
.advantages-item__text b {
    font-weight: 800;
}

@media (max-width: 1200px) {
    .advantages-grid {
        gap: 25px;
    }
    
    .advantages-item__text {
        font-size: 19px;
    }
}

@media (max-width: 900px) {
    .advantages-section {
        padding: 40px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .advantages-item {
        gap: 15px;
    }
    
    .advantages-item__text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .advantages-section {
        padding: 30px 0;
    }
    
    .advantages-grid {
        gap: 25px;
    }
    
    .advantages-item__icon {
        width: 32px;
        height: 38px;
    }
    
    .advantages-item__text {
        font-size: 16px;
    }
}
/* ================= end advantages section styles ================= */

/* ================= service reception steps title styles ================= */
.service-reception__steps-lr-info {
    padding: 60px 0;
}

.service-reception__title {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 50px 0;
    line-height: 1.2;
}

.fix-divider .service-reception__title {
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .service-reception__title {
        font-size: 42px;
        margin-bottom: 40px;
    }
}

@media (max-width: 900px) {
    .service-reception__steps-lr-info {
        padding: 40px 0;
    }
    
    .service-reception__title {
        font-size: 36px;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .service-reception__steps-lr-info {
        padding: 30px 0;
    }
    
    .service-reception__title {
        font-size: 28px;
        margin-bottom: 25px;
    }
}
/* ================= end service reception steps title styles ================= */

/* ================= service content section styles ================= */
.service-content-section {
    padding: 60px 0;
}

.service-content-section.lr-service {
    padding: 40px 0;
}

.service-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.service-content-block:first-child {
    margin-bottom: 60px;
}

.service-content-block.to-text {
    align-items: stretch;
}

.service-content-block:last-child {
    margin-top: 60px;
}

.service-content-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-content-image-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    height: 100%;
}

.service-content-title {
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.3;
}

.service-content-description {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.6;
}

.service-content-description p {
    margin: 0 0 20px 0;
}

.service-content-description p:last-child {
    margin-bottom: 0;
}

.service-content-description ul {
    margin: 20px 0;
    padding-left: 25px;
    list-style-type: disc;
}

.service-content-description ul li {
    line-height: 1.6;
}

.service-content-description ul li:last-child {
    margin-bottom: 0;
}

.service-content-image {
    width: 100%;
    height: 665px;
    overflow: hidden;
}

.service-content-image.full {
    height: 100%;
}

.service-content-block.to-text .service-content-image {
    height: auto;
}

.service-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-mission-box {
    font-size: 17px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.6;
    margin-top: auto;
    margin-bottom: 20px;
}

.service-mission-box p {
    margin: 0;
}

.service-mission-box strong {
    font-weight: 600;
}

@media (max-width: 1200px) {
    .service-content-block {
        gap: 40px;
    }
    
    .service-content-title {
        font-size: 28px;
    }
    
    .service-content-image {
        height: 550px;
    }
}

@media (max-width: 900px) {
    .service-content-section {
        padding: 40px 0;
    }
    
    .service-content-block {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .service-content-title {
        font-size: 26px;
    }
    
    .service-content-description {
        font-size: 16px;
    }
    
    .service-content-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .service-content-section {
        padding: 30px 0;
    }
    
    .service-content-block {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .service-content-title {
        font-size: 22px;
    }
    
    .service-content-description {
        font-size: 15px;
    }
    
    .service-content-image {
        height: 300px;
    }
}
/* ================= end service content section styles ================= */

/* ================= kuzov workshop styles ================= */
.kuzov-workshop {
    position: relative;
}

.kuzov-workshop .section-title {
    margin: 0 0 30px 0;
}

.kuzov-workshop__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.kuzov-workshop__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kuzov-workshop__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kuzov-workshop__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 18px;
    line-height: 1.5;
    color: var(--color-dark);
}

.kuzov-workshop__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    margin-top: 2px;
}

.kuzov-workshop__image {
    overflow: hidden;
}

.kuzov-workshop__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kuzov-workshop__image--top {
    /* height: 420px; */
}

.kuzov-workshop__image--bottom {
    /* height: 370px; */
}

@media (max-width: 1200px) {
    /* .kuzov-workshop__image--top {
        height: 360px;
    } */

    .kuzov-workshop__image--bottom {
        height: 320px;
    }

    .kuzov-workshop__item {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .kuzov-workshop__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kuzov-workshop__image--top {
        height: 300px;
    }

    .kuzov-workshop__image--bottom {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .kuzov-workshop__item {
        font-size: 15px;
        gap: 10px;
    }

    .kuzov-workshop__icon {
        width: 26px;
        height: 26px;
    }

    .kuzov-workshop__image--top {
        height: 240px;
    }

    .kuzov-workshop__image--bottom {
        height: 220px;
    }
}
/* ================= end kuzov workshop styles ================= */

/* ================= service info section styles ================= */
.service-info-section {
    padding: 60px 0;
    position: relative;
}

.service-info-section.inf-page {
    margin-bottom: 35px;
    margin-top: 40px;
}

.service-info-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-background-service);
    z-index: 1;
}

.service-info-content {
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-dark);
    line-height: 1.5;
}

.service-info-content p {
    margin: 0;
}

@media (max-width: 1200px) {
    .service-info-content {
        font-size: 22px;
    }
}

@media (max-width: 900px) {
    .service-info-section {
        padding: 40px 0;
    }
    
    .service-info-content {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .service-info-section {
        padding: 30px 0;
    }
    
    .service-info-content {
        font-size: 18px;
    }
}
.has-iframe .f-html {
    background: unset;
    padding: 10px;
}
/* ================= end service info section styles ================= */




.wrapper-banner-long {
    position: relative;
}

.banner-content.long {
    bottom: unset;
    top: 0;
    background: #F1F3F5;
}

.wrapper-banner-long:has(.banner-content.long.short) {
    margin-bottom: 72px;
}

.banner-content.long.short {
    height: 42px;
    padding: 0;
}

/* ================= banner bottom description styles ================= */
.banner-bottom-desc {
    position: relative;
    background: var(--color-p);
    z-index: 2;
}

.banner-bottom-desc__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 35px var(--container-padding);
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.banner-bottom-desc__icon {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
}

.banner-bottom-desc__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner-bottom-desc__text {
    color: var(--color-white);
    font-size: 23px;
    font-weight: 700;
    line-height: normal;
    max-width: 1026px;
}

@media (max-width: 1024px) {
    .banner-bottom-desc__inner {
        padding: 25px var(--container-padding);
    }

    .banner-bottom-desc__text {
        font-size: 18px;
    }

    .banner-bottom-desc__icon {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .banner-bottom-desc__text {
        font-size: 16px;
    }

    .banner-bottom-desc__icon {
        width: 48px;
        height: 48px;
    }

    .banner-bottom-desc__inner {
        padding: 20px var(--container-padding);
        gap: 14px;
    }
}

@media (max-width: 500px) {
    .banner-bottom-desc__text {
        font-size: 14px;
    }

    .banner-bottom-desc__icon {
        width: 40px;
        height: 40px;
    }

    .banner-bottom-desc__inner {
        padding: 16px var(--container-padding);
        gap: 12px;
    }
}
/* ================= end banner bottom description styles ================= */

.services-prices-utp {
    margin-top: 132px;

}

.advantages-lr.services-prices-utp .advantages-row {
    padding-top: 0;
    padding-bottom: 28px;
}

.service-reception__steps-lr-info.why-trust-us {
    background: #F9F9F9;
    padding: 60px 0 25px;
}

.fix-divider-section.fix-divider-section.fix-divider-section {
    padding: 30px 0 80px 0;
    margin-bottom: 0;
}

.fix-divider-section .section-title {
    margin: 0 0 30px;
    max-width: 1100px;
}

.repair-pages-desc {
    font-weight: 700;
    font-size: 24px;
}

.repair-pages-wrapper .lr-services-prices.price-list h2 {
    margin-bottom: 40px;
}

.repair-pages-wrapper .lr-services-prices.price-list {
    margin: 30px 0;
    padding-bottom: 60px;
}

.repair-pages-wrapper .owner-guarantee-section.lr-services-prices {
    /* margin: 30px 0; */
    margin: 0;
    padding: 0 0 20px 0;
}

.repair-pages-wrapper .experts-experience-25 {
    margin: 30px 0;
    padding: 40px 0;
}

.original-and-analogues .section-title {
    max-width: 956px;
}

.original-and-analogues__gallery-wrapper {

}

.repair-pages-wrapper .service-reception__steps-lr-info.why-trust-us {
    background: unset;
}

.repair-pages-wrapper .price-list__header {
    margin-bottom: 0;
}

.repair-pages-wrapper .price-list-section.price-list-section {
    padding: 40px 0 ;
}

.fix-divider-section .akcii-header {
    margin-bottom: 0!important;
}

.fix-divider-section .section-header {
    margin: 0;
}

.fix-divider-section .service-content-text {
    gap: 0;
}

.fix-divider-section .section-header {
    margin-top: 0;
}

.why-trust-us .step-number {
    font-size: 42px;
}

.why-trust-us .step-icon {
    width: 63px;
    height: 63px;
    margin-bottom: 25px;
}

.why-trust-us .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-trust-us .step-text {
    font-size: 24px;
    line-height: 36px;
    margin-top: 0;
    font-weight: 700;
}

.lr-services-prices.price-list  h2 {
    margin-bottom: 0;
}

.why-trust-us .service-reception__steps {
    margin-bottom: 0;
    padding: 60px 0;
}

.repair-pages-wrapper .why-trust-us .service-reception__steps, .lr-service-price-wrapper .why-trust-us .service-reception__steps {
    padding-top: 0;
}

.fix-divider-section .service-reception__steps {
    padding-bottom: 0;
}

.why-trust-us .reception-step:nth-child(4) .step-number, .why-trust-us .reception-step:nth-child(3) .step-number {
    margin-left: 0;
}

.why-trust-us {
    margin-bottom: 80px;
}


.fix-divider .why-trust-us {
   margin-bottom: 60px;
}

.fix-divider .why-trust-us .service-reception__steps {
    padding-bottom: 0;
}

.akcii-section.lr-services-prices {
    padding: 0;
    margin-bottom: 80px;
}

.lr-services-prices .slide-content .slide-footnote {
    font-weight: 700;
    margin-bottom: 25px;
}

.lr-services-prices.akcii-section .akcii-slide {
    min-height: 506px;
}

.lr-services-prices .akcii-slide .slide-button {
    margin-top: auto;
    margin-bottom: 0;
    padding: 28px 44px;
}

.lr-services-prices .slide-content--bottom .slide-button {
    order: 4;
    margin-top: unset;
}

.akcii-section.services-lr .akcii-slide .slide-button {
    align-self: center;
    width: 189px;
    padding: 21px 30px;
}


.lr-services-prices .slide-content--bottom {
    padding: 35px 20px 30px;
}

.lr-services-prices .slide-content--top {
    padding: 35px 25px 30px;
}


.lr-services-prices.video-gallery-section {
    padding: 0;
    margin-bottom: 80px;
}

.akcii-section.services-lr.lr-services-prices .akcii-slider-wrapper {
    margin-bottom: 60px;
}



.akcii-section.services-lr.lr-services-prices {
    margin-bottom: 60px;
}


.centered {
    display: flex;
    justify-content: center;
}

.akcii-footer + .centered {
    margin-top: 32px;
}

.lr-services-prices .price-list-section {
    padding: 60px 0 0;
}

.lr-services-prices .section-header {
    margin-top: unset;
}

.normal-weight {
    font-weight: 400;
}


.price-list__banner {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 18px 24px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 21px;
    font-weight: 700;
    margin-top: 15px;
}

.price-list__banner p {
    max-width: 1015px;
    text-align: center;
}

.light-gray {
    background: var(--color-background-service);
}

.lr-services-prices.price-list {
   padding-bottom: 100px;

}

.lr-service-cost-calculator {
    padding-top: 75px;
    margin-bottom: 100px;
}

.lr-services-prices-consultation-open-form {

}

.lr-services-prices-consultation__inner {
    background: #484F55;
    padding: 80px 90px 80px 65px;
    position: relative;
}

.lr-services-prices-consultation__content {
    min-width: 0;
}

.lr-services-prices-consultation__form {
    width: 100%;
}

.lr-services-prices-consultation__fields {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.lr-services-prices-consultation__input {
    flex: 1;
}

.lr-services-prices-consultation__submit {
    white-space: nowrap;
}

.lr-services-prices-consultation__agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.lr-services-prices-consultation__expert {
    position: absolute;
    text-align: center;
    top: 41px;
    right: 103px;
}

.lr-services-prices-consultation__expert-photo {
    width: 156px;
    height: 156px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
}

.lr-services-prices-consultation__expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lr-services-prices-consultation__expert-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.lr-services-prices-consultation__title {
    font-size: 30px!important;
    line-height: 120%;
    margin-top: 0;
    margin-bottom: 51px!important;
    color: white;
}

.lr-services-prices-consultation__subtitle {
    font-size: 24px;
    font-weight: 400;
    max-width: 805px;
    margin-bottom: 57px;
    color: var(--color-white);
}

.lr-services-prices-consultation__form.banner-form input {
    padding: 27px;
    font-weight: 400;
}

.lr-services-prices-consultation__form.banner-form button {
    padding: 15px 24px;
    width: 100%;
}

.lr-services-prices-consultation__field:nth-child(1) {
    flex: 590;
}

.lr-services-prices-consultation__field:nth-child(2) {
    flex: 490;
}

.lr-services-prices-consultation__field:nth-child(3) {
    flex: 333;
}

.lr-services-prices-consultation__agreement.form-checkbox label::before {
    width: 10px;
    height: 10px;
    top: 10px;
}

.lr-services-prices-consultation__agreement.form-checkbox label::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 9px;
    transform: translateY(-50%) rotate(45deg);
    width: 3px;
    height: 5px;
    border: solid var(--color-white, #fff);
    border-width: 0 1px 1px 0;
    opacity: 0;
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.lr-services-prices-consultation__agreement .lr-services-prices-consultation__label {
    padding-left: 22px;
    max-width: 565px;
    font-weight: 400;
    color: #BEBEBE;
}

.lr-services-prices-consultation-open-form {
    margin-bottom: 100px;
}

/* ================= kuzov consultation form styles ================= */
.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__inner--kuzov {
    display: flex;
    align-items: flex-start;
    gap: 190px;
    padding: 60px 80px;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__content--kuzov {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__title {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0;
    color: var(--color-white);
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    margin: 0;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__fields--kuzov {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__field--full {
    width: 100%;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov input[type="text"],
.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov input[type="tel"],
.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov textarea {
    width: 100%;
    padding: 24px 38px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 0;
    background: var(--color-white);
    color: var(--color-dark);
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov input::placeholder,
.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov textarea::placeholder {
    color: var(--color-p);
    font-weight: 400;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__textarea {
    resize: vertical;
    min-height: 75px;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__agreement.form-checkbox {
    margin-top: 6px;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__agreement.form-checkbox label {
    padding-left: 30px;
    font-size: 14px;
    color: #BEBEBE;
    font-weight: 400;
    line-height: 1.4;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__agreement.form-checkbox label::before {
    width: 18px;
    height: 18px;
    top: 2px;
    transform: none;
    border-color: rgba(255, 255, 255, 0.3);
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__agreement.form-checkbox label::after {
    left: 6px;
    top: 9px;
    transform: rotate(45deg);
    width: 5px;
    height: 9px;
    border-width: 0 2px 2px 0;
}

.lr-services-prices-consultation--kuzov .lr-services-prices-consultation__submit--kuzov {
    padding: 22px 60px !important;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    width: auto;
    max-width: 270px;
    height: auto;
    min-width: auto;
    border-radius: var(--border-radius);
}
.lr-services-prices.price-list.kuzovnoj-remont-prices {
    margin-top: 0;
}
.lr-services-prices.price-list.kuzovnoj-remont-prices .price-list-section {
    background: #fff;
}

.owner-guarantee-section.lr-services-prices.light-gray.owner-guarantee-kuzovnoj-remont{
    padding: 30px 0px 30px 0;
}

@media (max-width: 1200px) {
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__inner--kuzov {
        padding: 50px 50px;
        gap: 40px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__content--kuzov {
        flex: 0 0 350px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__title {
        font-size: 26px;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 1024px) {
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__inner--kuzov {
        flex-direction: column;
        gap: 30px;
        padding: 40px 40px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__content--kuzov {
        flex: none;
        width: 100%;
    }

    .repair-pages-wrapper .lr-services-prices-consultation-open-form.lr-services-prices-consultation.fix-divider-section {
        padding-top: 60px!important;
    }

    #content .repair-pages-wrapper .fix-divider-section.fix-divider-section.fix-divider-section.video-gallery-section {
        padding-bottom: 20px !important;
    }
    .akcii-section .section-header-wrapper .section-title {
        margin-bottom: 0;
    }
    .repair-pages-wrapper .choose-us .section-title {
        margin-bottom: 40px;
    }
    .repair-pages-wrapper .manufacters-slider {
        padding-bottom: 0!important;
    }
    .repair-pages-wrapper .manufacters-slider + .lr-services-prices-consultation-open-form.lr-services-prices-consultation.fix-divider-section {
        padding-top: 0!important;
    }
    .repair-pages-wrapper .main-page .news-section {
        padding-top: 0;
    }
    .repair-pages-wrapper .main-page .news-section .section-title {
        margin-bottom: 40px;
    }
    .repair-pages-wrapper .owner-guarantee-section.lr-services-prices {
        margin-top: 60px!important;
    }
    .repair-pages-wrapper .owner-guarantee-title {
        margin-bottom: 40px;
    }
    .services-prices-utp {
        margin-top: 60px;
    }
    .advantages-lr.services-prices-utp .advantages-row {
        padding-bottom: 0;
    }
    .lr-service-cost-calculator:has(.lr-service-cost-calculator__title) {
        padding-top: 20px;
    }
    .lr-service-cost-calculator {
        margin-bottom: 60px;
    }
    .original-and-analogues:has(.original-and-analogues__title) {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__inner--kuzov {
        padding: 30px 20px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__desc {
        font-size: 15px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov input[type="text"],
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov input[type="tel"],
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__form--kuzov textarea {
        padding: 18px 24px;
        font-size: 14px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__submit--kuzov {
        width: 100%;
        max-width: none;
        padding: 18px 40px;
    }

    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__title {
        font-size: 22px;
        margin-bottom: 15px !important;
    }
    .lr-services-prices-consultation__title {
        margin-bottom: 15px !important;
    }
}
/* ================= end kuzov consultation form styles ================= */

/* ================= tehnicheskoe consultation form styles ================= */
.tehnicheskoe .lr-services-prices-consultation__inner {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    padding: 52px 80px 60px 80px;
}

.tehnicheskoe .lr-services-prices-consultation__content {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
}

.tehnicheskoe .lr-services-prices-consultation__title {
    font-size: 42px !important;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 30px !important;
    color: var(--color-white);
    font-weight: 700;
}

.tehnicheskoe .lr-services-prices-consultation__desc {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-white);
    margin: 0;
    max-width: 520px;
}

.tehnicheskoe .lr-services-prices-consultation__form {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tehnicheskoe .lr-services-prices-consultation__fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tehnicheskoe .lr-services-prices-consultation__field--full {
    width: 100%;
}

.tehnicheskoe .lr-services-prices-consultation__form input[type="text"],
.tehnicheskoe .lr-services-prices-consultation__form input[type="tel"] {
    width: 100%;
    padding: 24px 38px;
    font-size: 16.5px;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 0;
    background: var(--color-white);
    color: var(--color-dark);
    box-sizing: border-box;
    font-family: 'Inter', 'Manrope', sans-serif;
    height: 72px;
}

.tehnicheskoe .lr-services-prices-consultation__form textarea {
    width: 100%;
    padding: 24px 38px;
    font-size: 17px;
    font-weight: 400;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 0;
    background: var(--color-white);
    color: var(--color-dark);
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
    height: 121px;
    resize: vertical;
}

.tehnicheskoe .lr-services-prices-consultation__form input::placeholder,
.tehnicheskoe .lr-services-prices-consultation__form textarea::placeholder {
    color: var(--color-dark);
    font-weight: 400;
}

.tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox {
    margin-top: 6px;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label {
    padding-left: 30px;
    font-size: 17px;
    color: #BEBEBE;
    font-weight: 400;
    line-height: 1.3;
}

.tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label::before {
    width: 18px;
    height: 18px;
    top: 2px;
    transform: none;
    border-color: #767676;
    border-radius: 2.5px;
}

.tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label::after {
    left: 6px;
    top: 9px;
    transform: rotate(45deg);
    width: 5px;
    height: 9px;
    border-width: 0 2px 2px 0;
}

.tehnicheskoe .lr-services-prices-consultation__submit {
    padding: 24px 60px !important;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    width: auto;
    max-width: 269px;
    height: 70px;
    min-width: auto;
    border-radius: var(--border-radius);
    font-family: 'Inter', 'Manrope', sans-serif;
}

@media (max-width: 1200px) {
    .tehnicheskoe .lr-services-prices-consultation__inner {
        gap: 50px;
        padding: 50px 50px;
    }

    .tehnicheskoe .lr-services-prices-consultation__content {
        flex: 0 0 400px;
    }

    .tehnicheskoe .lr-services-prices-consultation__title {
        font-size: 34px !important;
    }

    .tehnicheskoe .lr-services-prices-consultation__desc {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .tehnicheskoe .lr-services-prices-consultation__inner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 40px;
    }

    .tehnicheskoe .lr-services-prices-consultation__content {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .tehnicheskoe .lr-services-prices-consultation__form {
        flex: none;
        width: 100%;
        max-width: 100%;
    }

    .tehnicheskoe .lr-services-prices-consultation__title {
        font-size: 30px !important;
    }
}

@media (max-width: 768px) {
    .tehnicheskoe .lr-services-prices-consultation__inner {
        padding: 32px 24px;
        gap: 24px;
    }

    .tehnicheskoe .lr-services-prices-consultation__title {
        font-size: 26px !important;
        margin-bottom: 16px !important;
    }

    .tehnicheskoe .lr-services-prices-consultation__desc {
        font-size: 16px;
    }

    .tehnicheskoe .lr-services-prices-consultation__form input[type="text"],
    .tehnicheskoe .lr-services-prices-consultation__form input[type="tel"] {
        padding: 20px 24px;
        height: 60px;
        font-size: 15px;
    }

    .tehnicheskoe .lr-services-prices-consultation__form textarea {
        padding: 20px 24px;
        height: 100px;
        font-size: 15px;
    }

    .tehnicheskoe .lr-services-prices-consultation__submit {
        max-width: 100%;
        width: 100%;
        height: 60px;
        padding: 18px 40px !important;
    }

    .tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tehnicheskoe .lr-services-prices-consultation__inner {
        padding: 24px 16px;
    }

    .tehnicheskoe .lr-services-prices-consultation__title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .tehnicheskoe .lr-services-prices-consultation__desc {
        font-size: 15px;
    }

    .tehnicheskoe .lr-services-prices-consultation__form input[type="text"],
    .tehnicheskoe .lr-services-prices-consultation__form input[type="tel"] {
        padding: 16px 20px;
        height: 54px;
        font-size: 14px;
    }

    .tehnicheskoe .lr-services-prices-consultation__form textarea {
        padding: 16px 20px;
        height: 90px;
        font-size: 14px;
    }

    .tehnicheskoe .lr-services-prices-consultation__submit {
        width: 100%;
        max-width: none;
        padding: 16px 40px !important;
        height: 54px;
    }

    .tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label {
        font-size: 13px;
        padding-left: 26px;
    }
}
/* ================= end tehnicheskoe consultation form styles ================= */

.symptoms-section {
    margin-bottom: 80px;
}

.symptoms-section__title {
    margin-bottom: 40px;
}

.symptoms-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 80px;
}

.symptoms-card {
    padding: 40px 43px;
    min-height: 283px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
}

.symptoms-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.symptoms-card--1 {
    background: #09882F;
}

.symptoms-card--2 {
    background: #0EAF3E;
}

.symptoms-card--3 {
    background: #063D16;
}

.symptoms-card--4 {
    background: #096C26;
}

.symptoms-card__number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.symptoms-card:hover .symptoms-card__number {
    opacity: 1;
}

.symptoms-card__text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.symptoms-warning {
    margin-bottom: 85px;
}

.symptoms-warning__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--color-primary);
    padding: 45px 55px;
}

.symptoms-warning__icon {
    flex-shrink: 0;
    width: 94px;
}

.symptoms-warning__icon img {
    width: 100%;
    height: auto;
}

.symptoms-warning__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.symptoms-warning__line {
    font-size: 30px;
    line-height: 1;
    color: #F9F9F9;
    margin: 0;
}

.symptoms-warning__line--medium {
    font-weight: 500;
}

.symptoms-warning__line--semibold {
    font-weight: 600;
}

.symptoms-advantages {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.symptoms-advantage {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.symptoms-advantage__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.symptoms-advantage__text {
    font-size: 17px;
    font-weight: 400;
    color: var(--color-p);
    line-height: 1.4;
    margin: 0;
}
/* ================= end symptoms section styles ================= */

/* ================= prof-equipment styles ================= */
.prof-equipment {
    padding: 60px 0;
}

.prof-equipment__title {
    margin-bottom: 40px;
}

.prof-equipment__layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.prof-equipment__content {
    flex: 0 0 48%;
    max-width: 48%;
}

.prof-equipment__intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-dark);
    margin: 0 0 30px;
}

.prof-equipment__subtitle {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 20px;
}

.prof-equipment__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.prof-equipment__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.prof-equipment__icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    margin-top: 2px;
}

.prof-equipment__item-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-dark);
    margin: 0;
}

.prof-equipment__outro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-dark);
}

.prof-equipment__image {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
}

.prof-equipment__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .prof-equipment__layout {
        flex-direction: column;
        gap: 40px;
    }

    .prof-equipment__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .prof-equipment__image {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .prof-equipment {
        padding: 40px 0;
    }

    .prof-equipment__title {
        margin-bottom: 25px;
    }

    .prof-equipment__intro,
    .prof-equipment__subtitle,
    .prof-equipment__item-text,
    .prof-equipment__outro {
        font-size: 15px;
    }

    .prof-equipment__icon {
        width: 30px;
        height: 30px;
    }

    .prof-equipment__image {
        border-radius: 12px;
    }
}
/* ================= end prof-equipment styles ================= */

/* ================= service-transparency styles ================= */
.service-transparency {
    margin-bottom: 40px;
}

.service-transparency__title {
    margin-bottom: 30px;
    margin-top: 0;
}

.service-transparency__text {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-dark);
    margin: 0px;
    max-width: 800px;
}

.service-transparency__slider-wrap {
    margin-top: 30px;
}

.service-transparency__compare {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    user-select: none;
    height: 260px;

}

.service-transparency__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-transparency__img--after {
    position: absolute;
    top: 0;
    left: 0;
    clip-path: inset(0 0 0 50%);
    pointer-events: none;
}

.service-transparency__divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: var(--color-primary);
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 5;
}

.service-transparency__handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 29px;
    background: var(--color-primary);
    border-radius: 6px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.service-transparency__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-transparency__item-title {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: var(--color-primary);
    font-size: 17px;
    color: var(--color-white);
    text-align: center;
    padding: 9px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}


.service-transparency__slider .main-slides {
    height: unset;
}

.service-transparency__swiper .main-slides {
    height: 330px;
}

.service-transparency__swiper .main-slides .slide-image {
    border-radius: var(--border-radius);
}

.slesarnyj-remont-transparency .service-transparency__swiper {
  max-height: 335px;
}

.service-transparency-prev {
    left: 0;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.service-transparency-next {
    right: 0;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.service-transparency-slider-nav {
    display: contents;
}

@media (max-width: 768px) {
    .service-transparency__slider-wrap {
        padding-bottom: 60px;
    }

    .service-transparency-slider-nav {
        display: flex;
        justify-content: center;
        gap: 40px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .service-transparency-slider-nav .service-transparency-prev,
    .service-transparency-slider-nav .service-transparency-next {
        position: static;
        width: 20px;
        height: 20px;
        margin: 0;
    }
}
/* ================= end service-transparency styles =================  */

.owner-guarantee-section.lr-services-prices {
    margin-bottom: 12px;
}

.lounge-area__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.lounge-area__features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lounge-area__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lounge-area__feature-number {
    font-size: 42px;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
    transition: opacity 0.3s ease;
    color: #484F55;

}


.lounge-area__feature {
    background: #F9F9F9;
    padding: 50px 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    transition: var(--transition);
}

.lounge-area__feature--active {
    background: #09882F;
}

.lounge-area__feature-text {
    font-size: 17px;
    color: #1E1E1E;
    transition: var(--transition);
}

.lounge-area__feature--active .lounge-area__feature-text {
    color: white;
}


.lounge-area__feature--active .lounge-area__feature-number {
    color: white;
}

.lounge-area {
    margin-bottom: 100px;
}

.lounge-area__feature:hover .lounge-area__feature-number, .lounge-area__feature:hover .lounge-area__feature-text {
    color: white;
}

.lounge-area__feature:hover {
    background: #09882F;
    cursor: pointer;
}

/* ================= specialization-area styles ================= */
.specialization-area__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.specialization-area__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.specialization-area__features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.specialization-area__feature {
    background: var(--color-background-service);
    padding: 50px 60px;
    display: flex;
    gap: 50px;
    align-items: center;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.specialization-area__feature--active {
    background: var(--color-primary);
}

.specialization-area__feature-number {
    font-size: 42px;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
    transition: opacity 0.3s ease;
    color: var(--color-p);
    flex-shrink: 0;
}

.specialization-area__feature-text {
    font-size: 17px;
    color: var(--color-dark);
    transition: var(--transition);
    margin: 0;
}

.specialization-area__feature--active .specialization-area__feature-text {
    color: var(--color-white);
}

.specialization-area__feature--active .specialization-area__feature-number {
    color: var(--color-white);
}

.specialization-area__feature:hover .specialization-area__feature-number,
.specialization-area__feature:hover .specialization-area__feature-text {
    color: var(--color-white);
}

.specialization-area__feature:hover {
    background: var(--color-primary);
    cursor: pointer;
}
/* ================= end specialization-area styles ================= */

/* ================= consultation bottom form styles ================= */
.lr-services-prices-consultation--bottom .lr-services-prices-consultation__inner--bottom {
    padding: 60px 65px;
}

.lr-services-prices-consultation--bottom .lr-services-prices-consultation__title {
    margin-bottom: 10px !important;
}

.lr-services-prices-consultation--bottom .lr-services-prices-consultation__subtitle {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .lr-services-prices-consultation--bottom .lr-services-prices-consultation__inner--bottom {
        padding: 40px 30px;
    }

    .lr-services-prices-consultation--bottom .lr-services-prices-consultation__title {
        font-size: 24px !important;
    }

    .lr-services-prices-consultation--bottom .lr-services-prices-consultation__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .lr-services-prices-consultation--bottom .lr-services-prices-consultation__inner--bottom {
        padding: 30px 20px;
    }

    .lr-services-prices-consultation--bottom .lr-services-prices-consultation__title {
        font-size: 20px !important;
    }
}
/* ================= end consultation bottom form styles ================= */

.experts-experience-25 {
    padding-top: 85px;
    padding-bottom: 90px;
}

.experts-experience-25__title {
    margin-top: 0;
    margin-bottom: 73px;
}

.experts-experience-25__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.experts-experience-25__item {
    background: #09882F;
    padding: 70px 50px;
    font-weight: 700;
    transition: all 0.3s ease;

}

.experts-experience-25__item:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.experts-experience-25__item:hover .experts-experience-25__number{
    color: #FFF;
    transition: all 0.3s ease;
}
.experts-experience-25__item:nth-child(2) {
    background: #0EAF3E;
}

.experts-experience-25__item:nth-child(3) {
    background: #063D16;
}

.experts-experience-25__item:nth-child(4) {
    background: #096C26;
}

.experts-experience-25__number {
    margin-bottom: 25px;
    font-size: 42px;
    color: #FFFFFF52;
}

.experts-experience-25__text {
    font-size: 24px;
    color: white;
}

.experts-experience-25__list {
    margin-bottom: 15px;
}


.reception-experts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: stretch;
    margin-bottom: 40px;
}

.experts-experience-25__actions {
    display: flex;
    justify-content: center;
}

.experts-experience-25__actions button {
    padding: 28px 40px;
}

.original-and-analogues__title {
    margin: 0 0 32px;
}

.original-and-analogues {
    padding-top: 100px;
}

.original-and-analogues__text {
    margin: 0 0 40px;
    font-size: 17px;
    font-weight: 500;
}

.original-and-analogues__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.original-and-analogues__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.original-and-analogues-prev {
    left: 0;
    background-image: url('/local/templates/lr-service/images/arow-left.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.original-and-analogues-next {
    right: 0;
    background-image: url('/local/templates/lr-service/images/arow-right.svg');
    background-repeat: no-repeat;
    background-position: center;
}



.wrapper-original-and-analogues {
    position: relative;
    overflow: visible;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
}

.original-and-analogues__slider {
    overflow: hidden;
    max-width: calc(var(--container-width) - 30px);
    margin: 0 auto;

}

.original-and-analogues__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 220px;
    padding: 40px
}

.original-and-analogues__text {
    max-width: 692px;
    color: #484F55;
}

.repair-pages-wrapper .where-find {
    padding-top: 60px;
}

.original-and-analogues__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-content: start;
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
    position: relative;
}

.original-and-analogues__gallery-wrapper {
    max-width: calc(var(--container-width) + 100px);
    margin: 0 auto;
    position: relative;
}


.original-and-analogues__gallery > :first-child {
    grid-column: 1 / -1;
    height: 421px;
}

.original-and-analogues__item-alternative {
    height: 151px;
}

.original-and-analogues__item-alternative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.original-and-analogues__gallery-main {
    height: 421px;
}

.original-and-analogues__gallery-main img {
    width: 100%;
    height: 100%;
}

.original-and-analogues__gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* ================= original-and-analogues--simple styles ================= */
.original-and-analogues--simple {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--color-white);
}

.original-and-analogues--simple .original-and-analogues__desc {
    max-width: 692px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-p);
    margin: 0 0 50px;
}

.original-and-analogues--simple .original-and-analogues__gallery {
    display: none;
}

.original-and-analogues--simple .original-and-analogues__gallery-mobile {
    display: block;
}

.original-and-analogues--simple .main-slides .slide-image {
    position: relative;
    height: 350px;
}

.original-and-analogues--simple .main-slides .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.original-and-analogues--simple .main-slides .slide-overlay {
    display: none;
}

@media (max-width: 768px) {
    .original-and-analogues--simple {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .original-and-analogues--simple .original-and-analogues__desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .original-and-analogues--simple .main-slides .slide-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .original-and-analogues--simple {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .original-and-analogues--simple .main-slides .slide-image {
        height: 200px;
    }
}

@media (max-width: 440px) {
    .original-and-analogues--simple .main-slider-wrapper {
        padding-bottom: 40px;
    }
}
/* ================= end original-and-analogues--simple styles ================= */

.lr-service-cost-calculator__title {
    margin-top: 0;
    margin-bottom: 20px;
}

.lr-service-cost-calculator__subtitle {
    font-size: 21px;
    margin-top: 0;
    margin-bottom: 40px;
}

.lr-calculator {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
}

.lr-calculator__title {
    font-weight: 500;
    margin-bottom: 20px;
}

.lr-calculator__options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.lr-option {
    background: #484F55;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 17px;
    cursor: pointer;
}

.lr-option.is-active {
    background: #09882F;
}


.lr-calculator__title {
    font-weight: 500;
    margin-bottom: 20px;
}

.lr-calculator__options.lr-calculator__years {
    gap: 8px 20px;
    margin-bottom: 32px;
}

.lr-calculator__block--control {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
}

.lr-calculator__controls-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.lr-calculator__control-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lr-calculator__control-row .lr-calculator__title {
    margin-bottom: 0;
}



.lr-calculator__control input {
    border: 1px solid #C3C3C3;
    padding: 13px 38px;
    width: 270px;
}

.lr-calculator__input {
    color: #1E1E1E;
    font-size: 17px;
    outline: 0;
}

.lr-calculator__input::placeholder {
    color: #B8B8B8;
}

.lr-calculator__select-arrow {
    width: 14px;
    height: 14px;
    background: url('/local/templates/lr-service/images/selector-arrow.svg') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.lr-calculator__table {
    display: grid;
    grid-template-columns: 1fr repeat(3, 80px);
    font-size: 17px;
    align-items: center;

}

.lr-calculator__table-head {
    display: contents;
    background: #09882F;
}

.lr-calculator__table-title {
    grid-column: 1;
}

.lr-calculator__table-cols {
    display: contents;
}

.lr-calculator__table-cols .lr-calculator__col {
    text-align: center;
}

.lr-calculator__table-row {
    display: contents;
}

.lr-calculator__row-title {
    grid-column: 1;
    padding: 20px 25px;
}

.lr-calculator__row-cols {
    display: contents;
}

.lr-calculator__row-cols .lr-check {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;

}


.lr-calculator__table-title, .lr-calculator__table-cols .lr-calculator__col {
    background: #09882F;
    padding: 22px;
    color: white;
    font-size: 21px;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.lr-calculator__table-row:nth-of-type(even) .lr-calculator__row-title,
.lr-calculator__table-row:nth-of-type(even) .lr-calculator__row-cols {
    background: #F9F9F9;
}

.lr-calculator__table-row:nth-of-type(odd) .lr-calculator__row-title,
.lr-calculator__table-row:nth-of-type(odd) .lr-calculator__row-cols {
    background: #FFFFFF;
}


.lr-check {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lr-calculator__table-row:nth-of-type(even) .lr-check {
    background: #F9F9F9;
}

.lr-calculator__table-row:nth-of-type(odd) .lr-check {
    background: #FFFFFF;
}

.lr-calculator__select {
    position: relative;
    width: 270px;
}

.lr-calculator__select-current {
    padding: 13px 38px;
    background: #09882F;
    color: white;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all var(--transition);
    justify-content: space-between;

}

.lr-calculator__select-current:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.lr-calculator__select.lr-calculator__select--year {
    margin-bottom: 25px;
}

.lr-calculator__select.lr-calculator__select--model {
    margin-bottom: 25px;
}

.lr-calculator__select.open .lr-calculator__select-current:hover {
    background: #09882F;
    color: var(--color-white);
}

.lr-calculator__select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: white;
    z-index: 10;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    justify-content: space-between;
    background: #F9F9F9;
    border-top: none;

}

.lr-calculator__select.open .lr-calculator__select-dropdown {
    display: block;

}

.lr-calculator__select-option {
    color: white;
    display: flex;
    flex-direction: column;
    padding: 15px 38px;
    font-size: 17px;
    background: #484F55;
}

.lr-calculator__select-option:hover {
    background: #09882F;
    color: white;
}

.lr-calculator__select.open .lr-calculator__select-arrow {
    transform: rotate(180deg);
}

.lr-calculator__table-row.is-hidden {
    display: none
}

.lr-calculator__toggle {
    margin-top: 10px;
    cursor: pointer;
    grid-column: 1 / -1;
    font-size: 16px;
}



.lr-service-price-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    margin-top: 0;
}

.akcii-section.services-lr.lr-services-prices .akcii-header {
    margin: 0!important;

}

.original-and-analogues {
    margin-bottom: 40px;
}

.lr-calculator__select.is-single {
    pointer-events: none;
}

.lr-calculator__select.is-single .lr-calculator__select-current {
    cursor: default;
}

.lr-calculator__select.is-single .lr-calculator__select-arrow {
    display: none;
}

.show-mobile {
    display: none;
}

.footer-divider {
    margin: 120px 0 50px;
    border-top: 1px solid #00000040;
}

.original-and-analogues__gallery-mobile {
    display: none;
    height: unset;
}

.original-and-analogues__gallery-mobile .main-slides .slide-image {
    height:unset;
}

.pagination.new {
    margin-top: 85px;
    margin-bottom: 0;
}

.pagination.new .pagination {
    margin-bottom: 0;
}

.catalog-promo__content-wrapper {
    display: flex;
    flex-direction: column;
}

.catalog-promo__content.form {
    height: 100%;
    justify-content: space-between;
}

.catalog-promo__media.form img {

}

.catalog-promo__content.form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: static;
    height: 100%;
}

.catalog-promo__media.form {

}

.small-title.banner {
    font-size: 30px;
    margin: 0 0 20px;
}

.banner-form.inline-form.form {
    margin-bottom: auto;
    margin-top: auto;
}

.catalog-promo.banner {
    margin-bottom: 30px;
}

.search-form.flex {
    display: flex;
    gap: 10px;
}

.search-catalogs-section.page-block {

}

.search-catalogs-section.page-block  .search-form.flex .btn.btn-primary {
    padding: 28px 60px;
    font-size: 17px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.search-catalogs-section.page-block .search-form input[type="text"] {
    height: unset;
    border: unset;
    padding: 12px 45px 12px 45px;
    font-size: 17px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.search-catalogs-section.page-block {
    margin-bottom: 30px;
}

.lr-services-prices-consultation__inner.search-form {
    padding: 52px 90px 61px 65px;
}

.white {
    color: white;
}

.part-selection-banner__section-link {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 10px;
    color: white;
}

.part-selection-banner__link-item {
    padding: 40px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 21px;
    transition: all 0.3s ease;
    color: white;
}

.part-selection-banner__link-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white;
}

.section-header-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}


.section-header-wrapper .section-title {
    margin-bottom: 20px;
}


.part-selection-banner__link-item a {

}

.part-selection-banner__link-item:nth-child(1) {
    background: #09882F;
}

.part-selection-banner__link-item:nth-child(2) {
    background: #01502C;
}

.part-selection-banner__link-item:nth-child(3) {
    background: #006239;
}

.main-page .service-about__image {
    max-height: unset;
    bottom: 0px;
    padding-bottom: 60px;
}

.lr-services-prices-consultation__fields.podbor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
            "name comment"
            "phone comment"
            "agree button";
    gap: 10px;
}

.podbor .field-name {
    grid-area: name;
}

.podbor .field-comment {
    grid-area: comment;
}

.podbor .field-phone {
    grid-area: phone;
}

.lr-services-prices-consultation__agreement {
    grid-area: agree;
}

.lr-services-prices-consultation__field--button {
    grid-area: button;
}

.podbor textarea {
    height: 100%;
}

.podbor .lr-services-prices-consultation__submit {
    width: unset!important;
    display: inline;
}

.form-subtitle {
    color: white;
}

.form-header:not(:only-child) {
    margin-bottom: 40px;
}

.form-header:only-child h2 {
    margin: 0!important;
}

.form-header h2 {
    margin: 0 0 20px!important;
    color: white;
}

.lr-services-prices-consultation.tehnicheskoe .lr-services-prices-consultation__content {
    display: flex;
    gap: 180px;
}
.lr-services-prices-consultation.tehnicheskoe .lr-services-prices-consultation__fields {
    flex-direction: column;
    gap: 10px;
}
.lr-services-prices-consultation.tehnicheskoe .lr-services-prices-consultation__submit {
    max-width: 270px;
}



.fix-divider-section .news-slider-section {
    padding-top: 0;
}

.form-bg {
    background: #484F55;
    padding: 40px 60px;
}

.form-header.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-header.row .btn {
   padding: 26px 30px;
}

.service-transparency__compare.instruction img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instruction__label-model {
    position: absolute;
    padding: 10px;
    background: #09882F;
    top: 20px;
    right: 20px;
    z-index: 1;
    color: white;
    font-size: 17px;
    border-radius: var(--border-radius);
}

.service-transparency__item.instruction {
    position: relative;
}

.service-transparency__item-title.instruction {
    display: flex;
    gap: 15px;
    justify-content: center;
    cursor: pointer;
    position: relative;
}



.parts-accordion__arrow.instruction {
    margin-bottom: 0;
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.parts-accordion__arrow.instruction::before,
.parts-accordion__arrow.instruction::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-white);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform var(--transition), opacity var(--transition);
}

.parts-accordion__arrow.instruction::before {
    width: 14px;
    height: 2px;
}

.parts-accordion__arrow.instruction::after {
    width: 2px;
    height: 14px;
}

.service-transparency__item.instruction.active .parts-accordion__arrow.instruction::after  {
    transform: translate(-50%, -50%) scaleY(0);
}

.sub-menu-instruction {
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    background: var(--color-background);
    border-radius: 5px;
    padding: 10px 0;
    list-style-type: none;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;

}

.sub-menu-instruction a {
    color: var(--color-text);
    font-weight: 500;
}

.sub-menu-instruction a:hover {
    color: var(--color-primary);
}

.service-transparency__item.instruction.active .sub-menu-instruction {
    display: block;
    opacity: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    border: 2px solid #E1E1E1;
    border-top-left-radius: 0;
    border-top-right-radius: 0;

}

.fix-divider-section .reviews-title-row {
    margin-top: 0px;
}

.step-title p {
    margin-bottom: 0;
}

.media-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;

}

.media-list__item {
    background-color: var(--color-background-service);
    padding: 40px;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.media-list__item:hover {
    background-color: var(--color-background-advantages);
}

.media-list__title {
    color: var(--color-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.media-list__item:hover .media-list__title {
    color: var(--color-primary);
}

.media-list__content {
    text-align: center;
}

.detail-media-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.detail-media-list__item {
    padding: 5px;
    border: 1px solid #ccc;
    box-shadow: 3px 3px 5px #888;
}

.detail-media-list__media {
    overflow: hidden;
}

.detail-media-list__image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;

}

.detail-video-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-end;
}

.detail-video-list__video {
    width: 100%;
    height: 100%;
    max-height: 200px;
}

.detail-video-list__item_title {
    color: var(--color-dark);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
}

.detail-video-list__media {
    height: 100%;
}

.fix-divider-section.universal-block .where-find {
    margin-bottom: 0;
}

.contact-page .fix-divider-section .contacts-row.contacts-row--notes {
    margin-bottom: 0;
}

@media (max-width: 1600px) {
    .wrapper-original-and-analogues {
        max-width: calc(100% - 140px);
    }

    .original-and-analogues-prev {
        left: 25px;
    }

    .original-and-analogues-next {
        right: 25px;
    }
}

@media (max-width: 1440px) {
    .why-trust-us .service-reception__steps--mobile .reception-step {
        padding: 45px 30px 36px 30px;
    }

    .lr-calculator__options {
        grid-template-columns: repeat(4, 1fr);
    }


}

@media (max-width: 1400px) {
    .media-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1281px) {
    .lr-services-prices-consultation__header {

    }
}


@media (max-width: 1280px) {

    .service-reception__steps-lr-info .step-text, .experts-experience-25__text {
        font-size: 21px;
    }

    /* .experts-experience-25__list {
        grid-template-columns: repeat(3, 1fr);
    } */

    .lr-services-prices-consultation__expert {
        display: none;
    }



    .original-and-analogues__inner {
        gap: 60px;
    }

    .symptoms-advantages {
        grid-template-columns: repeat(6, 1fr);
    }

    .original-and-analogues__item {
        height: unset!important;
    }

    .original-and-analogues__inner {
        display: block;
    }

    .original-and-analogues__content {
        margin-bottom: 30px;
    }

    .original-and-analogues__gallery > :first-child {
        grid-column: unset;
    }

    .original-and-analogues__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .small-title.banner {
        font-size: 20px;
    }

    .detail-media-list {
        grid-template-columns: repeat(4, 1fr);
    }


    .catalog-product-card-price-left {
        width: 100%;
    }
    .catalog-product-card-actions {
        align-items: stretch;
    }
    .catalog-product-card-cart,
    .catalog-product-card-buy {
        width: calc(50% - 5px);
        height: auto;
        min-width: auto;
        flex-grow: 1;
        min-height: 60px;
    }
    .catalog-product-card-actions.not-available {
        justify-content: start;
    }
}

@media (max-width: 1200px) {
    .experts-experience-25__list {
        grid-template-columns: repeat(2, 1fr);
    }

    .lr-calculator__options {
        grid-template-columns: repeat(3, 1fr);
    }

    .lr-calculator {
        gap: 50px;
    }

    .media-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .lr-services-prices-top .banner-content {
        top: 40px;
        bottom: unset;
    }

    .wrapper-banner-long {
        display: none;
    }

    .lr-service-price-wrapper h2 {
        margin-bottom: 40px;
    }


    .lr-services-prices .akcii-slide .slide-button, .lr-services-prices .akcii-slide .slide-button {
        padding: 15px 25px;
    }

    .lr-services-prices .price-list-section {
        padding: 40px 0 0;
    }

    .lr-services-prices.price-list {
        padding-bottom: 40px;
    }

    .lr-service-cost-calculator {
        padding-top: 40px;
    }

    .lr-services-prices.price-list {
        padding-bottom: 40px;
    }

    .lr-services-prices-consultation__form.banner-form input {
        padding: 18px;
    }

    .lr-services-prices-consultation__form.banner-form button {
        padding: 19px;
        height: unset;
    }

    .lr-services-prices-consultation__fields {
        gap: 15px;
        flex-direction: column;
    }

    .lr-services-prices-consultation-open-form {
        margin-bottom: 40px;
    }

    .lr-services-prices-consultation__inner {
        padding: 40px;
    }

    .lr-services-prices-consultation__subtitle {
        margin-bottom: 40px;
        font-size: 18px;
    }

    .symptoms-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .symptoms-warning__line {
        font-size: 22px;
    }

    .symptoms-advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .symptoms-card__text {
        font-size: 20px;
    }

    .service-transparency {
        margin-bottom: 40px;
    }

    .lounge-area__content {
        display: flex;
        flex-direction: column-reverse;
    }

    .specialization-area__content {
        display: flex;
        flex-direction: column;
    }

    .specialization-area__media {
        height: 300px;
    }

    .specialization-area__features {
        gap: 15px;
        flex-direction: row;
    }

    .specialization-area__feature {
        padding: 30px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .lounge-area__media {
        height: 300px;
    }

    .lounge-area__features {
        gap: 15px;
        flex-direction: row;
    }

    .lounge-area__feature {
        padding: 30px;
        display: flex;
        gap: 10px;
        transition-property: all;
        flex-direction: column;
        align-items: flex-start;
    }

    .lounge-area {
        margin-bottom: 40px;
    }

    .fix-divider-section.fix-divider-section.fix-divider-section {
        padding: 20px 0 0!important;
    }

    .repair-pages-wrapper .lr-services-prices.price-list {
        margin: 20px 0 0;
        padding-bottom: 40px;
    }

    .repair-pages-wrapper .owner-guarantee-section.lr-services-prices {
        margin: 20px 0 0;
    }

    .repair-pages-wrapper .experts-experience-25 {
        margin: 20px 0;
        padding: 30px 0;

    }

    .where-find .section-title {
        margin: 0 0 40px;
    }

    .original-and-analogues__inner {
        padding: 30px 15px;
    }

    .repair-pages-wrapper .where-find {
        padding-top: 120px;
    }
    .repair-pages-wrapper .owner-guarantee-section.lr-services-prices {
        padding-top: 20px;
    }

    .catalog-promo.banner {
        margin-bottom: 20px;
    }

    .search-form.flex {
        flex-direction: column;

    }

    .search-catalogs-section.page-block .search-form.flex .btn.btn-primary {
        padding: 12px;
    }

    .lr-services-prices-consultation__inner.search-form {
        padding: 40px;
    }

    .part-selection-banner__section-link {
        grid-template-columns: repeat(2, 1fr);
    }

    .part-selection-banner__link-item {
        padding: 16px 20px;
    }

    .lr-services-prices-consultation__fields.podbor {
        grid-template-columns: 1fr;
        grid-template-areas: "name" "phone" "comment" "button" "agree";
        gap: 15px;
    }



    .lr-services-prices-consultation__fields.podbor button  {
        width: 100%!important;
    }

    .main-page .news-section {
        padding: 20px 0;
    }

    .form-header.row {
        gap: 20px;
        flex-direction: column;
        align-items: center;

    }

    .form-header.row .btn {
        padding: 19px;
    }

    .form-bg {
        padding: 40px;
    }

    .lr-services-prices-top .banner-content ul {
        font-size: 18px;
    }

    .symptoms-cards {
        grid-template-columns: 1fr 1fr;
    }

    .symptoms-card {
        min-height: unset;
        padding: 30px;
    }

    .symptoms-warning__inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .symptoms-warning__icon {
        width: 60px;
    }

    .symptoms-warning__line {
        font-size: 18px;
    }

    .symptoms-advantages {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



@media (max-width: 900px) {

    .reviews-section .pill-list {
        flex-wrap: wrap;
    }

    .service-reception__steps-lr-info.why-trust-us {
        padding: 40px 0 15px;
    }

    .service-reception__steps-lr-info.why-trust-us .service-reception__steps.service-reception__steps--mobile {
        padding-bottom: 60px;
    }

    .service-reception__steps-lr-info.why-trust-us .service-reception-slider-nav {
        bottom: 0;
    }

    .akcii-section.services-lr.lr-services-prices .consultation {
        padding: 17px 20px;
        width: 100%;
    }

    .experts-experience-25__actions button {
        padding: 17px 20px;
    }

    .why-trust-us, .akcii-section.lr-services-prices {
        margin-bottom: 20px;
    }

    .service-reception__steps-lr-info .step-text {
        font-size: 21px;
    }

    .why-trust-us .step-number {
        font-size: 38px;

    }

    .why-trust-us .step-number {
        margin-left: 0;
    }

    .lr-services-prices.video-gallery-section {
        margin-bottom: 40px;
    }

    #content .lr-services-prices .akcii-slider-wrapper {
        padding-bottom: 0;
    }

   .akcii-section.services-lr.lr-services-prices {
        padding: 0!important;
    }

    .akcii-section.services-lr.lr-services-prices {
        margin-bottom: 40px;
    }

    .akcii-section .service-reception-slider-nav {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin-top: 0;
        pointer-events: none;
    }

    .akcii-section.lr-services-prices .service-reception-slider-nav .akcii-prev,
    .akcii-section.lr-services-prices .service-reception-slider-nav .akcii-next {
        top: -150px;
    }

    .akcii-section.lr-services-prices .service-reception-slider-nav .akcii-prev {
        left: -50px;
    }

    .akcii-section.lr-services-prices .service-reception-slider-nav .akcii-next {
        right: -50px;
    }

    .reviews-section {
        padding: 40px 0;
    }

    .lounge-area__features {
        flex-direction: column;
    }

    .specialization-area__features {
        flex-direction: column;
    }

    .specialization-area__feature {
        padding: 25px 20px;
        gap: 15px;
    }

    .specialization-area__feature-number {
        font-size: 32px;
    }

    .experts-experience-25 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .experts-experience-25__list {
        display: none;
    }

    .reception-experts {
        grid-template-columns: repeat(1, 1fr);
    }

    .original-and-analogues {
        padding-top: 40px;
    }

    .lr-calculator {
        grid-template-columns: 1fr;
    }

    .repair-pages-wrapper .lr-services-prices-top .banner-content {
        bottom: 50%;
        top: unset;
        transform: translateY(50%);
    }

    .detail-media-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .symptoms-cards {
        grid-template-columns: 1fr;
    }
    
    .lr-service-price-wrapper h2 {
        font-size: 34px!important;
        margin-bottom: 30px;
    }



    .why-trust-us, .akcii-section.lr-services-prices {
        margin-bottom: 0;
    }

    .fix-divider .why-trust-us {
        margin-bottom: 0;
    }

    .services-prices-utp {
        margin-top: 60px;
    }

    .lr-services-prices-consultation__title {
        font-size: 24px!important;
    }

    .footer-divider {
        margin: 40px 0 20px;

    }

    .original-and-analogues__gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    .original-and-analogues__item {
        height: 250px!important;
    }

    .original-and-analogues__gallery-mobile {
        display: block;
    }

    .original-and-analogues__gallery {
        display: none;
    }

    .service-content-block:first-child {
        margin-bottom: 0;
    }

    .service-content-block:last-child {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .service-content-block {
        gap: 40px!important;
    }

    .fix-divider-section .service-reception__steps {
        padding-bottom: 60px;
    }

    .part-selection-banner__section-link {
        grid-template-columns: repeat(1, 1fr);
    }

    .media-list__title {
        font-size: 16px;
    }

    .detail-media-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-video-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

}

@media (max-width: 576px) {
    .lr-services-prices-top .banner-content ul {
        font-size: 16px;
    }
    .lr-services-prices-top .banner-content ul {
        padding-inline-start: 0px;
    }
    
    .lr-service-price-wrapper h2 {
        font-size: 20px !important;
        margin-bottom: 25px;
    }
    .lr-services-prices-consultation__form.banner-form input {
        font-size: 14px;
    }



    .lr-calculator__options, .lr-calculator__options.lr-calculator__years  {
        gap: 8px 10px;
    }

    .lr-calculator__options {
        grid-template-columns: repeat(1, 1fr);
    }

    .lr-calculator__control-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .lr-calculator__select, .lr-calculator__control {
        width: 100%;
    }

    .lr-calculator__control input {
        width: 100%;
    }

    .lr-calculator__table-title, .lr-calculator__table-cols .lr-calculator__col {
        font-size: 18px;
        padding: 10px;
    }

    .lr-calculator__table {
        font-size: 14px;
    }

    .lr-calculator__controls-group {
        max-width: unset;
    }

    .lr-calculator__title {
        margin-bottom: 15px;
    }

    .lr-calculator__table {
        grid-template-columns: 1fr repeat(3, 0.7fr);
    }
    .lr-check {
        width: 100%;
    }

    .services-prices-utp .adv-item__text, .service-reception__steps-lr-info
    .step-text, .lr-services-prices.price-list,
    .lr-services-prices-consultation__subtitle, .lounge-area__feature-text, .experts-experience-25 .specialist-description, .original-and-analogues__text {
        font-size: 14px !important;
    }

    .show-mobile {
        display: flex;
    }



}

@media (max-width: 500px) {
    .akcii-section.lr-services-prices .service-reception-slider-nav .akcii-prev, .akcii-section.lr-services-prices .service-reception-slider-nav .akcii-next {
        top: -260px;
    }
    
    .site-header {
        padding-bottom: 20px;
    }

    .specialist-center__main {
        padding: 40px 0;
    }

    .specialist-center__title {
        margin-bottom: 0;
    }

    .main-page .product-slider-section {
        padding: 40px 0;
    }

    .main-page .akcii-section .section-header {
        gap: 0;
    }

    .main-page .service-about {
        padding-top: 40px;
    }

    .service-about .section-title {
        margin: 0 0 40px 0;
    }

    .manufacters-slider {
        padding: 40px 0;
    }

    .service-reception.main-page {
        padding: 40px 0;
    }

    .main-page .history-stats {
        padding: 40px 0;
    }

    .history-header {
        margin-bottom: 40px;
    }

    .process-steps {
        padding: 40px 0;
    }

    .reception-video--new .section-title {
        margin: 0 0 40px 0;
    }

    .main-page .price-list-section {
        padding: 40px 0;
    }

    .home-our-service .section-title {
        margin-bottom: 40px;
    }

    .main-page .news-section {
        padding: 20px 0;
    }

    .section-title {
       margin-bottom: 40px;
    }

    .faq-section {
        padding: 40px 0 0;
    }

    .reviews-section {
        padding: 40px 0 40px;
    }

    .reviews-title-row {
        margin-bottom: 40px;
    }
    .media-list {
        grid-template-columns: 1fr;
    }


}

@media (max-width: 440px) {
    /* #content .lr-services-prices .akcii-slider-wrapper {
        padding-bottom: 60px;
    } */

    .bx-breadcrumb-drop.is-open {
        padding-right: 0;
    }

    .footer-divider {
        margin: 0;
    }

    .main-slider-wrapper {
        max-width: calc(100% - 30px);
        padding-bottom: 60px;
    }

    .practice-cases-section .practice-cases-slider-wrapper > .practice-cases-prev,
    .practice-cases-section .practice-cases-slider-wrapper > .practice-cases-next {
        position: absolute !important;
        top: auto !important;
        bottom: 0 !important;
        width: 20px;
        height: 20px;
        margin: 0;
        transform: none;
    }

    .practice-cases-section .practice-cases-slider-wrapper > .practice-cases-prev {
        left: calc(50% - 40px);
        right: auto;
    }

    .practice-cases-section .practice-cases-slider-wrapper > .practice-cases-next {
        left: auto;
        right: calc(50% - 40px);
    }

    .original-and-analogues__gallery-mobile.main-slider-wrapper {
        max-width: 100%;

    }

    .main-slider-prev, .main-slider-next,
    .service-transparency-main-prev, .service-transparency-main-next {
        top: auto;
        bottom: 0;

        transform: translateX(-50%);
    }

    .main-slider-next,
    .service-transparency-main-next {
        left: 57%;
    }

    .main-slider-prev,
    .service-transparency-main-prev {
        left: 43%;
    }

    .fix-divider-section .section-title {
        font-size: 24px;
    }

    .original-and-analogues__gallery-wrapper {
        padding-bottom: 60px;
    }

    .wrapper-original-and-analogues {
        padding: 0px 15px;
        max-width: unset;
    }

    .original-and-analogues-prev, .original-and-analogues-next {
        bottom: 10px;
        top: unset;
    }

    .original-and-analogues-prev {
        left: 40%;
    }

    .original-and-analogues-next {
        right: 40%;
    }

    .catalog-items-grid {
        margin-bottom: 5px;
    }

    .detail-media-list {
        grid-template-columns: repeat(1, 1fr);
    }

    .detail-video-list {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (min-width: 901px) {
    .video-photo-gallery-section .video-gallery-prev {
        left: -50px;
    }

    .video-photo-gallery-section .video-gallery-next {
        right: -50px;
    }
}

@media (max-width: 900px) {
    .contact-item-bottom {
        margin-top: 0;
    }
    .where-find .section-title {
        display: none;
    }
    .akcii-section.lr-services-prices .akcii-slider-wrapper {
        position: relative;

    }

    .akcii-section .service-reception-slider-nav,
    .akcii-section.lr-services-prices .service-reception-slider-nav {
        display: flex !important;
        justify-content: center !important;
        gap: 40px !important;
        position: absolute !important;
        bottom: -5px !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        margin-top: 0 !important;
        pointer-events: auto !important;
        z-index: 30;
    }

    .video-photo-gallery-section .video-slider-wrapper {
        position: relative;
        max-width: calc(100% - 30px);
        padding-bottom: 50px;
    }

    .video-photo-gallery-section .video-gallery-slider-nav {
        display: flex !important;
        justify-content: center !important;
        gap: 40px !important;
        position: absolute !important;
        bottom: -5px !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        margin-top: 0 !important;
        pointer-events: auto !important;
        z-index: 30;
    }

    .video-photo-gallery-section .video-gallery-slider-nav .video-gallery-prev,
    .video-photo-gallery-section .video-gallery-slider-nav .video-gallery-next {
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
    }
}

@media (max-width: 440px) {
    .reception-video--new {
        margin-bottom: 40px;
    }

    .reception-video--new .reception-video-slider-wrapper {
        max-width: calc(100% - 30px);
        padding-bottom: 60px;
    }

    .reception-video--new .reception-video-prev,
    .reception-video--new .reception-video-next {
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
    }

    .reception-video--new .reception-video-prev {
        left: 43%;
    }

    .reception-video--new .reception-video-next {
        left: 57%;
        right: auto;
    }

    .video-photo-gallery-section .video-slider-wrapper {
        padding-bottom: 60px;
    }

    .video-photo-gallery-section .video-gallery-slider-nav {
        bottom: 0 !important;
    }

    .video-photo-gallery-section .video-gallery-slider-nav .video-gallery-prev,
    .video-photo-gallery-section .video-gallery-slider-nav .video-gallery-next {
        width: 20px;
        height: 20px;
    }
}


@media (max-width: 408px) {
    .banner-form button {
        height: auto;
    }
}


.cookie_panel {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 24px;
    width: min(1120px, calc(100vw - 32px));
    box-sizing: border-box;
    padding: 18px 24px;
    background: var(--color-dark);
    color: var(--color-white);
    border-radius: var(--border-radius, 5px);
    white-space: normal;
    font-size: 15px;
    line-height: 1.35;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.cookie_panel a {
    color: var(--color-white);
    text-decoration: underline;
    text-decoration-color: var(--color-white);
    text-underline-offset: 2px;
}

.cookie_panel a:hover {
    color: var(--color-primary, #009933);
    text-decoration-color: var(--color-primary, #009933);
}

.cookie_panel__text {
    min-width: 0;
    flex: 1 1 auto;
}

.cookie_panel .confirm_cookie {
    flex: 0 0 auto;
    min-width: 74px;
    min-height: 40px;
    padding: 11px 22px;
    border: 0;
    border-radius: var(--border-radius, 5px);
    background: var(--color-primary, #009933);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cookie_panel .confirm_cookie:hover {
    background: var(--color-primary-hover);
}

.cookie_panel .confirm_cookie:active {
    transform: translateY(1px);
}
.b24-widget-button-position-bottom-right {
    bottom: 110px !important;
}
@media (max-width: 768px) {
    .cookie_panel {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        width: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
        font-size: 13px;
        line-height: 1.35;
    }
    .b24-widget-button-position-bottom-right {
        bottom: 160px !important;
    }   
    .to-up{
        bottom: 250px;
    }
    .cookie_panel .confirm_cookie {
        width: 100%;
        min-height: 40px;
        padding: 11px 20px;
    }
}
@media (max-width: 460px) { 
    .b24-widget-button-position-bottom-right {
        bottom: 170px !important;
        right: 20px !important;
    }  
    .consultation-description {
        font-size: 14px;
    }
}

body.cookie-panel-hidden .b24-widget-button-position-bottom-right {
    bottom: 24px !important;
}

body.cookie-panel-hidden .to-up {
    bottom: 110px !important;
}

@media (max-width: 768px) {
    body.cookie-panel-hidden .b24-widget-button-position-bottom-right {
        bottom: 20px !important;
    }

    body.cookie-panel-hidden .to-up {
        bottom: 95px !important;
    }
}

@media (max-width: 460px) {
    body.cookie-panel-hidden .b24-widget-button-position-bottom-right {
        bottom: 20px !important;
    }
     .catalog-product-card-actions {
        flex-direction: column;
    }
    .catalog-product-card-cart,
    .catalog-product-card-buy {
        width: 100%;
    } 
}

@media (max-width: 1024px) {
    .form-checkbox label,
    .personal-form .form-checkbox label,
    .banner-form .form-checkbox label,
    .callback-form-inline .banner-form .form-checkbox label,
    .consultation-form .form-agreement label,
    .lr-services-prices-consultation__agreement.form-checkbox label,
    .lr-services-prices-consultation__agreement .lr-services-prices-consultation__label,
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__agreement.form-checkbox label,
    .tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label {
        font-size: 11px !important;
        line-height: 1.25 !important;
    }

    .fix-divider-section .section-title {
        margin-bottom: 40px;
    }
    .fix-divider-section.fix-divider-section.fix-divider-section.faq-section,
    .fix-divider-section.fix-divider-section.fix-divider-section.problem-solver,
    .fix-divider-section.fix-divider-section.fix-divider-section.symptoms-section,
    .fix-divider-section.fix-divider-section.fix-divider-section.prof-equipment {
        padding: 60px 0!important;
    }
    /* .where-find {
        padding-top: 180px;
    } */

    .lr-services-prices-consultation__title {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .form-checkbox label,
    .personal-form .form-checkbox label,
    .banner-form .form-checkbox label,
    .callback-form-inline .banner-form .form-checkbox label,
    .consultation-form .form-agreement label,
    .lr-services-prices-consultation__agreement.form-checkbox label,
    .lr-services-prices-consultation__agreement .lr-services-prices-consultation__label,
    .lr-services-prices-consultation--kuzov .lr-services-prices-consultation__agreement.form-checkbox label,
    .tehnicheskoe .lr-services-prices-consultation__agreement.form-checkbox label {
        font-size: 10px !important;
        line-height: 1.25 !important;
        padding-left: 40px;
    }
    .form-checkbox label::before {
        width: 20px;
        height: 20px;
    }

}

@media (max-width: 1150px) {
    .swiper-slide .banner-content.main-page {
        top: 130px;
    }
    .banner-slider .swiper {
        height: 950px
    }
}

.service-reception__steps-lr-info.why-trust-us .service-reception__steps--desktop {
    grid-template-rows: auto auto 1fr;
}
.service-reception__steps-lr-info.why-trust-us .service-reception__steps--desktop .reception-step {
    display: grid !important;
    grid-template-rows: subgrid;
    grid-row: span 3;
}
.service-reception__steps-lr-info.why-trust-us .service-reception__steps--desktop .reception-step .step-content {
    display: grid !important;
    grid-template-rows: subgrid;
    grid-row: span 2;
}

/* End */
/* /local/templates/lr-service/css/modal.css?177919921321020 */
/* /local/templates/lr-service/css/contacts.css?177866733117110 */
/* /local/templates/lr-service/css/form-validation.css?17574248894422 */
/* /local/templates/lr-service/lib/swiper-bundle.min.css?175716794418454 */
/* /local/templates/lr-service/lib/fancybox.css?176251159532341 */
/* /local/templates/lr-service/css/tmpdan.css?177885120924280 */
/* /local/templates/lr-service/css/tmpliht.css?17787610801565 */
/* /local/templates/lr-service/css/detail-content.css?17800636265712 */
/* /local/templates/lr-service/styles.css?17788456841844 */
/* /local/templates/lr-service/components/bitrix/menu/personal_left-mobile/style.css?17655432544918 */
/* /local/templates/lr-service/components/seoven/search.suggest/main-search/style.css?17695236356336 */
/* /local/components/seoven/search.suggest/templates/.default/style.css?17608945286336 */
/* /local/templates/lr-service/components/bitrix/breadcrumb/breadcurmb-main/style.css?17699839001463 */
/* /local/templates/lr-service/template_styles.css?1782125833365203 */
