.prod-card {
  border: 1px solid #e1e1e1;
  padding: 15px;
  margin-bottom: 30px;
  background: #fff;
  transition: all 0.3s ease;
}
.prod-card:hover {
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.prod-card-image {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}
.prod-card-img {
  max-width: 100%;
  height: auto;
}
.prod-card-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.prod-card-name a {
  color: #333;
}
.prod-description {
  font-size: 14px;
  margin-bottom: 15px;
}
.prod-description .strong {
  font-weight: 600;
}
.tab {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}
.tab span {
  padding: 5px 10px;
  border: 1px solid #ddd;
  cursor: pointer;
}
.tab span.sel {
  background: #fec122;
  border-color: #fec122;
}
.prod-card-price-new {
  font-size: 18px;
  font-weight: 600;
}
.btn-more {
  display: inline-block;
  padding: 8px 20px;
  background: #fec122;
  color: #130200;
  text-decoration: none;
  font-weight: 600;
}


.video-preview-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-preview-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}