/**
 * Front-end dynamic product tabs (window has no framework here — plain CSS + a tiny vanilla script).
 * The main product tab strip that replaces WooCommerce's default tabs. Theme-neutral, self-contained.
 */
.lms-ptabs { margin: 32px 0; clear: both; }

.lms-ptabs-bar {
    display: flex; flex-wrap: wrap; gap: 4px;
    border-bottom: 2px solid #e5e7eb; margin-bottom: 22px;
}
.lms-ptabs-tab {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: 0; border-bottom: 3px solid transparent;
    margin-bottom: -2px; padding: 12px 16px; cursor: pointer;
    font-size: 15px; font-weight: 600; color: #6b7280; line-height: 1.2;
    transition: color .15s, border-color .15s;
}
.lms-ptabs-tab:hover { color: #111827; }
.lms-ptabs-tab.active { color: #2563eb; border-bottom-color: #2563eb; }
.lms-ptabs-ico { font-size: 15px; }

.lms-ptabs-panel { display: none; }
.lms-ptabs-panel.active { display: block; animation: lms-ptabs-fade .18s ease; }
@keyframes lms-ptabs-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
    .lms-ptabs-bar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .lms-ptabs-tab { white-space: nowrap; padding: 10px 12px; font-size: 14px; }
}
