/* Container */
.entkreis-product-accordion {
  margin-top: 2em;
  max-width: 100%;
}

/* Each tab */
.entkreis-product-accordion .entkreis-tab {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75em;
}

/* Tab title */
.entkreis-tab-title {
  width: 100%;
  padding: 0.75em 1em;
  background: #fafafa;
  border: none;
  text-align: left;
  font-size: 1em;
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}
.entkreis-tab-title:hover {
  background: #f0f0f0;
}

/* Content panel */
.entkreis-tab-content {
  display: none;
  padding: 1em;
  background: #fff;
  line-height: 1.6;
}

/* Active state */
.entkreis-tab.active .entkreis-tab-content {
  display: block;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .entkreis-tab-title {
    font-size: 0.95em;
    padding: 0.75em;
  }
  .entkreis-tab-content {
    padding: 0.75em;
  }
}
