/**
 * Modern Pages Style
 * Minimal card design for visitblitz template pages
 * 
 * @package Publisher_Child
 * @since 1.0.0
 */

/* ==========================================================================
   Visitblitz Template Page Cards
   ========================================================================== */

.page-template-template-visitblitz .bs-vc-wrapper .vc_col-sm-8,.page-template-page-companies .bs-vc-wrapper .vc_col-sm-8 {
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
  padding: 16px;
}

.vc_do_toggle {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin: 15px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Toggle title */
.vc_do_toggle .vc_toggle_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 18px 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease;
  border-radius: 12px 12px 0 0;
}

.vc_do_toggle .vc_toggle_title h4 {
  margin: 0;
  font-size: 16px;
}

/* Toggle icon */
.vc_do_toggle .vc_toggle_icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Rotate icon when active */
.vc_do_toggle.vc_toggle_active .vc_toggle_icon {
  transform: rotate(45deg);
}

/* Toggle content */
.vc_do_toggle .vc_toggle_content {
  padding: 18px 20px;
  color: #333;
  line-height: 1.6;
  background: #f9f9f9;
  transition: all 0.3s ease;
  margin: 0;
}

/* Star ratings */
.kk-star-ratings {
  margin-top: 15px;
  text-align: center;
}

.kksr-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}

.kksr-stars-inactive .kksr-star .kksr-icon,
.kksr-stars-active .kksr-star .kksr-icon {
  width: 24px;
  height: 24px;
  background: #ddd;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  transition: all 0.3s ease;
}

.kksr-stars-active .kksr-star .kksr-icon {
  background: #ffc107; /* gold */
}

.kksr-legend {
  color: #555;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .vc_do_toggle .vc_toggle_title {
    padding: 15px;
  }
  .vc_do_toggle .vc_toggle_content {
    padding: 15px;
  }
  .kksr-stars {
    gap: 4px;
  }
  .kksr-stars-inactive .kksr-star .kksr-icon,
  .kksr-stars-active .kksr-star .kksr-icon {
    width: 20px;
    height: 20px;
  }
}
