/* =========================================================
   BREADCRUMB
========================================================= */

.details-breadcrumb {
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #eaecf0;
}

.details-breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;

    font-size: 13px;
}

.details-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #667085;
}

.details-breadcrumb li:not(:last-child)::after {
    content: "/";
    color: #98a2b3;
}

.details-breadcrumb a {
    color: #667085;
    text-decoration: none;
}

.details-breadcrumb a:hover {
    color: #2E7D32;
}

.details-breadcrumb li:last-child {
    color: #344054;
    font-weight: 500;
}


/* =========================================================
   BUSINESS HERO
========================================================= */

.business-hero {
    background: #fff;
    padding-bottom: 30px;
}

.business-cover {
    position: relative;

    width: 100%;
    height: 320px;

    overflow: hidden;

    background: #eaecf0;

    border-radius: 0 0 18px 18px;
}

.business-cover img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   OPEN STATUS
========================================================= */

.business-status {
    position: absolute;

    top: 18px;
    right: 18px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 13px;

    border-radius: 30px;

    background: #fff;

    box-shadow: 0 5px 20px rgba(16, 24, 40, .12);

    font-size: 12px;
    font-weight: 600;
}

.business-status.open {
    color: #027a48;
}

.business-status.open i {
    color: #12b76a;
    font-size: 7px;
}


/* =========================================================
   BUSINESS HEADER
========================================================= */

.business-header {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 22px;

    margin-top: -45px;
    padding: 0 20px;

    z-index: 2;
}

.business-logo {
    width: 105px;
    height: 105px;

    flex: 0 0 105px;

    padding: 5px;

    background: #fff;

    border: 1px solid #eaecf0;

    border-radius: 17px;

    box-shadow: 0 8px 25px rgba(16, 24, 40, .12);
}

.business-logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 12px;
}

.business-main-info {
    min-width: 0;

    padding-top: 47px;
}

.business-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;
}

.business-title-row h1 {
    margin: 0;

    color: #2E7D32;

    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 5px 9px;

    background: #eef4ff;

    border-radius: 20px;

    color: #2D313C;

    font-size: 11px;
    font-weight: 600;
}

.business-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 16px;

    margin-top: 10px;
}

.business-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #667085;

    font-size: 13px;
}

.business-meta i {
    color: #2E7D32;
}

.business-short-description {
    max-width: 700px;

    margin: 10px 0 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   ACTION BUTTONS
========================================================= */

.business-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 22px;

    padding-left: 147px;
}

.business-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 42px;

    padding: 0 16px;

    background: #fff;

    

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: all .2s ease;
}

.business-action:hover {
    border-color: #2E7D32;

    background: #f8faff;

    color: #2E7D32;
}

.business-action.call {
    background: #2E7D32;
    border-color: #2E7D32;

    color: #fff;
}

.business-action.call:hover {
    background: #2E7D32;
    border-color: #2E7D32;

    color: #fff;
}

.business-action.whatsapp {
    color: #087443;
}

.business-action.whatsapp:hover {
    border-color: #12b76a;
    background: #f2fdf7;

    color: #087443;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.details-content {
    padding: 35px 0 70px;

    background: #f7f9fc;
}

.details-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 25px;

    align-items: start;
}

.details-main {
    min-width: 0;
}


/* =========================================================
   GALLERY
========================================================= */

.business-gallery {
    padding: 15px;

    background: #fff;

    border: 1px solid #eaecf0;
    border-radius: 15px;

    box-shadow: 0 3px 15px rgba(16, 24, 40, .03);
}

.gallery-main {
    width: 100%;
    height: 400px;

    overflow: hidden;

    background: #f2f4f7;

    border-radius: 11px;
}

.gallery-main img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.gallery-thumbnails {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 8px;

    margin-top: 9px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 70px;

    display: block;

    object-fit: cover;

    border-radius: 8px;
}


/* =========================================================
   TABS
========================================================= */

.business-tabs {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-top: 18px;

    padding: 5px;

    overflow-x: auto;

    background: #fff;

    border: 1px solid #eaecf0;
    border-radius: 11px;
}

.business-tab {
    flex: 0 0 auto;

    padding: 10px 18px;

    border: 0;
    border-radius: 7px;

    background: transparent;

    color: #667085;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition: all .2s ease;
}

.business-tab:hover {
    color: #2E7D32;
}

