/* ==================================================
   BizBein Product Tabs – FINAL Industrial Styling
   Compatible with WooCommerce + OceanWP
   ================================================== */

/* -------------------------------
   Tabs Wrapper
   ------------------------------- */
.bizbein-tabs-wrapper {
    margin-top: 50px;
    font-family: inherit;
}

/* -------------------------------
   Tabs Navigation
   ------------------------------- */
.bizbein-tabs-nav {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0 0 20px;
    border-bottom: 2px solid #e5e7eb;
}

.bizbein-tabs-nav li {
    padding: 12px 22px;
    background: #f3f4f6;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    transition: all 0.25s ease;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.bizbein-tabs-nav li:hover {
    background: #e5e7eb;
}

.bizbein-tabs-nav li.active {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* -------------------------------
   Tab Content
   ------------------------------- */
.bizbein-tab-content {
    display: none;
    padding: 26px;
    border: 1px solid #e5e7eb;
    border-top: none;
    border-radius: 0 6px 6px 6px;
    background: #ffffff;
    line-height: 1.7;
    color: #374151;
    font-size: 15px;
}

.bizbein-tab-content.active {
    display: block;
}

/* ==================================================
   Technical Specifications Table
   ================================================== */
.bizbein-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.bizbein-spec-table th,
.bizbein-spec-table td {
    border: 1px solid #e5e7eb;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.bizbein-spec-table th {
    width: 35%;
    background: #f9fafb;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.4px;
}

.bizbein-spec-table td {
    font-size: 14px;
    color: #374151;
}

.bizbein-spec-table tr:nth-child(even) td {
    background: #fafafa;
}

/* ==================================================
   FAQ Styling
   ================================================== */
.bizbein-faq-wrapper {
    margin-top: 10px;
}

.bizbein-faq-item {
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.bizbein-faq-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.bizbein-faq-item p {
    margin: 6px 0 0;
    color: #374151;
    font-size: 14.5px;
    line-height: 1.6;
}

/* ==================================================
   PRODUCT PAGE – RIGHT SIDE (WooCommerce)
   ================================================== */

/* Product Title */
.single-product .product_title {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

/* Price */
.single-product .price {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 12px 0;
}

/* Stock */
.single-product .stock {
    font-weight: 600;
    color: #16a34a;
}

/* Short description bullets */
.single-product .woocommerce-product-details__short-description ul {
    margin-top: 10px;
    padding-left: 18px;
}

.single-product .woocommerce-product-details__short-description li {
    font-size: 14.5px;
    color: #374151;
    margin-bottom: 6px;
}

/* Product meta (SKU, Category, Brand) */
.single-product .product_meta {
    font-size: 13.5px;
    color: #6b7280;
    margin-top: 12px;
}

.single-product .product_meta span {
    display: block;
    margin-bottom: 4px;
}

/* ==================================================
   Buttons – OceanWP Override (IMPORTANT)
   ================================================== */

/* Add to Cart */
.single-product .woocommerce button.single_add_to_cart_button {
    background: #f59e0b !important;
    color: #000 !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 14px 26px;
}

/* Buy Now */
.single-product .woocommerce .button.buy_now_button {
    background: #0f172a !important;
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 6px;
    padding: 14px 26px;
}

/* ==================================================
   Mobile Responsive
   ================================================== */
@media (max-width: 768px) {

    .bizbein-tabs-nav {
        flex-wrap: wrap;
        gap: 6px;
    }

    .bizbein-tabs-nav li {
        padding: 10px 14px;
        font-size: 13px;
    }

    .bizbein-tab-content {
        padding: 18px;
        font-size: 14px;
    }

    .bizbein-spec-table th,
    .bizbein-spec-table td {
        font-size: 14px;
        padding: 10px;
    }

    .single-product .product_title {
        font-size: 22px;
    }

    .single-product .price {
        font-size: 22px;
    }
}
/* ==========================================
   Description Content Styling (IMPORTANT)
   ========================================== */

/* Scope ONLY inside BizBein tabs */
.bizbein-tab-content p {
    color: #374151;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Headings inside description */
.bizbein-tab-content h2,
.bizbein-tab-content h3,
.bizbein-tab-content h4 {
    color: #0f172a;
    font-weight: 700;
    margin: 18px 0 10px;
}

/* Remove OceanWP blue links */
.bizbein-tab-content a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
}

.bizbein-tab-content a:hover {
    text-decoration: underline;
}

/* Lists inside description */
.bizbein-tab-content ul {
    padding-left: 18px;
    margin: 10px 0;
}

.bizbein-tab-content ul li {
    margin-bottom: 6px;
    color: #374151;
    font-size: 14.5px;
}
