/* ==========================================================
   Franklin Premium Product Card
   ========================================================== */

.fr-product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:all .35s ease;
    height:100%;
    border:1px solid #edf1ed;
}

.fr-product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* ==========================================================
   Product Image
   ========================================================== */

.fr-product-image{
    position:relative;
    background:#fff;
    aspect-ratio:1 / 1;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:20px;
}

.fr-product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .4s ease;
}

.fr-product-card:hover .fr-product-image img{
    transform:scale(1.08);
}

/* ==========================================================
   Sale Badge
   ========================================================== */

.fr-sale-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#dc3545;
    color:#fff;
    font-size:12px;
    font-weight:600;
    padding:6px 12px;
    border-radius:20px;
    z-index:5;
}

/* ==========================================================
   Wishlist
   ========================================================== */

.fr-wishlist-btn{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
    transition:.3s;
    z-index:5;
}

.fr-wishlist-btn:hover{
    background:#2E7D32;
    color:#fff;
}

.fr-wishlist-btn i{
    font-size:18px;
}

/* ==========================================================
   Body
   ========================================================== */

.fr-product-body{
    padding:22px;
}

.fr-product-title{
    margin-bottom:10px;
}

.fr-product-title a{
    text-decoration:none;
    color:#222;
    font-size:20px;
    font-weight:700;
    line-height:1.4;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.fr-product-title a:hover{
    color:#2E7D32;
}

.fr-product-description{

    color:#666;
    font-size:14px;
    line-height:1.7;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;

    margin-bottom:15px;

}

/* ==========================================================
   Rating
   ========================================================== */

.fr-rating{
    margin-bottom:15px;
}

.fr-rating i{
    color:#f4b400;
    margin-right:2px;
}

/* ==========================================================
   Price
   ========================================================== */

.fr-price{
    margin-bottom:20px;
}

.fr-price-new{
    font-size:26px;
    font-weight:700;
    color:#2E7D32;
}

.fr-price-old{
    color:#999;
    margin-left:10px;
    text-decoration:line-through;
}

.price-tax{
    display:block;
    color:#888;
    font-size:13px;
    margin-top:5px;
}

/* ==========================================================
   Footer
   ========================================================== */

.fr-product-footer{
    padding:0 22px 22px;
}

.fr-add-cart{
    width:100%;
    height:50px;
    background:#2E7D32;
    color:#fff;
    border:none;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.fr-add-cart:hover{
    background:#1B5E20;
    color:#fff;
}

.fr-compare-btn{

    width:100%;
    margin-top:12px;

    height:44px;

    border-radius:25px;

    background:#fff;

    border:1px solid #ddd;

    transition:.3s;

}

.fr-compare-btn:hover{

    background:#2E7D32;

    color:#fff;

    border-color:#2E7D32;

}
.fr-product-footer{

    display:flex;
    gap:10px;

}

.fr-add-cart{

    flex:1;

    height:50px;

    border-radius:30px;

}

.fr-view-details{

    width:50px;

    height:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:1px solid #2E7D32;

    color:#2E7D32;

    background:#fff;

    transition:.3s;

}

.fr-view-details:hover{

    background:#2E7D32;

    color:#fff;

}
/* ==========================================================
   Responsive
   ========================================================== */

@media(max-width:991px){

.fr-product-title a{

    font-size:18px;

}

.fr-price-new{

    font-size:22px;

}

}

@media(max-width:576px){

.fr-product-body{

    padding:18px;

}

.fr-product-footer{

    padding:0 18px 18px;

}

.fr-add-cart{

    height:46px;

}

}

/* =====================================
   Franklin Pagination
===================================== */

.pagination{

    margin:0;

}

.pagination .page-link{

    color:#2E7D32;

    border:1px solid #dce6dc;

    border-radius:12px;

    margin:0 4px;

    min-width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.pagination .page-link:hover{

    background:#2E7D32;

    color:#fff;

    border-color:#2E7D32;

}

.pagination .page-item.active .page-link{

    background:#2E7D32;

    border-color:#2E7D32;

    color:#fff;

    box-shadow:0 8px 20px rgba(46,125,50,.25);

}

.pagination .page-item.disabled .page-link{

    color:#bbb;

    background:#f8f8f8;

}

/* =====================================
   Franklin Breadcrumb
===================================== */

.fr-breadcrumb{
    padding:15px 0;
   
}

.fr-breadcrumb .breadcrumb{
    margin:0;
    padding:0;
    background:none;
}

.fr-breadcrumb .breadcrumb-item{

    font-size:15px;
    font-weight:500;

}

.fr-breadcrumb a{

    color:#6c757d;
    text-decoration:none;

}

.fr-breadcrumb a:hover{

    color:#2E7D32;

}

.fr-breadcrumb .breadcrumb-item.active{

    color:#2E7D32;
    font-weight:600;

}

.breadcrumb-item + .breadcrumb-item::before{

    content:"›";
    color:#bbb;

}