.business-tab.active {
    background: #2E7D32;

    color: #fff;
}

.business-tab-content {
    display: none;

    margin-top: 18px;
}

.business-tab-content.active {
    display: block;
}


/* =========================================================
   DETAIL CARD
========================================================= */

.detail-card {
    margin-bottom: 18px;
    padding: 23px;

    background: #fff;

    border: 1px solid #eaecf0;
    border-radius: 15px;

    box-shadow: 0 3px 15px rgba(16, 24, 40, .03);
}

.card-title {
    display: flex;
    align-items: center;

    margin-bottom: 17px;
}

.card-title h2,
.card-title h3 {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0;

    color: #2E7D32;

    font-size: 18px;
    font-weight: 700;
}

.card-title i {
    color: #2E7D32;
    font-size: 16px;
}

.detail-card > p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   SERVICES
========================================================= */

.service-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;
}

.service-tags span {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    background: #eef4ff;

    border-radius: 7px;

    color: #2E7D32;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   INFORMATION GRID
========================================================= */

.information-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.information-item {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 13px;

    border: 1px solid #eaecf0;

    border-radius: 9px;
}

.information-item > i {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ff;

    border-radius: 8px;

    color: #2E7D32;
}

.information-item div {
    min-width: 0;
}

.information-item small {
    display: block;

    margin-bottom: 3px;

    color: #98a2b3;

    font-size: 10px;
}

.information-item strong {
    display: block;

    color: #344054;

    font-size: 12px;

    word-break: break-word;
}


/* =========================================================
   PHOTOS
========================================================= */

.photo-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}

.photo-grid img {
    width: 100%;
    height: 180px;

    display: block;

    object-fit: cover;

    border-radius: 9px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.details-sidebar {
    display: flex;
    flex-direction: column;

    gap: 15px;

    position: sticky;
    top: 20px;
}

.sidebar-card {
    padding: 20px;

    background: #fff;

    border: 1px solid #eaecf0;
    border-radius: 14px;

    box-shadow: 0 3px 15px rgba(16, 24, 40, .03);
}

.sidebar-card h3 {
    display: flex;
    align-items: center;

    gap: 8px;

    margin: 0 0 15px;

    color: #2E7D32;

    font-size: 15px;
    font-weight: 700;
}

.sidebar-card h3 i {
    color: #2E7D32;
}


/* =========================================================
   SIDEBAR CONTACT
========================================================= */

.sidebar-contact {
    display: flex;
    align-items: center;

    gap: 11px;

    padding: 11px 0;

    border-bottom: 1px solid #f2f4f7;

    color: inherit;

    text-decoration: none;
}

.sidebar-contact:last-child {
    border-bottom: 0;
}

.sidebar-contact > i {
    width: 37px;
    height: 37px;

    flex: 0 0 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eef4ff;

    border-radius: 8px;

    color: #2E7D32;
}

.sidebar-contact div {
    min-width: 0;
}

.sidebar-contact small {
    display: block;

    margin-bottom: 2px;

    color: #98a2b3;

    font-size: 10px;
}

.sidebar-contact strong {
    display: block;

    color: #344054;

    font-size: 12px;

    overflow-wrap: anywhere;
}

.sidebar-contact:hover strong {
    color: #2E7D32;
}


/* =========================================================
   ADDRESS
========================================================= */

.sidebar-card p {
    margin: 0;

    color: #667085;

    font-size: 12px;

    line-height: 1.7;
}

.map-link {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    margin-top: 12px;

    color: #2E7D32;

    font-size: 11px;
    font-weight: 600;

    text-decoration: none;
}

.map-link:hover {
    text-decoration: underline;
}


/* =========================================================
   BUSINESS INFORMATION SIDEBAR
========================================================= */

.opening-hours {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.opening-hours div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    color: #667085;

    font-size: 11px;
}

.opening-hours strong {
    color: #344054;

    font-size: 11px;

    text-align: right;
}


/* =========================================================
   SHARE
========================================================= */

.share-icons {
    display: flex;
    align-items: center;

    gap: 8px;
}

.share-icons a {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #eaecf0;

    border-radius: 8px;

    color: #667085;

    text-decoration: none;

    transition: all .2s ease;
}

.share-icons a:hover {
    background: #eef4ff;

    border-color: #2E7D32;

    color: #2E7D32;
}


/* =========================================================
   MAP
========================================================= */

.map-box {
    width: 100%;
    height: 400px;

    overflow: hidden;

    background: #eaecf0;

    border-radius: 11px;
}

.map-box iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 22px;
}

