/* ─────────────────────────────────────────────────────────────────
   AudioCD — Custom Product Tabs  (Shipping · Grading · Pricing)
   ───────────────────────────────────────────────────────────────── */

/* ── Tab navigation bar ─────────────────────────────────────────── */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 0 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    gap: 0;
    list-style: none;
    background: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border-bottom: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: none;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: inline-block;
    padding: 12px 28px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    letter-spacing: 0.3px;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
    color: #111;
    border-bottom-color: #bbb;
}

/* ── Active tab ─────────────────────────────────────────────────── */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:hover {
    color: #111;
    font-weight: 700;
    border-bottom: 3px solid #111;
    background: none;
}

/* ── Tab panels ─────────────────────────────────────────────────── */
.woocommerce div.product .woocommerce-tabs .panel {
    padding: 30px 0;
    border: none;
    background: none;
    box-shadow: none;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}

/* ── Content inside each tab ────────────────────────────────────── */
.audiocd-tab-content {
    max-width: 860px;
}

.audiocd-tab-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #111;
}

.audiocd-tab-content h4 {
    font-size: 1.0rem;
    margin-bottom: 0;
}

.audiocd-tab-content h3 {
    font-size: 1.2rem;
}

.audiocd-tab-content p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 14px;
}

.audiocd-tab-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.audiocd-tab-content ul li {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
    list-style: disc;
}

.audiocd-tab-content strong {
    color: #222;
    font-weight: 600;
}

/* ── Mobile tweaks ──────────────────────────────────────────────── */
@media (max-width: 600px) {
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .audiocd-tab-content h2 {
        font-size: 1.1rem;
    }

    .audiocd-tab-content p,
    .audiocd-tab-content ul li {
        font-size: 0.88rem;
    }
}