/* FAQ Tab Styling */
.product-faq-tabs {
    margin-top: 20px;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-toggle {
    background: #f9f9f9;
    padding: 12px 16px;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-toggle.active {
    background-color: #eee;
}

.faq-content {
    display: none;
    padding: 15px;
    background: #fff;
}

/* WooCommerce product video responsive wrapper */
.wc-product-video {
  max-width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio - change if needed */
  height: 0;
  overflow: hidden;
}

.wc-product-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* caption style (optional) */
.wc-product-video-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

