/* ----------------------------------------------------------------
   GLOBAL RESET for this page
   ---------------------------------------------------------------- */


/* Override global style.css heading colours inside the profile */
/*#view-profile h1,
#view-profile h2,
#view-profile h3,
#view-profile h4,
#view-profile h5,
#view-profile h6 {
    color: var(--dentel-dark);
    margin-top: 0;
}*/

/* ---- utility gap helper (BS4 doesn't have gap) ---- */
.gap-2 { gap: .5rem; }
.gap-3 { gap: 1rem; }

/* ---- max-width container ---- */
.mw-1600 { max-width: 1600px; margin-left: auto; margin-right: auto; }

/* ----------------------------------------------------------------
   COLOUR HELPERS
   ---------------------------------------------------------------- */
.text-dentel-primary { color: var(--dentel-primary) !important; }
.text-dentel-accent  { color: var(--dentel-accent)  !important; }

/* ----------------------------------------------------------------
   SITE HEADER
   ---------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    border-bottom: 1px solid var(--dentel-border);
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    height: var(--header-h);
}

.site-logo-text {
    font-family: var(--font-base);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dentel-primary);
}


#booking-widget {
    position: sticky;
}

.review-hidden {
    display: none;
}


/* ----------------------------------------------------------------
   BACK BAR
   ---------------------------------------------------------------- */
.prof-back-bar {
    position: sticky;
    top: var(--header-h);
    z-index: 1040;
    background: #fff;
    border-bottom: 1px solid var(--dentel-border);
    height: 54px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.prof-back-link {
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: opacity .2s;
}

/* ----------------------------------------------------------------
   PROFILE HEADER LAYOUT
   ---------------------------------------------------------------- */
.prof-header-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prof-avatar-col {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-shrink: 0;
}

.prof-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--dentel-border);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    flex-shrink: 0;
    cursor: pointer;
    transition: opacity .2s;
}
.prof-avatar:hover { opacity: .9; }

	.prof-header-row {
		flex-wrap: wrap;
	}

@media (min-width: 768px) {
	
	
	.prof-header-row {
		flex-wrap: nowrap;
	}
	
    .prof-avatar {
        width: 160px;
        height: 160px;
    }
    .prof-avatar-col {
        flex-direction: column;
        align-items: flex-start;
    }
}

.prof-meta-col {
    flex-grow: 1;
    min-width: 0;
}

/* name (desktop) */
.prof-name {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

/* name (mobile) */
.prof-name-mob {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: .25rem 0 .25rem;
}

/* "Accepting new patients" line */
.prof-new-patients {
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* Financing badge */
.prof-fin-badge {
    font-size: .875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.prof-fin-badge-mob {
    font-size: .75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .3rem;
}

/* ---- Trust badges row ---- */
.prof-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.prof-badge {
    display: inline-flex;
    align-items: center;
    padding: .3rem .6rem;
    border-radius: .4rem;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
}

.prof-badge-family {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.prof-badge-plain {
    background: #fff;
    border-color: var(--dentel-border);
    color: var(--dentel-slate);
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

@media (min-width: 768px) {
    .prof-badge-plain {
        background: transparent;
        border-color: transparent;
        box-shadow: none;
    }
}

/* ---- Address / specialty lines ---- */
.prof-meta-line {
    /* font-size: .9rem; */
    font-weight: 500;

/*     display: flex;
    align-items: flex-start; */
    gap: .5rem;
    margin: 0 0 .4rem;
    line-height: 1.4;
}

.prof-meta-icon {
    color: #94a3b8;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: .15rem;
}

/* ---- Action buttons ---- */
.prof-action-row { margin-bottom: 1rem; }

.btn-action-outline {
    border: 1px solid var(--dentel-border);
    background: #fff;
    color: var(--dentel-slate);
    font-weight: 600;
    font-size: .8rem;
    padding: .55rem .5rem;
    border-radius: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    transition: background .2s, border-color .2s;
}
.btn-action-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: var(--dentel-slate);
}

/* ---- Rating row ---- */
.prof-rating-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
}

.prof-rating-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dentel-dark);
    line-height: 1;
}

.prof-stars {
    color: #facc15;
    display: flex;
    gap: 1px;
    font-size: 1rem;
}
.prof-stars.small { font-size: .8rem; }

.prof-rating-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--dentel-muted) !important;
    text-decoration: underline !important;
}

