.vc-featured {
    background: #ff9800;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
}

.vc-call-btn,
.vc-wa-btn {
    display: inline-block;
    padding: 10px 15px;
    margin-right: 6px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.vc-call-btn { background: #0073aa; }
.vc-wa-btn { background: #25D366; }

form input, form select, form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}


.featured-vehicles-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:24px;
}

.vehicle-card{
  background:#0f1115;
  border-radius:16px;
  overflow:hidden;
  color:#fff;
}

.vehicle-card-image{
  position:relative;
}

.vehicle-card-image img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:4px 10px;
  border-radius:8px;
  font-size:12px;
  font-weight:600;
}

.badge-featured{
  background:#00c389;
}

.badge-new{
  top:44px;
  background:#ff5722;
}

.vehicle-card-body{
  padding:16px;
}

.vehicle-year {
    font-size: 14px;
    opacity: 1;
}

.vehicle-title {
    margin: 6px 0;
    font-size: 20px;
    opacity: 0.7;
}
.vehicle-title:hover {
    opacity: 1;
}

.vehicle-title a {
  color:#fff;
  text-decoration:none;
}

.vehicle-price{
  font-size:20px;
  font-weight:700;
  color:#ff6b4a;
}

.vehicle-location{
  font-size:14px;
  opacity:.7;
  margin-top:4px;
}

.vehicle-specs{
  display:flex;
  justify-content:space-between;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.1);
  font-size:13px;
}


.vc-post-form h3 {
    margin-top: 25px;
}

.vc-post-form input,
.vc-post-form select,
.vc-post-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.vc-submit-btn {
    background: #2271b1;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.vc-gallery-wrapper {
    margin-top: 15px;
}

.vc-gallery-drop {
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    background: #fafafa;
}

.vc-gallery-drop:hover {
    border-color: #2271b1;
}

.vc-gallery-drop input {
    display: none;
}

.vc-gallery-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.vc-gallery-item {
    position: relative;
}

.vc-gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.vc-remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

/* =========================
   FULL PAGE OVERLAY
========================= */
.vc-processing-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.vc-overlay-content {
    text-align: center;
    color: #fff;
    font-size: 16px;
}

.vc-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,.3);
    border-top: 4px solid #0d6efd;
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: vc-spin 1s linear infinite;
}

@keyframes vc-spin {
    to { transform: rotate(360deg); }
}


