* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #F9FAFB;
    color: #111111;
}

a {
    text-decoration: none;
    color: inherit;
}



img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
    border: none;
    cursor: pointer;
}

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

.container{
    width: 1100px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
 * VEHICLE PAGE
 * ============================================================ */
.vehicle-page{
    padding: 24px 0 70px 0;
}

.vehicle-page .vp-breadcrumbs{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: #6A7282;
    margin-bottom: 18px;
}

.vehicle-page .vp-breadcrumbs a{
    color: #6A7282;
}

.vehicle-page .vp-breadcrumbs a:hover{
    color: #d41623;
}

.vehicle-page .vp-breadcrumbs .sep{
    color: #C7CDD6;
}

.vehicle-page .vp-layout{
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.vehicle-page .vp-left{
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.vehicle-page .vp-right{
    width: 390px;
    max-width: 100%;
    position: -webkit-sticky;
    position: sticky;
    top: 92px;
    align-self: flex-start;
}

.vp-published {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}

.vehicle-page .vp-card{
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
}

.vehicle-page .vp-card-inner{
    padding: 18px;
}

/* ============================================================
 * GALLERY
 * ============================================================ */
.vehicle-page .vp-gallery{
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    max-width: 100%;
}

.vehicle-page .vp-gallery-main{
    position: relative;
    height: 420px;
    background: #ffffffd6;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: color-dodge;
}

.vehicle-page .vp-gallery-main img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    position: relative;
}

.vehicle-page .vp-gallery-main .vp-gallery-overlay{
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    position: absolute;
}

.vehicle-page .vp-badges{
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.vehicle-page .vp-badge{
    font-size: 12px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17,17,17,0.75);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.vehicle-page .vp-badge.is-green{
    background: rgba(22, 163, 74, 0.92);
}

.vehicle-page .vp-gallery-nav{
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.vehicle-page .vp-gallery-arrow{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.vehicle-page .vp-gallery-arrow img{
    width: 15px;
}

.vehicle-page .vp-gallery-arrow.vp-prev img{
    transform: rotate(180deg);
}

.vehicle-page .vp-gallery-arrow:hover{
    opacity: 0.9;
}

.vehicle-page .vp-gallery-counter{
    position: absolute;
    right: 14px;
    bottom: 14px;
    background: rgba(17,17,17,0.75);
    color: #ffffff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    z-index: 2;
}

.vehicle-page .vp-gallery-thumbs{
    display: flex;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid #E5E7EB;
    overflow-x: auto;
}

.vehicle-page .vp-thumb{
    flex: 0 0 140px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    background: #F3F4F6;
    cursor: pointer;
}

.vehicle-page .vp-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-page .vp-thumb.active{
    border-color: #d41623;
}

/* ============================================================
 * RIGHT CARD (STICKY)
 * ============================================================ */
.vehicle-page .vp-title{
    font-size: 29px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 5px;
}

.vehicle-page .vp-meta{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #6A7282;
    margin-bottom: 12px;
}

.vehicle-page .vp-meta img{
    margin-top: -2px;
}

.vehicle-page .vp-price-row{
    /* display: flex; */
    /* align-items: flex-end; */
    /* justify-content: space-between; */
    /* gap: 12px; */
}

.vehicle-page .vp-price{
    font-size: 28px;
    font-weight: 800;
    color: #d41623;
}

.vehicle-page .vp-price-old{
    font-size: 13px;
    color: #9AA3B2;
    text-decoration: line-through;
    margin-top: 2px;
}

.vehicle-page .vp-price .price{

}

.vehicle-page .vp-price .price .old{
    text-decoration: line-through;
    color: #9aa0a6;
    font-weight: 400;
    font-size: 16px;
    display: block;
}

.vehicle-page .vp-saved{
    font-size: 13px;
    color: #16A34A;
    font-weight: 600;
    margin-top: 2px;
}

.vehicle-page .vp-actions-top{
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    margin-top: 20px;
}

.vehicle-page .vp-icon-btn{
    width: 100%;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #e6e7eb;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: -0.2px;
    white-space: nowrap;
    gap: 5px;
    color: #111111;
}

.vehicle-page .vp-icon-btn img{
    width: 16px;
}

.vehicle-page .vp-icon-btn:hover{
    opacity: 0.8;
}

.vehicle-page .vp-mini-specs{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    background: #F9FAFB;
    border: 1px solid #EEF2F7;
    margin-bottom: 14px;
}

.vehicle-page .vp-mini-spec{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    color: #4A5565;
}

.vehicle-page .vp-mini-spec b{
    color: #111111;
    font-weight: 600;
}

.vp-seller{
    position: relative;
}

.vp-seller-top{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    justify-content: flex-start;
    padding-top: 0;
    /* flex-direction: column; */
}


.vp-seller iframe{
    border-radius: 8px;
}

.vehicle-page .vp-seller-top .vp-seller-img{
    height: 80px;
    width: 80px;
    flex: 0 0 80px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f9fafb;
    border: 1px solid #e6e7eb;
}

.vehicle-page .vp-seller-top .vp-seller-img img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.vehicle-page .vp-seller-name{
    font-size: 15px;
    width: 100%;
    text-align: left;
}

.vehicle-page .vp-seller-name h3{
    font-size: 16px;
    font-weight: 700;
    margin: 0px;
}

.vehicle-page .vp-seller-badge{
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #F1F5F9;
    color: #0F172A;
    border: 1px solid #E5E7EB;
}

.vehicle-page .vp-seller-lines{
    display: flex;
    gap: 4px;
    font-size: 14px;
    align-items: center;
}

.vehicle-page .vp-seller-lines .line{
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-page .vp-seller-lines img{
    width: 16px;
}

.dealers-card .authorized-dealer{
    position: absolute;
    right: 14px;
    top: 6px;
}

.vehicle-page .vp-btn{
    width: 100%;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    gap: 10px;
}

.vehicle-page .vp-btn-primary{
    background: #d41623;
    color: #ffffff;
    margin-top: 15px;
}

.vehicle-page .vp-btn-primary img{
    filter: invert(1);
}

.vehicle-page .vp-btn-primary:hover{
    opacity: 0.92;
}

.vehicle-page .vp-btn-secondary{
    background: #ffffff;
    border: 1px solid #E5E7EB;
    color: #111111;
    margin-top: 10px;
}

.vehicle-page .vp-btn-secondary:hover{
    border-color: #D1D5DB;
}

.vehicle-page .vp-seller-link{
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 13px;
    color: #d41623;
    font-weight: 600;
}

.vehicle-page .vp-seller-link:hover{
    opacity: 0.85;
}

.vehicle-page .vp-warning{
    margin-top: 12px;
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #92400E;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 18px;
}

.authorized-dealer img{
    width: 40px;
}

/* ============================================================
 * CONTENT SECTIONS
 * ============================================================ */
.vehicle-page .vp-section{
    margin-top: 18px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
}

.vehicle-page .vp-section .vp-section-inner{
    padding: 18px;
}

.vehicle-page .vp-section-title{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.vehicle-page .vp-quick-specs{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vehicle-page .vp-quick-spec{
    flex: 1 1 170px;
    min-width: 170px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.vehicle-page .vp-quick-spec img{
    width: 30px;
}

.vehicle-page .vp-quick-spec .vp-quick-spec-content{

}

.vehicle-page .vp-quick-spec .label{
    font-size: 14px;
    /* color: #6A7282; */
}

.vehicle-page .vp-quick-spec .value{
    font-weight: 700;
    color: #111111;
    font-size: 16px;
}

.vehicle-page .vp-table{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.vehicle-page .vp-table tr{
    border-top: 1px solid #EEF2F7;
}

.vehicle-page .vp-table tr:first-child{
    border-top: none;
}

.vehicle-page .vp-table td{
    padding: 10px 0px;
    vertical-align: top;
}

.vehicle-page .vp-table td:first-child{
    width: 45%;
    /* color: #6A7282; */
}

.vehicle-page .vp-table td:last-child{
    font-weight: 600;
    color: #111111;
    text-align: left;
}

.vehicle-page .vp-desc{
    font-size: 14px;
    color: #4A5565;
    line-height: 22px;
}

/* Force our own font-size on the pasted description content.
   Sellers often paste text with inline font-size (from Word / other sites),
   which would otherwise blow up the text. Override it on every child. */
.vehicle-page .vp-desc,
.vehicle-page .vp-desc *{
    font-size: 14px !important;
    line-height: 22px !important;
}

.vehicle-page .vp-equipment{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 20px;
}

.vehicle-page .vp-equipment li{
    flex: 1 1 240px;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #111111;
}

.vehicle-page .vp-eq-check{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f9fafb;
    border: 1px solid #e6e7eb;
    color: #dc2627;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.vehicle-page .vp-eq-check img{
    width: 10px;
}

/* ============================================================
 * SIMILAR VEHICLES
 * ============================================================ */
.vehicle-page .vp-similar{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.vehicle-page .vp-similar-card{
    flex: 1 1 260px;
    max-width: 32%;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    overflow: hidden;
}

.vehicle-page .vp-similar-card .img-box{
    height: 160px;
    background: #F3F4F6;
    overflow: hidden;
}

.vehicle-page .vp-similar-card .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle-page .vp-similar-card .content{
    padding: 14px;
}

.vehicle-page .vp-similar-card .title{
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.vehicle-page .vp-similar-card .meta{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #6A7282;
    font-size: 12px;
    margin-bottom: 10px;
}

.vehicle-page .vp-similar-card .price{
    font-size: 18px;
    font-weight: 900;
    color: #d41623;
}

/* responsive */
@media (max-width: 1100px){
    .vehicle-page .vp-layout{
        flex-direction: column;
    }
    .vehicle-page .vp-right{
        position: static;
        width: 100%;
    }
    .vehicle-page .vp-similar-card{
        max-width: 100%;
    }
}


/* ============================================================
 * GALLERY LIGHTBOX (simple)
 * ============================================================ */
.vp-lightbox{
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.vp-lightbox.is-open{
    display: flex;
}

.vp-lightbox .vp-lightbox-inner{
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    border-radius: 14px;
    overflow: hidden;
    background: #111111;
}

.vp-lightbox img{
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    background: #111111;
}

.vp-lightbox .vp-lightbox-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.vp-gallery .vp-main-img{
    cursor: zoom-in;
}

.vp-icon-btn.is-active {

}
.vp-icon-btn.is-active img {
    filter: saturate(2);
    width: 16px;
}

.vp-contacts{
    margin-top: 10px;
    margin-bottom: 0;
    border: 1px solid #e6e7eb;
    padding: 20px;
    border-radius: 8px;
}

.vp-contacts .vp-contact{
    display: flex;
    gap: 20px;
    align-content: center;
    align-items: center;
    flex-direction: row;
}

.vp-contacts .vp-contact .img-box{
    width: 40px;
    height: 40px;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
}

.vp-contacts .vp-contact .img-box img{
    width: 22px;
}

.vp-contacts .vp-contact .contact-info{
    font-size: 14px;
    text-align: center;
}

.vp-contacts .vp-contact .contact-info .name{
}

.vp-contacts .vp-contact .contact-info a{
    display: block;
}

.vp-contacts .vp-contact .contact-info a span{

}

.vp-contacts .vp-contact .contact-info a.phone-cta{
    font-size: 20px;
    font-weight: 700;
}

.wh-card{
    margin-top: 15px;
}


.wh-card h3{
    font-size: 18px;
    font-weight: 700;
}


/* .wh-card .vp-card-inner{
    padding:18px;
} */

.wh-card h3{
    font-size: 16px;
}

.wh-table{
    border:1px solid rgba(0,0,0,.08);
    border-radius:14px;
    overflow:hidden;
    background:#fff;
}

.wh-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding: 10px 10px;
    border-top:1px solid rgba(0,0,0,.06);
}

.wh-row:first-child{
    border-top:none;
}

.wh-row.is-today{
    background: #FBE9E9;
}

.wh-day{
    font-size:14px;
    color:#111;
}

.wh-time{
    font-size:14px;
    font-weight:600;
}

.wh-time.is-open{
}

.wh-time.is-closed{
    font-weight: 500;
}

.wh-note{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:12px;
    font-size:12px;
    color: rgba(0,0,0,.65);
}

.wh-ico{
    width:18px;
    height:18px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
}

/*.vp-card{
    margin-top: 20px;
}*/

.vp-contacts .vp-contact .img-box {
    width: 40px;
    height: 40px;
    background-color: #F3F4F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
}

.vp-contacts .vp-contact .img-box img {
    width: 22px;
}

.vp-contacts .vp-contact .contact-info {
    font-size: 14px;
    text-align: left;
}


.sold-vehicle{
    text-align: center;
    z-index: 1;
    background-color: #dc2627;
    width: max-content;
    padding: 5px 17px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    width: 100%;
}


.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    margin: 20px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vp-card-header-body iframe{
    margin-top: 20px;
    border-radius: 8px;
}


.vehicle-price{
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.vp-breadcrumbs .breadcrumb{
    margin-bottom: 0px;
}

.vehicle-price li{
    margin-bottom: 5px;
    font-size: 12px;
    padding: 7px 9px;
    max-width: 100%;
    color: #111111;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    width: max-content;
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #e6e7eb;
    display: flex;
    gap: 10px;
}

.vehicle-price li .vp-check{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #f9fafb;
    border: 1px solid #e6e7eb;
    color: #dc2627;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.vehicle-price li .vp-check img{
    width: 10px;
}


@media (max-width: 992px){

    .vehicle-page .vp-breadcrumbs{
        font-size: 10px;
    }

    .container{

    }

    .vehicle-page .vp-title{
        margin-bottom: 5px;
    }

    .vp-price-row{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .vehicle-page .vp-price{
        margin-bottom: 0px;
    }

    .vehicle-page .vp-thumb{
        flex: 0 0 120px;
        height: 83px;
    }

    .vehicle-page .vp-gallery{
        margin-top: 20px;
    }

    .vehicle-page .vp-gallery-main{
        height: 310px;
    }


}

/* =====================================================================
   SHARE MODAL
   ===================================================================== */

.vp-share-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1200;
    display: none;
}

.vp-share-overlay.is-open {
    display: block;
    animation: vpShareFadeIn .18s ease;
}

.vp-share-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1201;
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    display: none;
}

.vp-share-modal.is-open {
    display: block;
    animation: vpShareSlideIn .2s ease;
}

@keyframes vpShareFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes vpShareSlideIn {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

.vp-share-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #F3F4F6;
    color: #6B7280;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    padding: 0;
    z-index: 2;
}

.vp-share-close:hover {
    background: #E5E7EB;
    color: #111;
}

.vp-share-heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #111;
}

.vp-share-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #F3F4F6;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 22px;
}

.vp-share-card-img {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

.vp-share-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-width: none;
}

.vp-share-card-info {
    flex: 1;
    min-width: 0;
}

.vp-share-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.vp-share-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.vp-share-card-meta {
    font-size: 12px;
    color: #6B7280;
}

.vp-share-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vp-share-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 10px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    /* font-weight: 600; */
    color: #111;
    background: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .15s, background .15s;
    font-family: inherit;
    height: 40px;
}

.vp-share-action:hover {
    border-color: #111;
    background: #F9FAFB;
    color: #111;
    text-decoration: none;
}

.vp-share-action:last-child {
    grid-column: 1 / -1;
}

.vp-share-action-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vp-share-action-icon img,
.vp-share-action-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    max-width: none;
}

.vp-share-icon-wa {
    color: #25D366;
}

.vp-share-action--copied {
    border-color: #16a34a !important;
    color: #16a34a !important;
}

@media (max-width: 520px) {
    .vp-share-modal {
        max-width: calc(100vw - 24px);
        padding: 22px 16px 18px;
    }

    .vp-share-card-img {
        width: 90px;
        height: 62px;
    }

    .vp-share-actions {
        grid-template-columns: 1fr;
    }

    .vp-share-action:last-child {
        grid-column: auto;
    }

    .vehicle-page .vp-gallery-thumbs{
        display: none;
    }
}

/* =====================================================================
   REPORT MODAL
   ===================================================================== */
.vp-report-text {
    font-size: 14px;
    color: #444;
    margin: 16px 0 8px;
}

.vp-report-feedback {
    font-size: 13px;
    margin-bottom: 8px;
    display: none;
    text-align: center;
}

.vp-report-feedback--error {
    color: #c00;
}

.vp-report-feedback--success {
    font-size: 14px;
    font-weight: 600;
    color: #16a34a;
    margin: 12px 0;
}

.vp-report-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
}

.vp-report-cancel-btn {
    padding: 10px 20px;
    border-radius: 8px;
}

.vp-report-confirm-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    background: #dc2626;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.vp-report-confirm-btn:hover {
    background: #b91c1c;
}

.vp-report-reasons {
    margin: 16px 0 4px;
}

.vp-report-reasons__label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.vp-report-reasons__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vp-report-reason-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
}

.vp-report-reason-item:hover {
    border-color: #dc2626;
    background: #fff5f5;
}

.vp-report-reason-item input[type="radio"] {
    display: none;
}

.vp-report-reason-item__box {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.15s;
    position: relative;
}

.vp-report-reason-item__box::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    transform: scale(0);
    transition: transform 0.15s;
    position: absolute;
}

.vp-report-reason-item input[type="radio"]:checked ~ .vp-report-reason-item__box {
    border-color: #dc2626;
}

.vp-report-reason-item input[type="radio"]:checked ~ .vp-report-reason-item__box::after {
    transform: scale(1);
}

.vp-report-reason-item input[type="radio"]:checked ~ .vp-report-reason-item__text {
    color: #dc2626;
    font-weight: 600;
}

.vp-report-reason-item__text {
    font-size: 14px;
    color: #374151;
    transition: color 0.15s;
}

/* =====================================================================
   INQUIRY MODAL
   ===================================================================== */

.vp-inquiry-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 0;
    display: none;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

.vp-inquiry-modal.is-open {
    display: flex;
    flex-direction: column;
}

.vp-inquiry-modal::-webkit-scrollbar {
    width: 5px;
}

.vp-inquiry-modal::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 4px;
}

/* Header strip */
.vp-inquiry-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 26px 28px 20px;
    border-bottom: 1px solid #F3F4F6;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

.vp-inquiry-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #FEF2F2;
    color: #d41623;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.vp-inquiry-header .vp-share-heading {
    margin: 0 0 4px;
    font-size: 18px;
}

.vp-inquiry-subtitle {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
}

/* Form body */
.vp-inquiry-form {
    display: grid;
    gap: 16px;
    padding: 22px 28px 24px;
}

.vp-inquiry-grid {
    display: grid;
    gap: 14px;
}

.vp-inquiry-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.vp-inquiry-grid-phone {
    grid-template-columns: 120px 1fr;
}

.vp-inquiry-field {
    display: grid;
    gap: 6px;
}

.vp-inquiry-field label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .01em;
}

.vp-inquiry-field input,
.vp-inquiry-field textarea,
.vp-inquiry-field select {
    width: 100%;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    background: #FAFAFA;
    padding: 10px 13px;
    font-size: 14px;
    color: #111827;
    outline: none;
    transition: border-color .15s, box-shadow .15s, background .15s;
    margin-bottom: 10px;
}

.vp-inquiry-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
}