/* ----------------------------------------------------------------
   AI SUMMARY SNIPPET
   ---------------------------------------------------------------- */
.ai-summary-snippet {
    background: #e0fbfc;
    border: 1.5px solid var(--dentel-accent);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0,213,221,.1);
    position: relative;
}

.ai-summary-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.ai-summary-label {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0e7490;
}

.ai-summary-beta {
    font-size: .65rem;
    font-weight: 700;
    background: #ccfbf1;
    color: #0f766e;
    padding: .1rem .4rem;
    border-radius: .25rem;
}

.ai-summary-text {
    font-size: .875rem;
    color: #334155;
    line-height: 1.6;
    font-style: italic;
}

.ai-summary-close {
    position: absolute;
    top: .5rem;
    right: .75rem;
    background: none;
    border: none;
    font-size: 1.3rem;
    line-height: 1;
    color: #94a3b8;
    cursor: pointer;
    padding: 0;
}
.ai-summary-close:hover { color: var(--dentel-dark); }

/* ----------------------------------------------------------------
   EMERGENCY BANNER
   ---------------------------------------------------------------- */
.emergency-banner {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border: 1.5px solid #fca5a5;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
}

.emergency-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-title {
    font-size: .875rem;
    font-weight: 700;
    color: #b91c1c;
}

.emergency-sub {
    font-size: .75rem;
    color: #ef4444;
    margin-top: .15rem;
}

.btn-emergency {
    background: #ef4444;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .5rem .9rem;
    border-radius: .5rem;
    border: none;
    white-space: nowrap;
    transition: opacity .2s;
    text-decoration: none !important;
}
.btn-emergency:hover { opacity: .88; color: #fff; }

/* ----------------------------------------------------------------
   SECTION NAV (tabs)
   ---------------------------------------------------------------- */
.prof-section-nav {
    background: #fff;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    z-index: 1030;
    padding-top: .4rem;
	border-bottom: 1px solid #e2e8f0;
    /* scrollable on mobile */
}
.prof-section-nav::-webkit-scrollbar { display: none; }

.prof-section-nav.is-sticky {
    position: sticky;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.prof-section-nav-inner {
    display: inline-flex;
    align-items: center;
}

.prof-tab {
    display: inline-block;
    padding: .65rem 1.1rem;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #64748b !important;
    text-decoration: none !important;
    border-bottom: 0;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
}
.prof-tab:hover { color: var(--color-slate-600) !important; }
.prof-tab.active {
    color: var(--color-primary) !important;
}

/* ----------------------------------------------------------------
   SECTION WRAPPERS
   ---------------------------------------------------------------- */
.prof-sections { margin-top: 2rem; }

.prof-section {
    padding-bottom: 3rem;
    margin-bottom: .5rem;
    /* scroll offset: header + backbar + nav */
    scroll-margin-top: calc(var(--header-h) + 54px + 50px + 8px);
}
.prof-section:last-child { border-bottom: none; }

/* Section headings */
.section-heading {
    font-size: 1.15rem;
    font-weight: 700;

    border-bottom: 1px solid #f1f5f9;
    padding-bottom: .5rem;
    margin: 0 0 1rem;
}

/* Sub headings inside sections */
.sub-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 .5rem;
}

.sub-heading i {
    color: #03e1ea !important;
}


/* Small pill tags */
.badge-pill-light {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: .35rem;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

/* About text */
.about-text {
    font-size: .95rem;
    line-height: 1.65;
    color: var(--dentel-muted);
    margin-bottom: 1.25rem;
}


/* Featured Review Card */
.featured-review-card {
    background-color: #f8f7ff;
    border: 1px solid #ddd6fe;
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
}

.featured-review-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 110px;
    border-right: 1.5px solid var(--color-border);
}

.featured-review-score {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    line-height: 1;
    margin-bottom: var(--sp-2);
}

.featured-review-text {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--sp-2);
}

