.fresha-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
}

.fresha-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}

.fresha-rating {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FFC107;
    font-size: 16px;
}

.rating-number {
    color: #6b6b6b;
}

.fresha-tags {
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    margin-right: 6px;
}

.tag.purple {
    background: #f2e8ff;
    color: #7b4bc7;
}

.tag.green {
    background: #dff8e9;
    color: #3a9158;
}

.fresha-book-btn {
    width: 100%;
    padding: 14px;
    background: #000;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    cursor: pointer;
}

.fresha-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.fresha-row i {
    font-size: 20px;
    color: #555;
}

.open-status {
    color: #008000;
    font-weight: 600;
}

.address {
    line-height: 1.4;
}

.directions {
    color: #5a3df5;
    font-weight: 600;
    text-decoration: none;
}
.fresha-whatsapp-btn {

    text-align: center;
    background: #25D366;
    color: #fff !important;

    text-decoration: none;
    transition: 0.2s ease-in-out;
    
    width: 100%;
    padding: 14px;

    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    cursor: pointer;
}

.fresha-whatsapp-btn i {
    font-size: 18px;
    margin-right: 8px;
}

.fresha-whatsapp-btn:hover {
    background: #1ebe5c;
}
/* Container for buttons */
.fresha-btn-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-direction: column; /* default: stacked on mobile */
}

/* Buttons take full width on mobile */
.fresha-btn-group .fresha-book-btn,
.fresha-btn-group .fresha-whatsapp-btn {
    flex: 1;
}

/* Large screens: horizontal layout */
@media (min-width: 768px) {
    .fresha-btn-group {
        flex-direction: row;   /* side-by-side buttons */
    }
}
/* ---------------------- */
/*     GLOBAL TYPOGRAPHY  */
/* ---------------------- */
.services-title,
.profile-sub-heading {
    font-size: 28px !important;
    font-weight: 700;
    margin-bottom: 18px;
}

/* ---------------------- */
/*    TABS SLIDER STYLES  */
/* ---------------------- */
.tab-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nav-pills::-webkit-scrollbar {
    display: none;
}

/* Tab button */
.tab-btn {
    padding: 8px 20px;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    margin-right: 10px;
    font-weight: 500;
    white-space: nowrap;
}

.tab-btn.active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Arrows */
.tab-arrow {
    border: none;
    background: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.2s ease;
}
.tab-arrow:hover {
    background: #f2f2f2;
}

/* ---------------------- */
/*     SERVICE CARD       */
/* ---------------------- */
.service-card {
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 22px 25px;
    background: #fff;
    margin-bottom: 15px;
    transition: 0.2s ease;
}

.service-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

/* Title */
.service-title {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
}

/* Book button */
.book-btn {
    padding: 8px 22px;
    border-radius: 25px;
    border: 1px solid #111;
    background: #fff;
    color:#111;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
    white-space: nowrap;
}
.book-btn:hover {
    background: #111;
    color: #fff;
}

/* ---------------------- */
/*     RESPONSIVE CSS     */
/* ---------------------- */
@media (max-width: 992px) {
    .service-card {
        padding: 18px 20px;
    }
    .service-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* Tabs shrink spacing */
    .tab-btn {
        font-size: 14px;
        padding: 7px 16px;
        margin-right: 8px;
    }

    .tab-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .service-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .book-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .profile-sub-heading {
        font-size: 22px !important;
    }
    .service-title {
        font-size: 15px;
    }
    .book-btn {
        font-size: 13px;
        padding: 7px 20px;
    }
}
/* Section heading */
.profile-sub-heading {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Search bar */
.team-search-wrapper {
    position: relative;
    width: 100%;
}

.team-search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
}

.team-search-input:focus {
    border-color: #007bff;
    outline: none;
}

.team-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

/* Doctor Card */
.doctor-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.25s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Doctor Image */
/* Doctor Image */
.doctor-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f8fa;
    padding: 8px;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;   /* prevent cropping */
    object-position: center center;   /* center the face */
}


/* Doctor Info */
.doctor-info {
    padding: 14px 18px;
    text-align: center;
}


.team-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.verified {
    color: #2b8eff;
    font-size: 15px;
    margin-left: 3px;
}

.doctor-speciality {
    display: inline-block;
    margin-top: 6px;
    padding: 5px 10px;
    background: #e9f3ff;           /* light blue */
    color: #0066cc;                /* blue text */
    font-weight: 600;
    border-radius: 50px;           /* pill style */
    font-size: 13px;
}


/* Responsive Improvements */
@media (max-width: 576px) {
    .doctor-img {
        height: 180px;
    }
    .doctor-name {
        font-size: 16px;
    }
}
