

/* ===========================================
   SECTION TITLE
=========================================== */

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
}

 
/* ===========================================
   SEARCH BAR
=========================================== */

#searchPharmacy {
    min-width: 280px;
}

#showPerPage {
    width: 120px;
}




.brand-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    height: 100%;

}

.brand-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(255, 79, 129, .20);

}

.brand-logo {

    width: 110px;

    height: 110px;

    margin: auto;

    border-radius: 50%;

    background: #fff4f7;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

}

.brand-logo img {

    width: 80px;

    height: 80px;

    object-fit: contain;

}

.brand-logo i {

    font-size: 48px;

    color: #ff4f81;

}

.brand-card h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.brand-card p {

    color: #666;

    min-height: 70px;

}




.brand-stats {

    display: flex;

    justify-content: space-between;
    
    gap: 10px;

    font-size: 14px;

    font-weight: 600;

    color: #555;

}


.brand-stats div {

    flex: 1;

    text-align: center;

    background: #fff5f7;

    padding: 12px;

    border-radius: 12px;

    font-size: 14px;

    font-weight: 600;

}



.brand-stats i {

    color: #ff4f81;

    margin-right: 5px;

}

@media(max-width:768px) {

    .page-banner {

        text-align: center;

    }

    .brand-stats {

        flex-direction: column;

        gap: 10px;

    }

}