/* ── VK Product Tabs ─────────────────────────────────────────────────────── */

.vk-tabs-wrap {
  font-family: "Manrope", system-ui, sans-serif;
  color: #2a2218;
}

/* Nav */
.vk-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 2px solid #d4581a;
  margin-bottom: 0;
}

.vk-tab-btn {
  position: relative;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 12px 20px 14px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px !important;
  font-weight: 500;
  color: #7a6e62 !important;
  cursor: pointer;
  transition: color .15s;
  white-space: nowrap;
}

.vk-tab-btn:hover { color: #2a2218 !important; }

.vk-tab-btn.vk-tab-active {
  color: #2a2218 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  background: none !important;
}
.vk-tab-btn.vk-tab-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: #d4581a;
  border-radius: 2px 2px 0 0;
}

/* Panels wrapper */
.vk-tabs-body {
  border: 1px solid #d4581a !important;
  border-top: none !important;
  border-radius: 0 0 12px 12px;
  background: #fff;
  padding: 28px;
  margin-bottom: 0;
}

/* Panels */
.vk-tab-panel { display: none; }
.vk-tab-panel.vk-tab-active { display: block; }

/* Prose (description) */
.vk-tab-prose { line-height: 1.7; font-size: 15px; color: #3d3228; }
.vk-tab-prose p { margin-bottom: 12px; }
.vk-tab-prose ul, .vk-tab-prose ol { padding-left: 20px; margin-bottom: 12px; }
.vk-tab-prose li { margin-bottom: 6px; }

/* Download steps */
.vk-download-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vk-download-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #faf8f5;
  border: 1px solid #e3ddd5;
  border-radius: 10px;
  padding: 14px 16px;
}
.vk-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #d4581a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.vk-step-text {
  font-size: 14px;
  line-height: 1.55;
  color: #2a2218;
  padding-top: 3px;
}

/* FAQs */
.vk-faq-list { margin: 0; padding: 0; }
.vk-faq-list dt {
  font-weight: 700;
  font-size: 15px;
  color: #2a2218;
  margin-top: 16px;
  margin-bottom: 6px;
}
.vk-faq-list dt:first-child { margin-top: 0; }
.vk-faq-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5a4e44;
  padding-left: 12px;
  border-left: 3px solid #e3ddd5;
}

/* System requirements */
.vk-sysreq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vk-sysreq-list li {
  font-size: 14px;
  color: #2a2218;
  padding: 10px 14px;
  background: #faf8f5;
  border: 1px solid #e3ddd5;
  border-radius: 8px;
  line-height: 1.5;
}

/* Related products */
.vk-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vk-related-card {
  text-decoration: none;
  color: inherit;
  background: #faf8f5;
  border: 1px solid #e3ddd5;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.vk-related-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.vk-related-img img { width: 100%; height: auto; display: block; }
.vk-related-name {
  font-size: 13px;
  font-weight: 700;
  color: #2a2218;
  padding: 10px 12px 4px;
  line-height: 1.35;
}
.vk-related-price {
  padding: 0 12px 12px;
  font-size: 13px;
  font-weight: 800;
  color: #d4581a;
}

/* Reviews */
.vk-reviews-list { display: flex; flex-direction: column; gap: 12px; }
.vk-review-card {
  background: #faf8f5;
  border: 1px solid #e3ddd5;
  border-radius: 10px;
  padding: 14px 16px;
}
.vk-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.vk-review-author { font-weight: 700; font-size: 14px; color: #2a2218; }
.vk-review-stars { color: #d4581a; font-size: 15px; letter-spacing: 1px; }
.vk-review-text { margin: 0; font-size: 14px; line-height: 1.6; color: #5a4e44; }

/* Empty state */
.vk-tab-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: #faf8f5;
  border: 1px dashed #d0c8bf;
  border-radius: 10px;
  color: #9a8e84;
  font-size: 14px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .vk-tabs-nav { gap: 2px; }
  .vk-tab-btn { padding: 8px 12px; font-size: 13px; }
  .vk-related-grid { grid-template-columns: repeat(2, 1fr); }
}
