/*======================================================
                ZEECO HOMEPAGE SECTIONS
======================================================*/


/*======================================================
                SECTION SPACING
======================================================*/

.section{
    padding:3rem 0;
}

/*======================================================
                TRUST BADGES
======================================================*/

.trust-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.trust-card{

    background:#fff;

    border-radius:18px;

    padding:28px;

    display:flex;

    align-items:center;

    gap:18px;

    box-shadow:0 4px 12px rgba(0,0,0,.06);

    transition:.35s;

}

.trust-card:hover{

    transform:translateY(-6px);

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.trust-icon{

    font-size:40px;

}

.green{

    color:#22c55e;

}

.blue{

    color:#0ea5e9;

}

.purple{

    color:#8b5cf6;

}

.red{

    color:#d71920;

}

.trust-title{

    font-size:18px;

    font-weight:700;

}

/*======================================================
                SECTION TITLE
======================================================*/

.section-title{

    text-align:center;

    font-size:36px;

    margin-bottom:40px;

    font-weight:700;

}

/*======================================================
                CATEGORY GRID
======================================================*/

.category-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

}

.category-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-8px);

}

.category-card img{

    height:220px;

    object-fit:cover;

    transition:.45s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-name{

    padding:18px;

    text-align:center;

    font-weight:700;

    font-size:15px;

}

/*======================================================
                OFFER BANNERS
======================================================*/

.offer-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.offer-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:420px;

}

.offer-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.offer-card:hover img{

    transform:scale(1.08);

}

.offer-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(90deg,
        rgba(0,0,0,.70),
        rgba(0,0,0,.15));

}

.offer-content{

    position:absolute;

    top:50px;

    left:45px;

    color:#fff;

}

.discount{

    display:inline-block;

    background:#d71920;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

}

.offer-title{

    margin-top:25px;

    font-size:48px;

    line-height:1.15;

    font-weight:700;

}

.shop-btn{

    margin-top:35px;

    display:inline-block;

    background:#fff;

    color:#111;

    padding:15px 35px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.shop-btn:hover{

    background:#d71920;

    color:#fff;

}

/*======================================================
                RESPONSIVE
======================================================*/

@media(max-width:1200px){

.category-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:992px){

.trust-grid{

grid-template-columns:repeat(2,1fr);

}

.offer-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.section{

padding:40px 0;

}

.section-title{

font-size:28px;

margin-bottom:25px;

}

.category-grid{

grid-template-columns:repeat(2,1fr);

gap:15px;

}

.category-card img{

height:180px;

}

.trust-grid{

grid-template-columns:1fr;

}

.trust-card{

padding:20px;

}

.offer-card{

height:320px;

}

.offer-content{

left:25px;

top:30px;

}

.offer-title{

font-size:34px;

}

.shop-btn{

padding:12px 25px;

}

}