.vpcs-slider {
    position: relative;
    width: 100%;
    --vpcs-desktop: 1;
    --vpcs-tablet: 1;
    --vpcs-mobile: 1;
    --vpcs-gap: 24px;
}
.vpcs-viewport {
    overflow: hidden;
    width: 100%;
}
.vpcs-track {
    display: flex;
    gap: var(--vpcs-gap);
    transition: transform 350ms ease;
    will-change: transform;
}
.vpcs-slide {
    flex: 0 0 calc((100% - ((var(--vpcs-desktop) - 1) * var(--vpcs-gap))) / var(--vpcs-desktop));
    min-width: 0;
}
.vpcs-card {
    background: #ffffff;
    border: 1px solid #d9dee6;
    border-radius: 14px;
    display: block;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    width: 100%;
}
.vpcs-image {
    height: 286px;
    position: relative;
    overflow: hidden;
    background: #eef2f5;
}
.vpcs-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vpcs-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    background: #008a78;
    color: #ffffff;
    font-family: inherit;
    font-size: 13px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.vpcs-body {
    padding: 45px 18px 20px;
}
.vpcs-title {
    margin: 0 0 18px;
    color: #020b24;
    font-family: inherit;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 800;
}
.vpcs-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 0 0 22px;
    color: #020b24;
    font-family: inherit;
    font-size: 19px;
    line-height: 1.2;
}
.vpcs-row-label {
    font-weight: 400;
}
.vpcs-row-value {
    font-weight: 800;
    color: #020b24;
    text-align: right;
}
.vpcs-saving-box {
    margin-bottom: 0;
    background: #d9f2ec;
    color: #008060;
    border-radius: 5px;
    padding: 9px 10px;
    font-weight: 800;
}
.vpcs-saving-box .vpcs-row-label,
.vpcs-saving-box .vpcs-row-value {
    color: inherit;
    font-weight: 800;
}
.vpcs-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #020b24;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .14);
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 34px;
    line-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 200ms ease, transform 200ms ease;
}
.vpcs-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}
.vpcs-arrow:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.vpcs-prev { left: 10px; }
.vpcs-next { right: 10px; }
.vpcs-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}
.vpcs-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: #c7ced8;
    cursor: pointer;
}
.vpcs-dot.is-active,
.vpcs-dot:hover {
    background: #008a78;
}
@media (max-width: 1024px) {
    .vpcs-slide {
        flex-basis: calc((100% - ((var(--vpcs-tablet) - 1) * var(--vpcs-gap))) / var(--vpcs-tablet));
    }
}
@media (max-width: 767px) {
    .vpcs-slide {
        flex-basis: calc((100% - ((var(--vpcs-mobile) - 1) * var(--vpcs-gap))) / var(--vpcs-mobile));
    }
    .vpcs-title { font-size: 24px; }
    .vpcs-row { font-size: 17px; }
}