.vp-inquiry-field input:focus,
.vp-inquiry-field textarea:focus,
.vp-inquiry-field select:focus {
    border-color: #d41623;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 22, 35, 0.10);
}

.vp-inquiry-field input.is-invalid,
.vp-inquiry-field textarea.is-invalid,
.vp-inquiry-field select.is-invalid {
    border-color: #d41623;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 22, 35, 0.10);
}

/* Consent checkbox reusing container-checkbox */
.vp-inquiry-consent {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
    line-height: 1.5;
    padding-left: 34px;
    min-height: 24px;
}

.vp-inquiry-consent .checkmark-checkbox {
    top: 0;
    width: 22px;
    height: 22px;
}

.vp-inquiry-consent .checkmark-checkbox:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 11px;
}

/* Actions */
.vp-inquiry-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    padding-top: 4px;
    border-top: 1px solid #F3F4F6;
    margin-top: 15px;
    padding-top: 15px;
}

.vp-inquiry-form .vp-report-feedback {
    margin: 0;
    text-align: right;
}

.vp-inquiry-btn-cancel {
    background: none;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: border-color .15s, color .15s;
}

.vp-inquiry-btn-cancel:hover {
    border-color: #9CA3AF;
    color: #111827;
}

.vp-inquiry-btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d41623;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: background .15s, transform .1s;
}

