/* ===========================
   GENERAL
=========================== */

body{
    font-family: "Poppins",sans-serif;
    background:#f5f7fb;
    color:#222;
}

.container{
    max-width:1400px;
}

/* ===========================
   COVER
=========================== */

.profile-cover{
    position:relative;
    height:360px;
    overflow:hidden;
}

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

.profile-cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
            rgba(0,0,0,.60),
            rgba(0,0,0,.15),
            transparent);
}

/* ===========================
   PROFILE INFO
=========================== */

.profile-info{

    position:absolute;
    left:0px;
    bottom:35px;

    display:flex;
    align-items:center;
    gap:25px;
    z-index:5;
}

.profile-avatar{

    width:140px;
    height:140px;
    border-radius:50%;
    border:6px solid white;
    object-fit:cover;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.profile-details h1{

    color:white;
    font-size:48px;
    font-weight:700;
    margin-bottom:10px;
}

.profile-details p{

    color:white;
    opacity:.9;
    margin:0;
}

/* ===========================
   FOLLOW BUTTON
=========================== */

.btn-follow{

    position:absolute;
    right:0px;
    bottom:43px;

    z-index:5;

    background:#e91e63;
    color:#fff;

    border:none;

    padding:14px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;
}

.btn-follow:hover{

    transform:translateY(-3px);

    background:#d2185b;

    box-shadow:0 15px 30px rgba(233,30,99,.35);
}

/* ===========================
   MENU
=========================== */

.profile-menu{

    background:#d81b60;

    padding:18px 0;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.profile-menu .nav{

    justify-content:center;
display: flex;
    gap:20px;
}

.profile-menu .nav-link{

    color:white;

    border-radius:35px;

    padding:12px 30px;

    transition:.3s;
}

.profile-menu .nav-link:hover{

    background:rgba(255,255,255,.2);
}

.profile-menu .active{

    /* background:white; */

    color:#d81b60!important;

    font-weight:600;
}

/* ===========================
   SECTION
=========================== */

.section-title{

    margin:50px 0 25px;

    font-size:42px;

    font-weight:700;
}

/* ===========================
   CARDS
=========================== */

.twiic-card{

    background:white;

    border-radius:22px;

    overflow:hidden;

    border:none;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.07);
	margin-bottom:20px;
}

.twiic-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.twiic-card img.twiic-img{

    width:100%;

    height:250px!important;

    object-fit:cover;

    transition:.5s;
}

.twiic-card:hover img{

    transform:scale(1.05);
}
.card-content{
	
	padding: 0px 20px;
}
.align-items-center {
    margin-bottom: 20px;
}
/* ===========================
   PRICE
=========================== */

.price{

    position:absolute;

    top:18px;

    right:18px;

    background:#e91e63;

    color:white;

    padding:8px 20px;

    border-radius:30px;

    font-size:17px;

    font-weight:700;
	line-height: 28px;
    box-shadow:0 8px 20px rgba(233,30,99,.35);
}

/* ===========================
   CONTENT
=========================== */

.card-body{

    padding:22px;
}

.card-title{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.card-user{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:20px;
}

.card-user img{

    width:40px;

    height:40px;

    border-radius:50%;
}

.card-user span{

    font-weight:600;
}

/* ===========================
   FOOTER
=========================== */

.card-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:none;

    background:white;

    padding:18px 22px;
}

.stats{

    display:flex;

    gap:20px;

    color:#666;
}

/* ===========================
   ICONS
=========================== */

.stats i{

    color:#e91e63;
}

/* ===========================
   HOVER
=========================== */

.twiic-card:hover .card-title{

    color:#e91e63;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

.profile-info{

left:25px;

bottom:20px;
}

.profile-avatar{

width:100px;

height:100px;
}

.profile-details h1{

font-size:32px;
}

.btn-follow{

right:20px;

bottom:25px;

padding:10px 25px;
}

.section-title{

font-size:30px;
}

}

@media(max-width:768px){

.profile-cover{

height:250px;
}

.profile-info{

flex-direction:column;

align-items:flex-start;

gap:15px;
}

.profile-avatar{

width:80px;

height:80px;
}

.profile-details h1{

font-size:26px;
}

.profile-menu .nav{

overflow:auto;

flex-wrap:nowrap;
}

.twiic-card img{

height:220px;
}

}

.nav>li {
    position: relative;
    display: inline-block;
}

.toolbar{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    margin-bottom:25px;
}

.toolbar-select{
    min-width:220px;
    height:48px;
    padding:0 18px;
    border:1px solid #e4e7ec;
    border-radius:14px;
    background:#fff;
    color:#444;
    font-size:15px;
    font-weight:500;
    outline:none;
    transition:.25s;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.toolbar-select:hover{
    border-color:#c8256e;
}

.toolbar-select:focus{
    border-color:#c8256e;
    box-shadow:0 0 0 4px rgba(200,37,110,.15);
}

.toolbar-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:#fff;
    color:#6c757d;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    transition:.25s;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.toolbar-btn:hover{
    background:#c8256e;
    color:#fff;
    transform:translateY(-2px);
}

.toolbar-btn.active{
    background:#c8256e;
    color:#fff;
    box-shadow:0 8px 20px rgba(200,37,110,.35);
}

/* ==========================
   PAGINATION
========================== */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:40px 0;
    padding:0;
    list-style:none;
}

.pagination .page-item{
    margin:0;
}

.pagination .page-item a{

    display:flex;
    justify-content:center;
    align-items:center;

    min-width:46px;
    height:46px;

    padding:0 18px;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    color:#555;

    background:#fff;

    border:1px solid #ececec;

    transition:.25s ease;

    box-shadow:0 4px 12px rgba(0,0,0,.05);

}

.pagination .page-item a:hover{

    background:#c8256e;

    color:#fff;

    border-color:#c8256e;

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(200,37,110,.25);

}

.pagination .page-item.active a{

    background:linear-gradient(135deg,#e91e63,#c8256e);

    color:#fff;

    border-color:#c8256e;

    box-shadow:0 10px 25px rgba(200,37,110,.35);

}

.pagination .page-item.disabled a{

    opacity:.45;

    pointer-events:none;

}

.pagination .page-item:first-child a,
.pagination .page-item:last-child a{

    padding:0 22px;

    font-weight:700;

}

@media(max-width:768px){

.pagination{

gap:6px;

}

.pagination .page-item a{

min-width:40px;

height:40px;

padding:0 14px;

font-size:14px;

}

}
/* ==========================
   EMPTY STATE
========================== */

.empty-state{

    background:#fff;

    border-radius:20px;

    padding:60px 30px;

    text-align:center;

    margin:30px 0;

    border:1px solid #edf1f7;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    transition:.3s;

}

.empty-state:hover{

    transform:translateY(-3px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.empty-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#fde8ef;

    display:flex;

    justify-content:center;

    align-items:center;

}

.empty-icon i{

    font-size:42px;

    color:#c8256e;

}

.empty-state h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:10px;

    color:#222;

}

.empty-state p{

    color:#777;

    font-size:16px;

    margin:0;

}

