@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.vv-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px 20px 15px;
    font-family: 'Roboto', sans-serif;
}

.vv-cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.vv-card {
    width: calc(25% - 78px);
    min-width: 272px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.vv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vv-card__image {
    width: 100%;
    height: 200px;
    background-color: #f5f5f5;
    overflow: hidden;
    flex-shrink: 0;
}

.vv-card__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vv-card:hover .vv-card__avatar {
    transform: scale(1.05);
}

.vv-card__avatar--placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
}

.vv-card__info {
    flex: 1;
    padding: 12px 12px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vv-card__role {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vv-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.vv-card__name:hover {
    color: #008dad;
}

.vv-card__price {
    margin-top: 4px;
}

.vv-card__price-value {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.vv-card__price-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.vv-card__price-number {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
}

.vv-card__price-currency {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.vv-card__city {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    display: flex;
    gap: 4px;
    align-items: center;
}

.vv-card__city::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/dot_route.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-card__stars {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.vv-card__star {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-card__star--active {
    background-image: url("/assets/images/v2/card_star_active.svg");
}

.vv-card__star--inactive {
    background-image: url("/assets/images/v2/card_star.svg");
}

.vv-card__reviews {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    align-items: center;
}

.vv-card__reviews--total {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vv-card__reviews--total:hover {
    color: #008dad;
}

.vv-card__reviews--total::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/reviews_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-card__buttons {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.vv-card__btn {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.vv-card__btn--write {
    background-color: #EFC700;
    color: white;
}

.vv-card__btn--write::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/message_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-card__btn--write:hover {
    background-color: #d4b000 !important;
    transform: translateY(-1px) !important;
    color: white !important;
    text-decoration: none;
}

.vv-card__btn--write:focus {
    color: white;
    text-decoration: none;
    border: none;
}

.vv-card__btn--order {
    background-color: #00B9E4;
    color: #ffffff;
}

.vv-card__btn--order::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/box_order_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-card__btn--order:hover {
    background-color: #009ec4 !important;
    transform: translateY(-1px) !important;
    color: white !important;
    text-decoration: none;
}

.vv-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9995;
    align-items: center;
    justify-content: center;
}

.vv-modal--active {
    display: flex;
}

.vv-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.vv-modal__body {
    position: relative;
    width: 900px;
    max-width: 90%;
    height: 900px;
    max-height: 90%;
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    animation: modalFadeIn 0.3s ease;
    z-index: 1;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.vv-modal__left {
    width: 50%;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    align-items: center;
    justify-content: flex-start;
}

.vv-modal__avatar {
    width: 90%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 20px;
    border-radius: 15px;
    background-color: #e9ecef;
}

.vv-modal__avatar-placeholder {
    width: 90%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 80px;
    font-weight: 600;
    border-radius: 15px;
    margin: 20px;
}

.vv-modal__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 24px;
    background: #ffffff;
}

.vv-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.vv-modal__close:hover {
    background-color: #e0e0e0;
    transform: rotate(90deg);
}

.vv-modal__close::before,
.vv-modal__close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #666;
}

.vv-modal__close::before {
    transform: rotate(45deg);
}

.vv-modal__close::after {
    transform: rotate(-45deg);
}

.vv-modal-mobile__close {
    position: absolute;
    top: 20px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.vv-modal-mobile__close:hover {
    background-color: #e0e0e0;
    transform: rotate(90deg);
}

.vv-modal-mobile__close::before,
.vv-modal-mobile__close::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #666;
}

.vv-modal-mobile__close::before {
    transform: rotate(45deg);
}

.vv-modal-mobile__close::after {
    transform: rotate(-45deg);
}

.vv-modal__content {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vv-modal__content::-webkit-scrollbar {
    display: none;
}

.vv-modal__title {
    margin-bottom: 24px;
}

.vv-modal__role {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.vv-modal__name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    word-break: break-word;
}

.vv-modal__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.vv-modal__stat {
    font-size: 13px;
    color: #495057;
}

.vv-modal__stat strong {
    color: #1a1a1a;
    font-size: 18px;
    display: block;
}

.vv-modal__rating {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
}

.vv-modal__rating-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vv-modal__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.vv-modal__star {
    font-size: 30px;
    color: #ddd;
}

.vv-modal__star--active {
    color: #FFC107;
}

.vv-modal__reviews {
    display: flex;
    font-size: 13px;
    color: #6c757d;
    justify-content: center;
    flex-wrap: wrap;
}

.vv-modal__reviews span {
    margin: 0 2px;
}

.vv-modal__reviews--positive {
    color: #28a745;
    font-weight: 600;
}

.vv-modal__reviews--negative {
    color: #dc3545;
    font-weight: 600;
}

.vv-modal__rating-bottom {
    display: flex;
    margin: 15px 0 0 0;
    justify-content: center;
}

a.vv-modal__rating-bottom-btn {
    padding: 10px 20px;
    background-color: #efc70063;
    color: #b59700;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

a.vv-modal__rating-bottom-btn:hover {
    background-color: #efc700b8;
    color: #8b7400;
    text-decoration: none;
}

.vv-modal__info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.vv-modal__info-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
}

.vv-modal__info-label {
    color: #6c757d;
    font-weight: 500;
}

.vv-modal__info-value {
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
    word-break: break-word;
}

.vv-modal__status-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e9ecef;
    justify-content: center;
}

.vv-modal__status-item {
    position: relative;
    display: inline-flex;
}

.vv-modal__status-icon-img {
    width: 60px;
    height: 30px;
    display: block;
    transition: transform 0.2s ease;
}

.vv-modal__status-item:hover .vv-modal__status-icon-img {
    transform: scale(1.05);
}

.vv-modal__status-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: #e2edff;
    color: #4f7bc3;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 100;
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    width: max-content;
    max-width: 190px;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
}

.vv-modal__status-item:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

.vv-modal__status-item::before {
    display: none;
}

.vv-modal__categories {
    margin-bottom: 16px;
}

.vv-modal__categories-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.vv-modal__categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vv-modal__category-tag {
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: #495057;
}

.vv-modal__feedback {
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
    margin: 16px 0;
}

.vv-modal__feedback-text {
    font-size: 13px;
    color: #495057;
    font-style: italic;
    margin-bottom: 8px;
    line-height: 1.4;
}

.vv-modal__feedback-author {
    font-size: 12px;
    color: #6c757d;
}

.vv-modal__buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}

.vv-modal__btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.vv-modal__btn--profile {
    background-color: #6c757d;
    color: #ffffff;
}

.vv-modal__btn--profile::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/carrier_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-modal__btn--profile:hover {
    background-color: #5a6268 !important;
    color: white !important;
    text-decoration: none;
}

.vv-modal__btn--profile:focus {
    color: white !important;
    text-decoration: none;
}

.vv-modal__btn--write {
    background-color: #EFC700;
    color: white;
}

.vv-modal__btn--write::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/message_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-modal__btn--write:hover {
    background-color: #d4b000 !important;
    color: white !important;
    text-decoration: none;
}

.vv-modal__btn--write:focus {
    color: white !important;
    text-decoration: none;
}

.vv-modal__btn--order {
    background-color: #00B9E4;
    color: #ffffff;
}

.vv-modal__btn--order::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url("/assets/images/v2/box_order_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

.vv-modal__btn--order:hover {
    background-color: #009ec4 !important;
    color: white !important;
    text-decoration: none;
}

.vv-modal__btn--order:focus {
    color: white !important;
    text-decoration: none;
}

.vv-filters {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.vv-filters-container {
    max-width: 1400px;
    margin: 55px auto 0;
    padding: 20px 15px 0 15px;
    font-family: 'Roboto', sans-serif;
}

.vv-filters__main-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.vv-filters__field--city {
    flex: 1;
    min-width: 200px;
}

.vv-filters__field--type {
    flex: 1;
    min-width: 200px;
    align-self: center;
}

.vv-filters__field--button {
    flex: 0;
    min-width: 185px;
}

.vv-filters__field--more {
    flex: 0;
    min-width: auto;
}

.vv-filters__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.vv-filters__label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.vv-filters__input {
    width: 100%;
    height: 36px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500;
    transition: border-color 0.2s !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.vv-filters__input:focus {
    outline: none !important;
    border-color: #00B9E4 !important;
    box-shadow: none !important;
}

.vv-filters__checkboxes {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vv-filters__checkbox-label {
    display: flex;
    gap: 6px;
    cursor: pointer;
    font-size: 18px;
    margin: 0;
}

.vv-filters__checkbox-sub-label-left {
    display: flex;
    gap: 5px;
    cursor: pointer;
    font-size: 16px;
}

.vv-filters__checkbox-sub-label-right {
    display: flex;
    gap: 6px;
    cursor: pointer;
    font-size: 16px;
}

.vv-filters__checkbox-top,
.vv-filters__checkbox-left,
.vv-filters__checkbox-right {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    pointer-events: none;
}

.vv-filters__span-left {
    margin: 0;
}

.vv-filters__span-left:hover {
    color: #0086a5;
}

.vv-filters__span-right {
    margin: 0;
}

.vv-filters__span-right:hover {
    color: #0086a5;
}

.vv-filters__btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vv-filters__btn--search {
    background-color: #00B9E4;
    color: #ffffff;
}

.vv-filters__btn--search:hover {
    background-color: #009ec4;
}

.vv-filters__result {
    margin: 20px 0;
    font-size: 16px;
    color: #666;
}

.vv-filters__result span {
    font-weight: 700;
    color: #333;
}

.vv-filters__additional {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease, padding 0.7s ease, margin 0.7s ease;
    padding: 0;
    margin-top: 0;
    border-top: none;
}

.vv-filters__additional.open {
    max-height: 410px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.vv-filters__additional {
}

.vv-filters__additional-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.vv-filters__section-left {
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    padding: 15px;
    background-color: #ecf3f9;
}

.vv-filters__section-right {
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    padding: 15px;
    background-color: #ecf3f9;
}

.vv-filters__section-left-title {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 18px;
}

.vv-filters__section-right-title {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 18px;
}

.vv-filters__cargo-checkboxes-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.vv-filters__cargo-checkboxes-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.vv-filters__params {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.vv-filters__param {
    flex: 1;
    min-width: 100px;
}

.vv-filters__param label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.vv-input-wrapper {
    position: relative;
    width: 60%;
}

.vv-input-flag {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 15px;
    border: 0.5px solid #e9e9e9;
    box-shadow: 0 1px 5px 1px rgb(0 0 0 / 8%);
    object-fit: cover;
    border-radius: 5px;
    pointer-events: none;
    z-index: 1;
}

.vv-filters__input--with-flag {
    padding-left: 45px !important;
}

.vv-filters__more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.vv-filters__more-btn:hover {
    background: #e9ecef;
    border-color: #00B9E4;
}

.vv-filters__more-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.vv-filters__more-btn.active .vv-filters__more-icon {
    transform: rotate(180deg);
}

.vv-city-dropdown-item {
    padding: 10px 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.vv-city-dropdown-item:hover {
    background-color: #e1e1e0;
}

.vv-city-dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #dddddd;
    transition: background 0.2s;
}

.vv-city-dropdown-item:last-child {
    border-bottom: none;
}

.vv-city-dropdown-item:hover {
    background-color: #e1e1e0;
}

.vv-city-dropdown-name {
    font-size: 15px;
    font-weight: 500;
    color: #3b3b3b;
}

.vv-city-dropdown-area {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
    margin-top: 4px;
}

.vv-city-popup {
    display: none;
}

.vv-city-popup-content {
    padding: 16px;
}

.vv-city-popup-text {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.vv-city-popup-text strong {
    color: #00B9E4;
}

.vv-city-popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.vv-city-popup-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.vv-city-popup-btn-yes {
    background-color: #00B9E4;
    color: white;
}

.vv-city-popup-btn-yes:hover {
    background-color: #009ec4;
}

.vv-city-popup-btn-change {
    background-color: #f0f0f0;
    color: #333;
}

.vv-city-popup-btn-change:hover {
    background-color: #e0e0e0;
}

.vv-cards-empty {
    margin: 0 auto;
    text-align: center;
    padding: 50px 20px;
    font-size: 20px;
    color: #666;
}

.vv-pagination {
    margin-top: 30px;
    padding: 20px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vv-pagination__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vv-pagination__item {
    list-style: none;
    flex-shrink: 0;
}

.vv-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.vv-pagination__link:hover {
    background: #f0f0f0;
}

.vv-pagination__link--active {
    background: #00B9E4;
    color: #fff;
}

.vv-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: #999;
}

.vv-filters__checkbox-label,
.vv-filters__checkbox-sub-label-left,
.vv-filters__checkbox-sub-label-right {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding-left: 50px;
}

.vv-filters__checkbox-label::before,
.vv-filters__checkbox-sub-label-left::before,
.vv-filters__checkbox-sub-label-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 22px;
    background-color: #e0e0e0;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.vv-filters__checkbox-label::after,
.vv-filters__checkbox-sub-label-left::after,
.vv-filters__checkbox-sub-label-right::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.vv-filters__checkbox-top:checked ~ .vv-filters__checkbox-label::before,
.vv-filters__checkbox-left:checked ~ .vv-filters__checkbox-sub-label-left::before,
.vv-filters__checkbox-right:checked ~ .vv-filters__checkbox-sub-label-right::before {
    background-color: #00B9E4;
}

.vv-filters__checkbox-top:checked ~ .vv-filters__checkbox-label::after,
.vv-filters__checkbox-left:checked ~ .vv-filters__checkbox-sub-label-left::after,
.vv-filters__checkbox-right:checked ~ .vv-filters__checkbox-sub-label-right::after {
    left: 20px;
}

.vv-filters__checkbox-top:checked + span ~ .vv-filters__checkbox-label::before,
.vv-filters__checkbox-left:checked + .vv-filters__span-left ~ .vv-filters__checkbox-sub-label-left::before,
.vv-filters__checkbox-right:checked + .vv-filters__span-right ~ .vv-filters__checkbox-sub-label-right::before {
    background-color: #00B9E4;
}

.vv-filters__checkbox-top:checked + span ~ .vv-filters__checkbox-label::after,
.vv-filters__checkbox-left:checked + .vv-filters__span-left ~ .vv-filters__checkbox-sub-label-left::after,
.vv-filters__checkbox-right:checked + .vv-filters__span-right ~ .vv-filters__checkbox-sub-label-right::after {
    left: 20px;
}

.vv-filters__checkbox-label:hover::before,
.vv-filters__checkbox-sub-label-left:hover::before,
.vv-filters__checkbox-sub-label-right:hover::before {
    background-color: #d0d0d0;
}

.vv-filters__checkbox-top:checked ~ .vv-filters__checkbox-label:hover::before,
.vv-filters__checkbox-left:checked ~ .vv-filters__checkbox-sub-label-left:hover::before,
.vv-filters__checkbox-right:checked ~ .vv-filters__checkbox-sub-label-right:hover::before {
    background-color: #009ec4;
}

.vv-switch-checked::before {
    background-color: #00B9E4 !important;
}

.vv-switch-checked::after {
    left: 20px !important;
}

.vv-cards-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 60px 20px;
    text-align: center;
    color: #666;
}

.vv-loader-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00B9E4;
    border-radius: 50%;
    animation: vv-spin 1s linear infinite;
}

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

body.vv-modal-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .vv-card {
        width: calc(33.333% - 7px);
        min-width: 220px;
    }

    .vv-filters__row {
        gap: 15px;
    }

    .vv-modal__body {
        width: 95%;
        height: 95%;
    }
}

@media (max-width: 768px) {
    .vv-filters-container {
        margin: -55px auto 0;
    }

    .vv-cards-container {
        padding: 15px 10px;
    }

    .vv-cards-empty {
        font-size: 16px;
    }

    .vv-card {
        width: calc(50% - 5px);
        min-width: 160px;
        height: auto;
        min-height: 440px;
    }

    .vv-card__image {
        height: 160px;
    }

    .vv-card__name {
        font-size: 18px;
    }

    .vv-card__price-number,
    .vv-card__price-currency {
        font-size: 18px;
    }

    .vv-card__role {
        font-size: 9px;
    }

    .vv-card__city {
        font-size: 12px;
    }

    .vv-card__reviews {
        font-size: 12px;
        gap: 8px;
    }

    .vv-card__btn {
        padding: 8px 0;
        font-size: 13px;
    }

    .vv-modal__close {
        display: none;
    }

    .vv-modal-mobile__close {
        display: flex;
    }

    .vv-modal__body {
        flex-direction: column;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 95%;
        padding: 0 10px 10px 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        align-items: center;
        align-self: end;
    }

    .vv-modal__left,
    .vv-modal__right {
        width: 100%;
    }

    .vv-modal__left {
        height: auto;
        max-height: 20%;
        padding: 15px;
    }

    .vv-modal__right {
        height: 73%;
        padding: 20px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-top: 1px solid #e1e1e1;
    }

    .vv-modal__avatar,
    .vv-modal__avatar-placeholder {
        width: 100%;
        height: 100%;
        margin: 0 auto;
    }

    .vv-modal__name {
        font-size: 20px;
    }

    .vv-modal__star {
        font-size: 32px;
    }

    .vv-modal__status-icon-img {
        width: 55px;
        height: 28px;
    }

    .vv-modal__status-item::after {
        font-size: 12px;
        padding: 6px 10px;
        max-width: 160px;
    }

    .vv-modal__btn {
        padding: 10px;
        font-size: 15px;
    }

    .vv-modal__buttons {
        gap: 8px;
        margin-top: 10px;
    }

    .vv-filters {
        padding: 15px;
        margin: 40px 0 15px 0;
    }

    .vv-filters__main-row {
        flex-direction: column;
        gap: 12px;
    }

    .vv-filters__field--city,
    .vv-filters__field--type,
    .vv-filters__field--button,
    .vv-filters__field--more {
        width: 100%;
        min-width: auto;
    }

    .vv-input-wrapper {
        width: 100%;
    }

    .vv-filters__row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .vv-filters__field {
        width: 100%;
        min-width: auto;
    }

    .vv-filters__checkboxes {
        justify-content: center;
        gap: 12px;
    }

    .vv-filters__checkbox-sub-label-left {
        font-size: 16px;
    }

    .vv-filters__checkbox-sub-label-right {
        font-size: 16px;
    }

    .vv-filters__btn {
        width: 100%;
    }

    .vv-filters__additional {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #eee;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
        padding: 0;
        margin-top: 0;
        border-top: none;
    }

    .vv-filters__additional.open {
        max-height: 1000px;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #eee;
    }

    .vv-filters__more-btn {
        width: 100%;
        justify-content: center;
    }

    .vv-filters__additional-inner {
        flex-direction: column;
        gap: 20px;
    }

    .vv-filters__section-left,
    .vv-filters__section-right {
        min-width: auto;
    }

    .vv-filters__cargo-checkboxes-left {
        max-height: 380px;
        grid-template-columns: repeat(1, 1fr);
        overflow-y: auto;
        padding-top: 10px;
    }

    .vv-filters__cargo-checkboxes-right {
        max-height: 489px;
        grid-template-columns: repeat(1, 1fr);
        overflow-y: auto;
        padding-top: 10px;
    }

    .vv-filters__params {
        flex-direction: column;
        gap: 10px;
    }

    .vv-filters__result {
        margin: 15px 0;
        font-size: 16px;
        text-align: center;
    }

    .vv-pagination {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .vv-pagination__wrapper {
        min-width: min-content;
        padding: 0 10px;
        gap: 6px;
    }

    .vv-pagination__link {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        padding: 0 6px;
    }

    .vv-pagination__dots {
        min-width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .vv-card {
        width: calc(50% - 5px);
        min-width: 140px;
        min-height: 380px;
    }

    .vv-card__image {
        height: 140px;
    }

    .vv-card__info {
        padding: 10px 10px 0 10px;
        gap: 4px;
    }

    .vv-card__name {
        font-size: 16px;
    }

    .vv-card__price-number,
    .vv-card__price-currency {
        font-size: 16px;
    }

    .vv-card__price-label {
        font-size: 11px;
    }

    .vv-card__city {
        font-size: 11px;
    }

    .vv-card__city::before {
        width: 12px;
        height: 12px;
    }

    .vv-card__reviews {
        font-size: 11px;
        gap: 6px;
    }

    .vv-card__star {
        width: 14px;
        height: 14px;
    }

    .vv-card__btn {
        padding: 7px 0;
        font-size: 12px;
    }

    .vv-card__btn::before {
        width: 12px;
        height: 12px;
    }

    .vv-card__buttons {
        padding: 10px;
        gap: 8px;
    }

    .vv-pagination__wrapper {
        gap: 4px;
        padding: 0 5px;
    }

    .vv-pagination__link {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
        padding: 0 4px;
    }

    .vv-pagination__dots {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Модалка на очень маленьких экранах */
    .vv-modal__right {
        padding: 15px;
    }

    .vv-modal__name {
        font-size: 18px;
    }

    .vv-modal__role {
        font-size: 10px;
    }

    .vv-modal__stat strong {
        font-size: 16px;
    }

    .vv-modal__stat {
        font-size: 12px;
    }

    .vv-modal__star {
        font-size: 28px;
    }

    .vv-modal__reviews {
        font-size: 13px;
    }

    .vv-modal__info-item {
        font-size: 14px;
    }

    .vv-modal__status-icon-img {
        width: 50px;
        height: 25px;
    }

    .vv-modal__btn {
        padding: 8px;
        font-size: 14px;
    }

    .vv-modal__btn::before {
        width: 13px;
        height: 13px;
    }
}