/*==================================================
PILLZA
Single Category Page 
==================================================*/

body {
    background: #f8f9fa;
    font-family: 'Poppins', sans-serif;
}


/*==================================
Category Hero
==================================*/

.category-hero {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.category-image {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    object-fit: cover;
}

.category-icon {
    width: 120px;
    height: 120px;
    background: #ffe8ef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ff4d7e;
}

.category-hero h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.category-hero p {
    color: #777;
    margin-bottom: 0;
}

/*==================================
Statistics
==================================*/

.stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card i {
    font-size: 42px;
    color: #ff4d7e;
    margin-bottom: 15px;
}

.stat-card h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ff4d7e;
}

.stat-card p {
    color: #777;
    margin: 0;
}

/*==================================
Search Area
==================================*/

.form-control,
.form-select {
    height: 52px;
    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: #ff4d7e;
    box-shadow: 0 0 0 .15rem rgba(255, 77, 126, .15);
}