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

.categories-section{
    max-width:1300px;
    margin:90px auto;
    padding:0 20px;
}

.section-title{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:45px;
}

.section-title span{
    width:70px;
    height:1px;
    background:#d8d8d8;
}

.section-title h2{
    font-size:28px;
    font-weight:700;
    letter-spacing:2px;
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.category-card{
    text-decoration:none;
    overflow:hidden;
    border-radius:18px;
    transition:.35s;
}

.category-card:hover{
    transform:translateY(-6px);
}

.category-image{

    aspect-ratio:4/5;

    overflow:hidden;

    border-radius:18px;

    background:#f6f6f6;

}

.category-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:.45s;

}

.category-card:hover img{

    transform:scale(1.08);

}

.category-card h3{

    margin-top:14px;

    text-align:center;

    font-size:12px;

    font-weight:700;

    letter-spacing:1.6px;

    color:#222;

    text-transform:uppercase;

}

@media(max-width:900px){

    .categories-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:550px){

    .categories-grid{

        gap:16px;

    }

}

/* =====================
   TABLET
===================== */

@media(max-width:992px){

.categories-grid{

grid-template-columns:repeat(3,1fr);

}

}

/* =====================
   MOBILE
===================== */

@media(max-width:768px){

.categories-section{

padding:55px 0;

}

.section-title{

margin-bottom:35px;

}

.section-title span{

max-width:55px;

}

.section-title h2{

font-size:15px;

letter-spacing:1.5px;

}

.categories-grid{

grid-template-columns:repeat(3,1fr);

gap:14px;

}

.category-card h3{

font-size:11px;

margin-top:10px;

}

}

/*=====================================
            SHOP BY REELS
======================================*/

.reels-section{

    padding:90px 0;

    background:#fff;

}

.reels-grid{

    
    display: flex;
    flex-direction: column;
    gap: 20px;
    

}

.reel-card {
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 16px;
}

.reel-card video{

    width:100%;

    height:100%;

    object-fit:cover;
    

}


.reel-card:hover{

    transform:translateY(-8px);

}

.reel-card:hover img{

    transform:scale(1.05);

}

.play-btn{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:72px;

    height:72px;

    border-radius:50%;

    background:rgba(255,255,255,.92);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.play-btn svg{

    width:30px;

    height:30px;

}

.reel-card:hover .play-btn{

    transform:translate(-50%,-50%) scale(1.08);

}

@media(max-width:768px){

    .reels-section{

        padding:60px 0;

    }

    .reels-grid{

        grid-template-columns:repeat(2,1fr);

        gap:14px;

        margin-top:25px;

    }

    .play-btn{

        width:56px;

        height:56px;

    }

}
/*=====================================
        HAPPY CUSTOMERS
======================================*/

.reviews-section{

    padding:90px 0;

    background:#fafafa;

}

.reviews-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:45px;

}

.reviews-grid img{

    width:100%;

    border-radius:18px;

    object-fit:cover;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.reviews-grid img:hover{

    transform:translateY(-8px);

}

@media(max-width:768px){

    .reviews-section{

        padding:60px 0;

    }

    .reviews-grid{

        grid-template-columns:repeat(2,1fr);

        gap:14px;

        margin-top:25px;

    }

}
/*=====================================
        DISPATCH SECTION
======================================*/

.dispatch-section{

    padding:90px 0;

    background:#fff;

}

.dispatch-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    margin-top:50px;

}

.dispatch-content h3{

    font-size:36px;

    margin-bottom:20px;

    color:#111;

}

.dispatch-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}

.dispatch-content ul{

    list-style:none;

    padding:0;

}

.dispatch-content li{

    margin-bottom:18px;

    font-size:17px;

    font-weight:600;

}

.dispatch-images{

    display:grid;

    gap:18px;

}

.dispatch-images img{

    width:100%;

    border-radius:18px;

    object-fit:cover;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.dispatch-images img:hover{

    transform:scale(1.03);

}

@media(max-width:768px){

    .dispatch-section{

        padding:60px 0;

    }

    .dispatch-wrapper{

        grid-template-columns:1fr;

        gap:30px;

    }

    .dispatch-content h3{

        font-size:28px;

    }

}