/**
 * Product Detail Override (loaded LAST for highest priority)
 * - Replace green checkmark bullets with minimal grey dots
 * - Neutralize bullets on nav-tabs li
 * - Refine price-tabs styling
 */

/* ─── Grey dot bullets: override green checkmark icon ─── */
html body #bc-content-wrapper .bc-description li::before {
    font-family: inherit !important;
    content: "" !important;
    background: #999 !important;
    color: transparent !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    margin-right: 12px !important;
    padding: 0 !important;
    vertical-align: middle !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

html body .details-service .bc-description li::before {
    font-family: inherit !important;
    content: "" !important;
    background: #999 !important;
    color: transparent !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    margin-right: 12px !important;
    padding: 0 !important;
    vertical-align: middle !important;
    font-size: 0 !important;
}

/* ─── Neutralize bullet for nav-tabs li (Price Table tabs) ─── */
html body #bc-content-wrapper .bc-description .nav-tabs li::before,
html body #bc-content-wrapper .bc-description .nav-tabs .nav-item::before,
html body #bc-content-wrapper .bc-price-tabs .nav-tabs li::before,
html body #bc-content-wrapper .bc-price-tabs .nav-tabs .nav-item::before,
html body .bc-price-tabs .nav li::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
}

/* ─── Price-tabs tab styling refinement ─── */
html body .bc-price-tabs .nav-tabs {
    border-bottom: 2px solid #eee;
}

html body .bc-price-tabs .nav-tabs .nav-link {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border: none !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px;
    background: transparent !important;
}

html body .bc-price-tabs .nav-tabs .nav-link:hover {
    color: #333;
    border-bottom-color: #ccc !important;
}

html body .bc-price-tabs .nav-tabs .nav-link.active {
    color: #b50000;
    border-bottom-color: #b50000 !important;
    background: transparent !important;
    font-weight: 600;
}

html body .bc-price-tabs .tab-content {
    padding-top: 16px;
}

/* Grey dot inside price-tabs content too */
html body .bc-price-tabs .tab-pane li::before {
    font-family: inherit !important;
    content: "" !important;
    background: #999 !important;
    color: transparent !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    margin-right: 12px !important;
    padding: 0 !important;
    vertical-align: middle !important;
    font-size: 0 !important;
}

html body .bc-price-tabs .tab-pane ul {
    list-style: none;
    padding-left: 0;
}
