/* ==========================================================================
   video-review.css — "ভিডিও রিভিউ" সেকশনের কার্ড, স্ক্রল, ও ভিডিও মডাল।
   সম্পূর্ণ নতুন, স্বতন্ত্র ক্লাস (vr-*) — বিদ্যমান কোনো CSS ফাইল/ক্লাস
   এডিট করা হয়নি, তাই কোনো পুরনো স্টাইল ভাঙার ঝুঁকি নেই।
   ========================================================================== */
.vr-wrap {
  max-width: 1200px;
  margin: 22px auto;
  padding: 0 14px;
}
.vr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.vr-head h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.vr-body {
  position: relative;
  display: flex;
  align-items: center;
}
.vr-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}
.vr-scroll::-webkit-scrollbar { height: 6px; }
.vr-scroll::-webkit-scrollbar-thumb { background: #d7d7d7; border-radius: 10px; }

.vr-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.vr-arrow:hover { background: #f5f5f5; }

.vr-card {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.vr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.vr-thumb {
  position: relative;
  width: 100%;
  height: 130px;
  background: #222 center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vr-thumb-fallback {
  font-size: 34px;
  opacity: 0.7;
}
.vr-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #e6432f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.vr-card-body {
  padding: 10px 12px 12px;
}
.vr-card-title {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  max-height: 2.7em;
  overflow: hidden;
}
.vr-product-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #0a8a3e;
  text-decoration: none;
}
.vr-product-link:hover { text-decoration: underline; }

/* ---- প্রোডাক্ট পেজে (ছোট, সিঙ্গেল-কলাম কনটেক্সটে বসানো) ---- */
.vr-body-product .vr-scroll { padding-bottom: 4px; }

/* ---- ভিডিও মডাল ---- */
.vr-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vr-modal.open { display: flex; }
.vr-modal-inner {
  position: relative;
  width: 100%;
  max-width: 860px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}
.vr-modal-body {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.vr-modal-body iframe,
.vr-modal-body video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vr-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .vr-card { width: 160px; }
  .vr-thumb { height: 96px; }
}
