/*======================================================
PRODUCTS PAGE
ABC PUBLISHERS
======================================================*/

.products-page{

    padding:70px 0;

    background:#f8f9fc;

}


.products-header{

    text-align:center;

    margin-bottom:70px;

}


.products-title{

    font-size:42px;

    font-weight:700;

    color:#0d2b52;

    margin-bottom:15px;

}


.products-subtitle{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:18px;

    line-height:1.8;

}


/*======================================================
CATEGORY
======================================================*/

.product-category{

    margin-bottom:80px;

}


.category-title{

    font-size:34px;

    font-weight:700;

    color:#1e2c55;

    margin-bottom:35px;

    position:relative;

}


.category-title::after{

    content:"";

    width:90px;

    height:4px;

    background:#c18719;

    display: block;

    margin-top: 12px;

    border-radius: 50px;

}


/*======================================================
GRID
======================================================*/

.products-grid{

    display:flex;

    flex-wrap: wrap;

    justify-content: flex-start;

    gap:30px;

}


/* ===========================
   Product Card
=========================== */

.product-card{
    width: 350px;
    min-height: 62px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.35s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}


.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}



/* ===========================
   Image
=========================== */

.product-image{
    height:320px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:20px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}



.product-card:hover .product-image img{

    transform:scale(1.08);

}


/*======================================================
PRODUCT CONTENT
======================================================*/

.product-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-title{
    font-size:24px;
    font-weight:700;
    color: #1e2c55;
    margin-bottom:12px;
    line-height: 1.35;
}

.product-description{
    color:#666;
    line-height:1.8;
    font-size: 15px;
    margin-bottom:20px;
    min-height:120px;
}

.product-price{
    color:#c88719;
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
    margin-top: auto;
}

.product-button{
    display:inline-block;
    width:180px;
    margin-top: auto;
    padding:12px 25px;
    border-radius: 40px;
    text-align: center;
    background:#c88719;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:all .35s ease;
}

.product-button:hover{
    background:#a86d0d;
    color:#fff;
}

/*======================================================
NO PRODUCTS
======================================================*/

.no-products-found{

    text-align:center;

    padding:100px 20px;

}

.no-products-found h3{

    font-size:34px;

    color:#0d2b52;

    margin-bottom:15px;

}

.no-products-found p{

    color:#666;

    font-size:17px;

}

/*======================================================
STICKY FEATURES BAR
======================================================*/

.abc-products-sticky-bar{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    background:#0d2b52;

    display:flex;

    justify-content:space-evenly;

    align-items:center;

    padding:14px 18px;

    z-index:9999;

    box-shadow:0 -8px 25px rgba(0,0,0,.18);

}

.sticky-feature{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    transition:.35s;

}

.sticky-feature i{

    font-size:26px;

    color:#d4af37;

}

.sticky-feature span{

    font-size:15px;

    font-weight:600;

}

.sticky-feature:hover{

    transform:translateY(-3px);

}



/*======================================================
RESPONSIVE
======================================================*/

@media(max-width:992px){

.products-title{

font-size:34px;

}

.category-title{

font-size:28px;

}

.products-grid{

grid-template-columns:

repeat(2,1fr);

gap:25px;

}

.product-image{

height:280px;

}

}



@media(max-width:768px){

.products-page{

padding:50px 0 120px;

}

.products-grid{

grid-template-columns:1fr;

}

.product-title{

font-size:22px;

}

.product-card{

    width: 100%;
}

.product-button{

    width: 100%;
}

.product-description{

min-height:auto;

}

.abc-products-sticky-bar{

display:grid;

grid-template-columns:

repeat(3,1fr);

row-gap:15px;

padding:18px;

}

.sticky-feature{

flex-direction:column;

gap:6px;

text-align:center;

}

.sticky-feature span{

font-size:12px;

}

}



@media(max-width:480px){

.products-title{

font-size:28px;

}

.products-subtitle{

font-size:15px;

}

.category-title{

font-size:24px;

}

.product-image{

height:240px;

}

.product-content{

padding:20px;

}

.product-button{

height:48px;

font-size:15px;

}

.sticky-feature i{

font-size:22px;

}

}