/**
 * 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;
}

/* ─── Mobile safety-net: Event / Dining / Ferry detail consistency ─── */
@media (max-width: 991px) {
    /* Event: keep top banner image visible, hide overlay title to avoid duplicate H1 */
    html body .bc-single-event .banner-img {
        display: block !important;
        width: 100% !important;
        height: 200px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    html body .bc-single-event .banner.bc-bg-feature {
        background: none !important;
        background-image: none !important;
        min-height: 0 !important;
        padding: 0 !important;
    }

    html body .bc-single-event .bc-banner-search-form {
        display: none !important;
    }

    /* Ensure sub-header row is hidden on mobile */
    html body .bc-single-event .bc-service-header2,
    html body .bc-single-dining .bc-service-header2,
    html body .bc-single-boat .bc-service-header2 {
        display: none !important;
    }

    /* Ensure breadcrumb is hidden on mobile */
    html body .bc-single-event .bc-breadcrumb,
    html body .bc-single-dining .bc-breadcrumb,
    html body .bc-single-boat .bc-breadcrumb {
        display: none !important;
    }

    /* Restore vertical spacing between detail sections */
    html body .bc-single-event .details-service .bc-description,
    html body .bc-single-dining .details-service .bc-description,
    html body .bc-single-boat .details-service .bc-description,
    html body .bc-single-event .details-service .bc-section-single,
    html body .bc-single-dining .details-service .bc-section-single,
    html body .bc-single-boat .details-service .bc-section-single {
        margin-bottom: 24px !important;
    }

    html body .bc-single-event .details-service .bc-hr,
    html body .bc-single-dining .details-service .bc-hr,
    html body .bc-single-boat .details-service .bc-hr {
        margin: 24px 0 !important;
    }

    /* Keep content column side gutters aligned with mobile baseline */
    html body .bc-single-event .details-service,
    html body .bc-single-dining .details-service,
    html body .bc-single-boat .details-service {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