/* Mobile */
@media (max-width: 576px) {
    .featured-review-rating {
        flex-direction: row;
        align-items: center;
        min-width: unset;
        border-right: none;
        border-bottom: 1.5px solid var(--color-border);
        padding-right: 0;
        margin-right: 0 !important;
        padding-bottom: var(--sp-4);
        margin-bottom: var(--sp-4) !important;
        gap: var(--sp-4);
        width: 100%;
    }

    .featured-review-score {
        font-size: 2.5rem;
        margin-bottom: 0;
    }
}

/* ----------------------------------------------------------------
   SPECIAL OFFERS
   ---------------------------------------------------------------- */
.offer-card {
    background: #fff;
    border: 1px solid var(--dentel-border);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

@media (min-width: 992px) {
    .offer-card { flex-direction: row; }
}

.offer-img-wrap {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
}
@media (min-width: 992px) {
    .offer-img-wrap {
        width: 42%;
        height: auto;
    }
}

.offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.offer-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dentel-dark);
    margin: 0;
	max-width: 75%
}

.offer-tag {
    display: inline-block;
    background: #e0e7ff;
    color: var(--dentel-primary);
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: .35rem;
    border: 1px solid #c7d2fe;
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
    margin-top: .25rem;
}

.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: .75rem;
}

.offer-original {
    font-size: 1.4rem;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: line-through;
}

.offer-discounted {
    font-size: 2.2rem;
    font-weight: 800;
    color: #16a34a;
}

.offer-btn {
    font-size: 1rem;
    padding: .8rem;
}

/* ----------------------------------------------------------------
   OFFICE HOURS CARD
   ---------------------------------------------------------------- */
.hours-card {
    background: #f8fafc;
    border: 1px solid var(--dentel-border);
    border-radius: .75rem;
    padding: 1.25rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: .9rem;
    font-weight: 500;
    color: var(--dentel-muted);
    padding: .35rem 0;
    border-bottom: 1px solid #f1f5f9;
    line-height: 1.3;
    margin: 0;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.closed { color: #94a3b8; }

.available-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    font-weight: 700;
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: .3rem .65rem;
    border-radius: .4rem;
}

.map-embed {
    border-radius: .5rem;
    overflow: hidden;
    border: 1px solid var(--dentel-border);
    height: 140px;
}
.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ----------------------------------------------------------------
   VIDEO WRAPPER
   ---------------------------------------------------------------- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: .75rem;
    background: #f1f5f9;
    border: 1px solid var(--dentel-border);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* ----------------------------------------------------------------
   PROVIDERS
   ---------------------------------------------------------------- */
.provider-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: .65rem;
    padding: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    height: 100%;
}

.provider-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--dentel-border);
    flex-shrink: 0;
}

.provider-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--dentel-dark);
    margin: 0 0 .15rem;
}

.provider-specialty {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--dentel-muted);
    margin: 0 0 .4rem;
}

.provider-bio {
    font-size: .85rem;
    color: var(--dentel-muted);
    line-height: 1.45;
    margin: 0;
}

/* ----------------------------------------------------------------
   GALLERY  (Slick Slider)
   ---------------------------------------------------------------- */
.gallery-slider {
    margin: 0 -8px;   /* compensate for slide padding */
}

.gallery-slide {
    padding: 0 8px;
}

.gallery-slide a {
    display: block;
    border-radius: .5rem;
    overflow: hidden;
    border: 1px solid var(--dentel-border);
    box-shadow: 0 2px 6px rgba(0,0,0,.07);
}

.gallery-slide img {
    width: 100%;
    height: 192px;
    object-fit: cover;
    display: block;
    transition: opacity .2s;
}
.gallery-slide a:hover img { opacity: .88; }

/* Slick arrows */
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
    z-index: 10;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
    border: 1px solid var(--dentel-border);
    top: 50%;
    transform: translateY(-50%);
}
.gallery-slider .slick-prev { left: -12px; }
.gallery-slider .slick-next { right: -12px; }
.gallery-slider .slick-prev::before,
.gallery-slider .slick-next::before {
    color: var(--dentel-primary);
    font-size: 16px;
    line-height: 36px;
}