.section-header h2 {
    margin: 0;

    color: #2E7D32;

    font-size: 25px;
}

.section-header p {
    margin: 5px 0 0;

    color: #667085;

    font-size: 12px;
}


/* =========================================================
   SIMILAR BUSINESSES
========================================================= */

.similar-business-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.listing-card {
    overflow: hidden;

    background: #fff;

    border: 1px solid #eaecf0;

    border-radius: 14px;

    box-shadow: 0 3px 15px rgba(16, 24, 40, .04);

    transition: all .2s ease;
}

.listing-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(16, 24, 40, .08);
}

.listing-card > img {
    width: 100%;
    height: 180px;

    display: block;

    object-fit: cover;
}

.listing-content {
    padding: 17px;
}

.listing-content h4 {
    margin: 0 0 9px;

    color: #101828;

    font-size: 16px;
}

.listing-meta {
    margin-bottom: 9px;

    font-size: 11px;
}

.listing-meta span {
    color: #2E7D32;
    font-weight: 600;
}

.listing-card .location {
    display: flex;
    align-items: center;

    gap: 6px;

    margin-bottom: 13px;

    color: #667085;

    font-size: 11px;
}

.listing-card .location i {
    color: #2E7D32;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    padding: 11px 18px;

    border: 0;
    border-radius: 8px;

    background: #2E7D32;
    color: #fff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
    white-space: nowrap;

    transition: .2s ease;
}

.details-btn:hover {
    background: #256b29;
    color: #fff;
    transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .details-layout {
        grid-template-columns: 1fr;
    }

    .details-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .business-actions {
        padding-left: 0;
    }

    .similar-business-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .details-breadcrumb .container,
    .business-hero .container,
    .details-content .container {
        width: calc(100% - 24px);
    }


    /* Hero */

    .business-cover {
        height: 220px;

        border-radius: 0 0 12px 12px;
    }

    .business-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;

        margin-top: -35px;

        padding: 0 8px;
    }

    .business-logo {
        width: 82px;
        height: 82px;

        flex-basis: 82px;

        border-radius: 13px;
    }

    .business-main-info {
        width: 100%;

        padding-top: 0;
    }

    .business-title-row h1 {
        font-size: 24px;
    }

    .business-meta {
        gap: 8px 14px;

        font-size: 12px;
    }

    .business-short-description {
        font-size: 12px;
    }


    /* Actions */

    .business-actions {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 7px;

        padding-left: 8px;
        padding-right: 8px;
    }

    .business-action {
        min-height: 40px;

        padding: 0 8px;

        font-size: 11px;
    }


    /* Main */

    .details-content {
        padding: 25px 0 45px;
    }


    /* Gallery */

    .business-gallery {
        padding: 10px;

        border-radius: 11px;
    }

    .gallery-main {
        height: 250px;
    }

    .gallery-thumbnails {
        gap: 5px;
    }

    .gallery-thumbnails img {
        height: 52px;

        border-radius: 6px;
    }


    /* Tabs */

    .business-tabs {
        margin-top: 12px;

        border-radius: 9px;
    }

    .business-tab {
        padding: 9px 13px;

        font-size: 11px;
    }


    /* Cards */

    .detail-card {
        padding: 17px;

        border-radius: 11px;
    }

    .card-title h2,
    .card-title h3 {
        font-size: 16px;
    }


    /* Information */

    .information-grid {
        grid-template-columns: 1fr;
    }


    /* Photos */

    .photo-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 7px;
    }

    .photo-grid img {
        height: 135px;
    }


    /* Sidebar */

    .details-sidebar {
        display: flex;
        flex-direction: column;

        gap: 12px;
    }


    /* Map */

    .map-box {
        height: 300px;
    }


    /* Similar */

    .similar-business-grid {
        grid-template-columns: 1fr;

        gap: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .business-title-row h1 {
        font-size: 22px;
    }

    .business-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 6px;
    }

    .business-actions {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .gallery-main {
        height: 210px;
    }

    .gallery-thumbnails img {
        height: 45px;
    }

    .map-box {
        height: 260px;
    }

}