.qv-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-family: "Source Sans Pro", sans-serif;
  color: #5d4d3d;
}

.qv-top-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: start;
}

.qv-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qv-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.06;
  min-height: 350px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(58, 39, 23, 0.05);
}

.qv-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  filter: none;
}

.qv-main-img.is-zoomable {
  cursor: zoom-in;
}

.qv-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0,0,0,0.1);
  color: #2b1b0b;
  font-size: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  z-index: 5;
}
.qv-arrow:hover { background: #e6b436; color: #fff; border-color: #e6b436; }
.qv-arrow.prev { left: 10px; }
.qv-arrow.next { right: 10px; }

.qv-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

img.qv-dot {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  object-fit: cover;
  opacity: 0.6;
  transition: all 0.2s;
  background: #fff;
}

img.qv-dot.active {
  border-color: #e6b436;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(230, 180, 54, 0.2);
}

.qv-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qv-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qv-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #2b1b0b;
  margin: 0;
  line-height: 1.2;
}

.qv-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
}

.qv-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.qv-badge.beige { background: #f0e6d2; color: #5d4d3d; }
.qv-badge.green { background: #e3f0d2; color: #4a6b2f; }
.qv-badge.red { background: #f8d9d4; color: #8d2519; }

.qv-price {
  font-size: 26px;
  font-weight: 800;
  color: #2b1b0b;
}

.qv-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #5d4d3d;
}

.qv-actions-row {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.qv-actions-row .qty-stepper {
  flex: 0 0 auto;
}

.qv-add-btn {
  flex: 1;
  justify-content: center;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 16px;
  box-shadow: 0 8px 15px rgba(230, 180, 54, 0.25);
}

.qv-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(230, 180, 54, 0.35);
}

.qv-add-btn:disabled {
  background: #e0e0e0;
  border-color: #e0e0e0;
  color: #999;
  cursor: not-allowed;
  box-shadow: none;
}

.qv-add-btn:disabled::after {
  display: none;
}

.qv-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.qv-feat-box {
  background: #fdfaf6;
  border: 1px solid rgba(230, 210, 190, 0.4);
  border-radius: 50px; 
  padding: 8px 16px;
  font-size: 13px;
  color: #5d4d3d;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.qv-tabs-container {
  width: 100%;
  margin-top: 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}

.qv-tabs-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(58, 39, 23, 0.12);
  padding: 0 2px;
}

.qv-tab-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #6e5c46;
  cursor: pointer;
  text-align: center;
  min-width: 0;
  transition: color 0.2s ease;
}

.qv-tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #d6a12f;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.qv-tab-btn:hover {
  color: #2b1b0b;
}

.qv-tab-btn.active {
  color: #2b1b0b;
}

.qv-tab-btn.active::after {
  transform: scaleX(1);
}

.qv-warning-list {
  margin: 4px 0 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #5d4d3d;
  line-height: 1.6;
}

.qv-warning-list li {
  list-style: disc;
}

.qv-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.qv-info-row {
  display: flex;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding-bottom: 6px;
}

.qv-info-label {
  width: 100px;
  font-weight: 700;
  color: #2b1b0b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.qv-info-val { color: #5d4d3d; }

.qv-detail-block {
  color: #5d4d3d;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid rgba(58, 39, 23, 0.1);
  border-radius: 12px;
  background: #fffaf3;
  padding: 12px;
}

.qv-tab-table-group + .qv-tab-table-group {
  margin-top: 14px;
}

.qv-tab-subtitle {
  margin: 0 2px 8px;
  font-size: 13px;
  font-weight: 700;
  color: #7a5b33;
  letter-spacing: 0.2px;
}

.qv-tab-table-wrap {
  margin-top: 0;
  border: 1px solid rgba(58, 39, 23, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.qv-tab-table {
  width: 100%;
  border-collapse: collapse;
}

.qv-tab-table th,
.qv-tab-table td {
  border-bottom: 1px solid rgba(58, 39, 23, 0.08);
  padding: 9px 10px;
  text-align: center;
  vertical-align: top;
}

.qv-tab-table th {
  width: 33%;
  color: #2b1b0b;
  font-weight: 700;
}

.qv-tab-table td {
  color: #5d4d3d;
}

.qv-tab-heading-row th {
  width: auto;
  color: #694618;
  background: #f9eed8;
  border-bottom: 1px solid rgba(230, 180, 54, 0.35);
  text-align: center;
}

.qv-footer-trust {
  text-align: center;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px dashed rgba(58, 39, 23, 0.15);
}

.qv-trust-text {
  font-size: 14px;
  color: #5d4d3d;
  margin-bottom: 16px;
  line-height: 1.5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.qv-trust-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.qv-trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0e6d2;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #2b1b0b;
}

@media (max-width: 768px) {
  .qv-top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .qv-image-box {
    min-height: 280px;
  }
  .qv-tabs-head {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .qv-tab-btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }
  .qv-trust-icons {
    flex-direction: column;
    align-items: stretch;
  }
  .qv-trust-pill {
    justify-content: center;
  }
}

.qv-tab-pane {
  display: none;
}

.qv-tab-pane.active {
  display: block;
}

.is-hidden {
  display: none !important;
}

.qv-data-images {
  display: none !important;
}
