.shop-hero{

    position: relative;

    height: 420px;

    background-image: url('/static/media/images/shop-banner.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;
}


.overlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,0.55);
}


.hero-content{

    position: relative;

    z-index: 2;

    color: white;

    max-width: 750px;
}


.hero-badge{

    display: inline-block;

    padding: 10px 18px;

    background: rgba(255,255,255,0.15);

    border-radius: 50px;

    margin-bottom: 25px;
}


.hero-content h1{

    font-size: 58px;

    font-weight: 800;

    margin-bottom: 20px;
}


.hero-content p{

    font-size: 19px;

    line-height: 1.8;
}



/* SEARCH */

.shop-search-section{

    padding: 40px 0;

    background: #1E1E1E;
}


.search-form{

    display: flex;

    gap: 15px;
}


.search-form input{

    flex: 1;

    height: 58px;

    border-radius: 14px;

    border: 1px solid #DDD;

    padding: 0 20px;
}


.search-form button{

    height: 58px;

    padding: 0 28px;

    border: none;

    border-radius: 14px;

    background: #02407F;

    color: white;

    font-weight: 600;
}



/* PRODUCTS */

.products-section{

    padding: 60px 0;

    background: #1E1E1E;
}


.products-header{

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 35px;
}


.products-header h2{

    color: #02407F;

    font-size: 36px;

    font-weight: 800;
}


.products-grid{

    display: grid;

    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));

    gap: 25px;
}


.product-card{

    background: white;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}


.product-card:hover{

    transform: translateY(-8px);
}


.product-image{

    display: block;

    height: 260px;

    overflow: hidden;
}


.product-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.product-content{
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-footer{

    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-title{

    font-size: 21px;
    margin: 14px 0;
    color: #111;
    line-height: 1.5;
    min-height: 64px;
}


.product-description{

    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
    min-height: 72px;
}


.product-category{

    color: #B85A17;

    font-size: 13px;

    font-weight: 700;
}


.product-title{

    font-size: 21px;

    margin: 14px 0;

    color: #111;

    line-height: 1.5;
}


.product-description{

    color: #666;

    line-height: 1.7;

    margin-bottom: 22px;
}


.product-footer{

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.product-price{

    color: #02407F;

    font-size: 18px;

    font-weight: 800;
}


.product-btn{

    background: #B85A17;

    color: white;

    text-decoration: none;

    padding: 12px 18px;

    border-radius: 12px;
}



/* PAGINATION */
.pagination-wrapper{

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    margin-top: 60px;
}


.page-btn{

    padding: 12px 18px;

    background: white;

    border-radius: 10px;

    text-decoration: none;

    color: #02407F;

    font-weight: 600;
}


.current-page{

    font-weight: 700;
    color: white;
}



@media(max-width:768px){

    .shop-hero{

        height: 320px;

        padding: 0 20px;
    }


    .hero-content h1{

        font-size: 34px;

        line-height: 1.3;
    }


    .hero-content p{

        font-size: 16px;
    }


    .products-header{

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .search-form{

        flex-direction: column;

        width: 100%;

        gap: 14px;
    }


    .search-form input{

        width: 100%;

        min-height: 58px;

        font-size: 16px;

        padding: 0 18px;
    }


    .search-form button{

        width: 100%;

        min-height: 58px;

        font-size: 16px;
    }


    .products-grid{

        grid-template-columns: 1fr;
    }


    .product-image{

        height: 220px;
    }


    .product-title{

        font-size: 18px;
    }


    .product-price{

        font-size: 22px;
    }


    .pagination-wrapper{

        flex-wrap: wrap;
    }

}