/* Simple, clean UI loosely inspired by VoyagesPirates */
.vd-filters{
  margin-bottom:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.vd-filters select, .vd-filters input[type=number]{ padding:8px 10px; border:1px solid #e2e2e2; border-radius:8px; }
.vd-filters .vd-btn{ padding:8px 14px; border:none; border-radius:8px; background:#0066ff; color:#fff; font-weight:600; cursor:pointer; }

.vd-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:18px;
}
.vd-card{
  border:1px solid #eee; border-radius:14px; overflow:hidden; box-shadow:0 2px 10px rgba(0,0,0,.04);
  background:#fff; transition:transform .15s ease, box-shadow .15s ease;
}
.vd-card:hover{ transform:translateY(-2px); box-shadow:0 6px 18px rgba(0,0,0,.08); }
.vd-thumb{ aspect-ratio:16/9; background:#f4f7fb; overflow:hidden; }
.vd-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.vd-body{ padding:14px; }
.vd-title{ font-size:1.05rem; line-height:1.3; margin:0 0 8px; }
.vd-price{ font-weight:700; margin-bottom:8px; }
.vd-excerpt p{ margin:0 0 8px; color:#444; }
.vd-cta{ display:inline-block; padding:10px 14px; border-radius:10px; background:#0066ff; color:#fff; font-weight:600; text-decoration:none; }
.vd-pagination{ margin-top:20px; text-align:center; }
.vd-pagination .page-numbers{ display:inline-block; margin:0 4px; padding:6px 10px; border:1px solid #e2e2e2; border-radius:8px; text-decoration:none; }
.vd-pagination .current{ background:#0066ff; color:#fff; border-color:#0066ff; }
