.vo-filter-form{
  margin:0 0 20px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.vo-filter-form select{
  min-width:240px;
  padding:10px;
}
.vo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
  margin:20px 0;
}
.vo-card{
  position:relative;
  border:1px solid #ddd;
  background:#fff;
  padding:15px;
  border-radius:10px;
}
.vo-card img{
  width:100%;
  height:220px;
  display:block;
  border-radius:6px;
  object-fit:cover;
  background:#f5f5f5;
}
.vo-card h3{
  margin:12px 0 10px;
  font-size:18px;
}
.vo-short{
  color:#555;
  min-height:40px;
}
.vo-badge{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 10px;
  background:#1d4f91;
  color:#fff;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}
.vo-badge-sold{
  background:#b32d2e;
}
.vo-price-wrap{
  margin:12px 0;
}
.vo-price{
  font-size:24px;
  font-weight:700;
  color:#111;
}
.vo-price-old{
  text-decoration:line-through;
  color:#777;
  margin-right:8px;
}
.vo-button{
  display:inline-block;
  padding:10px 14px;
  background:#1d4f91;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  border:none;
}
.vo-single{
  max-width:1100px;
  margin:20px auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:24px;
}
.vo-single-gallery,
.vo-single-summary,
.vo-description{
  background:#fff;
}
.vo-main-image img{
  width:100%;
  max-height:520px;
  border-radius:8px;
  object-fit:contain;
  background:#f5f5f5;
  display:block;
}

.vo-thumb-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:15px;
}
.vo-thumb-item{
  width:90px;
  height:90px;
  border:1px solid #ddd;
  border-radius:8px;
  overflow:hidden;
  background:#f5f5f5;
  cursor:pointer;
}
.vo-thumb-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.vo-thumb-item.is-active{
  border-color:#1d4f91;
  box-shadow:0 0 0 2px rgba(29,79,145,.15);
}
.vo-single-summary{
  padding:10px 0;
}
.vo-condition-notes,
.vo-description,
.vo-short-desc{
  margin-top:20px;
  padding:16px;
  border:1px solid #ddd;
  border-radius:8px;
  background:#fff;
}
.vo-description{
  grid-column:1 / -1;
}
@media (max-width: 900px){
  .vo-single{
    grid-template-columns:1fr;
  }
}