.vp-inquiry-btn-submit:hover {
    background: #b8121e;
}

.vp-inquiry-btn-submit:active {
    transform: scale(0.98);
}

.vp-inquiry-btn-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .vp-inquiry-modal {
        max-height: 90vh;
    }

    .vp-inquiry-header {
        padding: 20px 18px 16px;
    }

    .vp-inquiry-form {
        padding: 18px 18px 20px;
    }

    .vp-inquiry-grid-2,
    .vp-inquiry-grid-phone {
        grid-template-columns: 1fr;
    }

    .vp-inquiry-actions {
        flex-direction: column-reverse;
    }

    .vp-inquiry-btn-cancel,
    .vp-inquiry-btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* ── Lebdeča vrstica za predogled oglasa (samo lastnik) ────────────────── */
.vp-preview-bar {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 9999;
    background: #FFFFFF;
    border: 1px solid #DC2626;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    max-width: 92vw;
}

.vp-preview-bar-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.vp-preview-badge {
    background: #FFFFFF;
    color: #DC2626;
    border: 1px solid #DC2626;
    font-weight: 700;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 8px;
}

.vp-preview-note {
    color: #555555;
    font-size: 13px;
}

.vp-preview-return {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    background: #DC2626;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.vp-preview-return:hover {
    opacity: 0.8;
}

/* V predogledu (lasten neobjavljen osnutek) skrij interaktivne/deljene opcije:
   pošlji sporočilo, priljubljeno, deli, primerjaj, natisni, prijavi. */
.vp-preview-mode .vp-actions-top,
.vp-preview-mode .js-inquiry-open {
    display: none !important;
}