/* ----------------------------------------------------------------
   SERVICES
   ---------------------------------------------------------------- */
.services-list { }

.service-tag {
    display: inline-block;
    background: #f1f5f9;
    border: 1px solid var(--dentel-border);
    color: var(--dentel-slate);
    font-size: .85rem;
    font-weight: 500;
    padding: .35rem .75rem;
    border-radius: .35rem;
}


/* Services */
#services-visible.is-collapsed .service-tag.is-hidden {
    display: none;
}

.services-toggle {
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    padding: 0;
    margin-top: var(--sp-3);
}
.services-toggle i {
    transition: var(--transition-base);
}
.services-toggle.is-open i {
    transform: rotate(180deg);
}


.btn-show-more {
    background: none;
    border: none;
    color: var(--dentel-primary);
    font-size: .875rem;
    font-weight: 700;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .3rem;
}
.btn-show-more:hover { text-decoration: underline; }

/* ----------------------------------------------------------------
   INSURANCE
   ---------------------------------------------------------------- */
.insurance-item {
    font-size: .875rem;
    color: var(--dentel-muted);
    display: flex;
    align-items: center;
}

.badge-finance img,
.badge-insurance img{
	max-width: 28px;
	object-fit: contain;
}

/* ----------------------------------------------------------------
   FINANCING
   ---------------------------------------------------------------- */
.lender-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: #fff;
    border: 1px solid var(--dentel-border);
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    font-size: .875rem;
    font-weight: 600;
    color: var(--dentel-slate);
}

.lender-badge img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.financing-info-box {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    font-size: .875rem;
    color: #3730a3;
    line-height: 1.55;
}

/* ----------------------------------------------------------------
   FAQs
   ---------------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 1.1rem 1.25rem;
}

.faq-item h4 {
    font-size: .95rem;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin: 0 0 .5rem;
}

.faq-item p {
    font-size: .875rem;
    color: #475569;
    margin: 0 0 0 1.6rem;
    line-height: 1.55;
}
.faq-item i {
	color: #00d5dd!important
}

/* ----------------------------------------------------------------
   REVIEWS
   ---------------------------------------------------------------- */
.review-summary-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8fafc;
    border: 1px solid var(--dentel-border);
    border-radius: .75rem;
    padding: 1.25rem 1.5rem;
}

.review-big-score {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.review-action-link {
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none !important;
}
.review-action-link:hover { text-decoration: underline !important; }

.review-list { display: flex; flex-direction: column; }

.review-item {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
}
.review-item:last-child { border-bottom: none; }

.review-author {
    font-weight: 700;
    font-size: .95rem;
}

.review-date {
    font-size: .75rem;
    color: #94a3b8;
}

.review-text {
    font-size: .95rem;
    line-height: 1.6;
    margin: 0;
}

.btn-load-more {
    border: 1px solid #333;
    background: transparent;
    font-weight: 700;
    font-size: .95rem;
    border-radius: .65rem;
    padding: .75rem;
    transition: background .2s;
}
.btn-load-more:hover { background: #f8fafc; }

/* ----------------------------------------------------------------
   BOOKING WIDGET (desktop sticky)
   ---------------------------------------------------------------- */
#booking-widget {
    position: sticky;
    /* top is set dynamically by JS */
    top: 180px;
}

.booking-widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 .4rem;
}

.booking-widget-sub {
    font-size: .875rem;
    color: #64748b;
    margin: 0 0 1rem;
}

/* Patient type toggle */
.patient-type-btn {
    border: 1px solid var(--dentel-border);
    background: transparent;
    color: var(--dentel-muted);
    font-weight: 600;
    font-size: .875rem;
    padding: .55rem;
    border-radius: .5rem;
    transition: all .2s;
}
.patient-type-btn.active {
    background: #e0e7ff;
    color: var(--dentel-primary);
    border-color: var(--dentel-primary);
    font-weight: 700;
}

