.gbvs-wrap{
  --gbvs-card-w: 150px;
  --gbvs-gap: 10px;
  --gbvs-radius: 16px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.gbvs-wrap *{ box-sizing: border-box; }

.gbvs-track{
  display: flex;
  gap: var(--gbvs-gap);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 4px 16px 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gbvs-track::-webkit-scrollbar{ display: none; }

.gbvs-card{
  position: relative;
  flex: 0 0 var(--gbvs-card-w);
  width: var(--gbvs-card-w);
  aspect-ratio: 9 / 16;
  border-radius: var(--gbvs-radius);
  overflow: hidden;
  scroll-snap-align: start;
  background: #111;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  transition: transform .15s ease;
}
.gbvs-card:active{ transform: scale(.97); }

.gbvs-card .gbvs-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gbvs-shade{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
}

.gbvs-badge{
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.85);
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.gbvs-badge img{ width: 100%; height: 100%; object-fit: cover; display: block; }

.gbvs-info{
  position: absolute;
  left: 46px;
  right: 8px;
  bottom: 8px;
  color: #fff;
}
.gbvs-title{
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 3px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.gbvs-price{
  font-size: 12px;
  font-weight: 700;
}
.gbvs-price .gbvs-old{
  font-weight: 400;
  text-decoration: line-through;
  opacity: .75;
  margin-left: 5px;
  font-size: 11px;
}

.gbvs-play{
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gbvs-play svg{ width: 10px; height: 10px; fill: #fff; }

.gbvs-arrow{
  display: none;
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.gbvs-arrow svg{ width: 16px; height: 16px; fill: #222; }
.gbvs-arrow.gbvs-prev{ left: -4px; }
.gbvs-arrow.gbvs-next{ right: -4px; }

@media (min-width: 900px){
  .gbvs-wrap{ --gbvs-card-w: 190px; }
  .gbvs-track{ padding-left: 8px; padding-right: 8px; }
  .gbvs-arrow{ display: flex; }
  .gbvs-title{ font-size: 13px; }
}
