/**
 * Product Custom Tabs - Matches WooCommerce / screenshot design
 * Thin light purple line above, dark blue active tab, gray inactive
 */

/* Wrapper - thin light purple separator line above tabs */
.pct-product-custom-taps.woocommerce-tabs {
    margin: 24px 0;
    padding: 0;
    border-top: 1px solid #e8e4ec;
}

/* Tab list - horizontal, side by side like DESCRIPTION | ADDITIONAL INFORMATION */
.pct-product-custom-taps .tabs.wc-tabs {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    border-bottom: 1px solid #e8e4ec;
}

.pct-product-custom-tabs .tabs.wc-tabs li {
    margin: 0;
    padding: 0;
}

.pct-product-custom-taps .tabs.wc-tabs li a {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #999;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s, border-color 0.2s;
}

.pct-product-custom-tabs .tabs.wc-tabs li a:hover {
    color: #555;
}

/* Active tab - dark blue text and underline (like screenshot) */
.pct-product-custom-tabs .tabs.wc-tabs li a.active,
.pct-product-custom-tabs .tabs.wc-tabs li.active a {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

/* Tab panels - only active visible */
.pct-product-custom-taps .woocommerce-Tabs-panel,
.pct-product-custom-tabs .wc-tab.pct-tab-panel {
    display: none;
    padding: 20px 0 0;
    line-height: 1.6;
}

.pct-product-custom-taps .woocommerce-Tabs-panel.pct-active,
.pct-product-custom-taps .wc-tab.pct-tab-panel.pct-active {
    display: block !important;
}

.pct-product-custom-taps .woocommerce-Tabs-panel p,
.pct-product-custom-taps .wc-tab.pct-tab-panel p {
    margin: 0 0 12px;
}

.pct-product-custom-taps .woocommerce-Tabs-panel p:last-child,
.pct-product-custom-taps .wc-tab.pct-tab-panel p:last-child {
    margin-bottom: 0;
}

/* WooCommerce single product page */
.single-product .pct-product-custom-taps {
    clear: both;
    width: 100%;
}

.single-product .woocommerce-tabs ~ .pct-product-custom-taps,
.single-product .product .pct-product-custom-taps {
    margin-top: 2em;
}