/* See availability CTA * /
.btn-see-availability {
    background: var(--dentel-accent);
    color: var(--dentel-dark) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: .9rem;
    border-radius: .75rem;
    border: none;
    text-decoration: none !important;
    text-align: center;
    display: block;
    transition: opacity .2s;
    box-shadow: 0 4px 12px rgba(0,213,221,.25);
}
.btn-see-availability:hover { opacity: .88; color: var(--dentel-dark); } */

/* Financing widget box */
.financing-widget-box {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: .75rem;
    padding: 1rem;
}

.btn-financing-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: #fff;
    border: 1px solid var(--dentel-border);
    color: var(--dentel-dark);
    font-weight: 700;
    font-size: .875rem;
    padding: .55rem 1rem;
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.07);
    text-decoration: none !important;
    transition: background .2s;
}
.btn-financing-apply:hover { background: #f8fafc; color: var(--dentel-dark); }



/* Slick overrides */
.slick-prev:before, .slick-next:before {
    color: #000!important;
    font-family: 'FontAwesome'!important;
}

.slick-prev:before {
    content: '\f104'!important;
}
    
.slick-next:before {
    content: '\f105'!important;
}

@media screen and (max-width: 767px) {
    .slick-prev {left:-10px!important}
    .slick-next {right:-10px!important}
}
    
.slick-track {margin-left:0!important;}
    
.bna-images {
    padding:0 5px;
}
.bna-images img {
    object-fit: cover;
    width: 90%;
    height: 190px;
    max-height: 300px;
    
}


.patient-type-toggle {
    gap: var(--sp-2);
}

.patient-toggle-btn {
    padding: 10px var(--sp-4);
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    /* Unselected */
    border: 1.5px solid var(--color-border);
    background: transparent;
    color: var(--color-secondary-text);
}

.patient-toggle-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.patient-toggle-btn.active {
    border: 2px solid var(--color-primary);
    background: var(--purple-50);
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}


/* Financing Options Card */
.financing-card {
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-5);
    background: var(--white);
}

.financing-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.financing-card-title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-heading);
    font-family: var(--font-primary);
}

.financing-card-body {
    font-size: var(--font-size-sm);
    color: var(--color-secondary-text);
    margin-bottom: var(--sp-4);
    line-height: var(--line-height-normal);
}

/* Apply button — outline style matching screenshot */
.financing-apply-btn {
    background: var(--white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-xl);
    color: var(--color-heading) !important;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    padding: 11px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    text-decoration: none !important;
    transition: var(--transition-base);
}
.financing-apply-btn:hover {
    border-color: var(--color-border-dark);
    background: var(--color-surface);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* CareCredit logo in button */
.carecredit-logo {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}



/* ----------------------------------------------------------------
   GLOBAL BUTTON: dentel-primary
   ---------------------------------------------------------------- */
.btn-dentel-primary {
    background-color: var(--dentel-primary);
    color: #fff !important;
    font-weight: 700;
    border: none;
    border-radius: .75rem;
    transition: opacity .2s;
    text-decoration: none !important;
}
.btn-dentel-primary:hover { opacity: .88; color: #fff; }

/* ----------------------------------------------------------------
   MOBILE STICKY BOOKING BAR
   ---------------------------------------------------------------- */
.mobile-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1025;
    background: #fff;
    border-top: 1px solid var(--dentel-border);
    padding: .75rem 1rem;
    display: flex;
    gap: .75rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,.1);
}

/* Pad bottom of page on mobile so content isn't hidden behind bar */
@media (max-width: 767px) {
    #view-profile { padding-bottom: 80px; }
}

/* ----------------------------------------------------------------
   RESPONSIVE TWEAKS
   ---------------------------------------------------------------- */
@media (max-width: 767px) {
    .prof-name { font-size: 1.4rem; }

    .offer-original { font-size: 1.1rem; }
    .offer-discounted { font-size: 1.75rem; }

    .review-big-score { font-size: 2.5rem; }

    .lender-badge { font-size: .8rem; }
    .lender-badge img { height: 16px; }
}

@media (max-width: 480px) {
    .prof-avatar { width: 80px; height: 80px; }
    .prof-name-mob { font-size: 1.05rem; }
}