/* ==========================================================
   OUR PRODUCTS PAGE
========================================================== */

/* ================= PRODUCT PAGE BANNER ================= */

.products-banner{
    background:linear-gradient(135deg,#0A3D91 0%,#0A5AA8 55%,#0E76BC 100%);
    padding:55px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.products-banner::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(82,178,2,.12);
    border-radius:50%;
    top:-120px;
    left:-80px;
}

.products-banner::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-100px;
    right:-60px;
}

/* ================= HOME BUTTON ================= */

.home-btn{
    position:absolute;
    top:0;
    right:15px;

    width:50px;
    height:50px;

    background:#52B202;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:.3s;

    z-index:5;

    box-shadow:0 8px 20px rgba(0,0,0,.2);
}

.home-btn:hover{
    background:#ffffff;
    color:#0A3D91;
    transform:translateY(-4px);
}

/* ================= TEXT ================= */

.products-banner h1{
    color:#52B202;
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    position:relative;
    z-index:2;
}

.products-banner p{
    color:#fff;
    font-size:18px;
    margin:0;
    position:relative;
    z-index:2;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

.products-banner{
    padding:40px 15px;
}

.products-banner h1{
    font-size:30px;
}

.products-banner p{
    font-size:15px;
}

.home-btn{

    width:42px;
    height:42px;

    font-size:18px;

    top:5px;
    right:12px;

}

}

/* ================= SEARCH ================= */

.search-section{
    padding:50px 0 30px;
    background:#f7f9fc;
}

.search-box{
    height:55px;
    border-radius:50px;
    padding-left:25px;
    font-size:16px;
    border:1px solid #ddd;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.search-box:focus{
    border-color:#3ea000;
    box-shadow:0 0 0 .2rem rgba(62,160,0,.15);
}

.category-select{
    height:55px;
    border-radius:50px;
    padding-left:20px;
    border:1px solid #ddd;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.category-select:focus{
    border-color:#3ea000;
    box-shadow:0 0 0 .2rem rgba(62,160,0,.15);
}

/* ================= PRODUCT SECTION ================= */

.product-section{
    padding:50px 0 70px;
    background:#f8f9fb;
}

/* Space between rows */

#productContainer{
    row-gap:30px;
}

/* Product Column */

.product-col{
    padding:12px;
}

/* ================= PRODUCT CARD ================= */

.product-card{
    background:#fff;
    border-radius:15px;
    border:1px solid #e8e8e8;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
    overflow:hidden;
    height:100%;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* ================= IMAGE ================= */

.product-img{
    width:100%;
    height:190px;
    object-fit:cover;
    background:#f4f4f4;
}

/* ================= BODY ================= */

.product-body{
    padding:18px 15px;
    text-align:center;
}

.product-title{
    font-size:20px;
    font-weight:700;
    color:#0A3D62;
    margin-bottom:12px;
    line-height:1.4;
    min-height:56px;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.product-desc{
    font-size:14px;
    color:#666;
    line-height:24px;
    min-height:70px;
    margin-bottom:0;
    text-align:center;
}

/* ================= Desktop ================= */

@media(min-width:1200px){

.product-col{
    flex:0 0 20%;
    max-width:20%;
}

}

/* ================= Laptop ================= */

@media(min-width:992px) and (max-width:1199px){

.product-col{
    flex:0 0 25%;
    max-width:25%;
}

}

/* ================= Tablet ================= */

@media(min-width:768px) and (max-width:991px){

.product-col{
    flex:0 0 33.333%;
    max-width:33.333%;
}

}

/* ================= Mobile ================= */

@media(max-width:767px){

#productContainer{
    row-gap:20px;
}

.product-col{
    flex:0 0 50%;
    max-width:50%;
    padding:8px;
}

.product-img{
    height:140px;
}

.product-body{
    padding:12px;
}

.product-title{
    font-size:16px;
    min-height:45px;
}

.product-desc{
    font-size:13px;
    line-height:20px;
    min-height:55px;
}

}


/* ================= PAGINATION ================= */

.pagination-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.pagination-wrapper button{

    width:42px;
    height:42px;

    border:none;

    background:#f2f2f2;

    border-radius:50%;

    transition:.3s;

    font-weight:600;

}

.pagination-wrapper button:hover{

    background:#0a3766;

    color:#fff;

}

.pagination-wrapper button.active{

    background:#3ea000;

    color:#fff;

}

.pagination-wrapper button.prev,
.pagination-wrapper button.next{

    width:auto;

    padding:0 20px;

    border-radius:30px;

}


/* ================= RESPONSIVE ================= */


/* Desktop */

@media(min-width:1200px){

.product-col{

flex:0 0 20%;

max-width:20%;

}

}


/* Laptop */

@media(min-width:992px) and (max-width:1199px){

.product-col{

flex:0 0 25%;

max-width:25%;

}

}


/* Tablet */

@media(min-width:768px) and (max-width:991px){

.product-col{

flex:0 0 33.33%;

max-width:33.33%;

}

}


/* Mobile */

@media(max-width:767px){

.products-banner{

padding:55px 0;

}

.products-banner h1{

font-size:30px;

}

.products-banner p{

font-size:15px;

}

.search-box{

margin-bottom:15px;

}

.product-col{

flex:0 0 50%;

max-width:50%;

padding-left:8px;

padding-right:8px;

}

.product-card{

margin-bottom:16px;

}

.product-img{

height:150px;

}

.product-title{

font-size:17px;

min-height:45px;

}

.product-desc{

height:55px;

font-size:13px;

line-height:20px;

}

.product-btn{

width:100%;

text-align:center;

padding:10px;

font-size:14px;

}

.pagination-wrapper{

gap:5px;

}

.pagination-wrapper button{

width:36px;

height:36px;

font-size:13px;

}

}