*
{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body
{
    overflow-x: hidden;
    width: 100%;
}

.about-banner
{   
    height: calc(100vh - 60px);
    background-image: url("/images/img/hero4.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap:1rem;

}

.about-banner h2
{   
    
    font-family: 'Rubik Distressed', cursive;
    font-weight: 300;
    color: rgb(255, 78, 78);
    font-size: 3rem;
    letter-spacing: 2px;
    margin-left: 3rem;
}

.about-banner h4
{
    font-family: Roboto, Oxygen, sans-serif;
    font-size: 2rem;
    color:#222;
    font-weight: 600;
    margin-left: 3rem;
}

.search
{
    height: 80px;
    max-width: 500px;
    box-shadow: 2px 4px 4px 4px rgb(252, 239, 61);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50px;
    margin-top: 2rem;
}

.search input
{
    height: 35px;
    width: 300px;
    outline: none;
    border: 1px solid #222;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    padding: 10px;
    letter-spacing: 2px;
}

.search-icon
{   
    height: 35px;
    width: 35px;
    border : 1px solid #222;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.search-icon:hover
{
    transform: scale(1.1);
    transition: all 0.2s;
}


.search input::placeholder
{   
    font-weight: 300;
    text-align: left;
    font-size: 12px;
}

.search-products-container
{   
    display: none;
}

.clicked
{   
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    margin: 0 auto;
    margin-top: 2rem;
    transition: all 0.4s;
}

.search-products
{   
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 0.5rem;
}

.search-product-item
{   
    height: 400px;
    border-radius: 1rem;
    padding: 10px;
    border: 2px solid yellow;
}


.all-products-container
{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin-top: 15rem;
}

.all-products-title
{   
    font-family: Roboto, Oxygen, sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:2rem;
    cursor: default;
}

.all-products-title h2
{
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.all-products-title h4
{
    color: gray;
    font-weight: 300;
    word-spacing: 8px;
}

.all-products
{   
    min-height: 100vh;
    display: grid;
    grid-template-columns: auto auto auto auto;
    margin-top: 2rem;
    padding: 10px;
    gap:2rem;
}

.product-item
{
    max-height: 400px;
    max-width: 300px;
}

.product-img
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img
{
    height: 220px;
    width: 220px;
    object-fit: contain;
}

.desc-title h4
{
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.desc-title .price
{
    font-size: 1.2rem;
    font-weight: 600;
}

.counter-title
{
    font-size: 1.2rem;
}

.pagination
{
    text-align: center;
    margin-top: 2rem;
}

.pagination a
{

    max-width: 100%;
    margin: 1rem;
    text-decoration: none;
    border: none;
    padding: 10px 15px;
    background-color: rgb(170, 80, 255);
    color: #fff;
}

.right
{
    color : rgb(68, 127, 255);
}

@media screen and (max-width: 1440px){

    .search
    {
        margin-top: 8rem;
    }

    .all-products-title
    {
        margin-top: 4rem;
    }

}

@media screen and (max-width: 1024px){
    
.all-products
{   
    display: grid;
    grid-template-columns: repeat(3, auto);
    margin-top: 2rem;
    padding: 60px;
}
.product-img
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img
{
    height: 220px;
    width: 220px;
    object-fit: contain;
}

.desc-title h4
{
    font-size: 1.2rem;
}

.counter-title
{
    font-size: 1.2rem;
}

}

@media screen and (max-width: 768px){

    .about-banner h2
    {
        font-size: 2rem;
    }

    .about-banner h4
    {
        font-size: 1.2rem;
    }
    
.product-item
{
    max-height: 350px;
    max-width: 300px;
}

.search-products
    {
        display: grid;
        grid-template-columns: auto auto auto;
        gap:0.5rem;
    }


.all-products
{   
        display: grid;
        grid-template-columns: repeat(3, auto);
        padding: 20px;
        gap:18px;
}

.all-products-title
{
    gap:10px;
    margin-top: 1.5rem;
}

.all-products-title h2
{
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.all-products-title h4
{
    color: gray;
    font-weight: 300;
    word-spacing: 8px;
}

.product-img
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img
{
    height: 180px;
    width: 180px;
    object-fit: contain;
}

.desc-title h4
{
    font-size: 1rem;
}

.desc-title .price
{
    font-size: 1rem;
    font-weight: 600;
}

.counter-title
{
    font-size: 1rem;
}

}

@media screen and (max-width: 425px){

    .about-banner h2
    {
        font-size: 1.5rem;
        margin: 0;
        margin-left: 1rem;
    }

    .about-banner h4
    {
        font-size: 1rem;
        margin: 0;
        margin-left: 1rem;
    }

.product-item
{
    max-height: 370px;
    max-width: 300px;
}
    
.all-products
{   
        display: grid;
        grid-template-columns: repeat(2, auto);
        padding: 20px;
        gap:8px;
}

.product-item
{
    min-height: 300px;
    min-width: 150px;
}

.product-img
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img
{
    height: 180px;
    width: 180px;
    object-fit: contain;
}

.desc-title
{
    padding: 10px;
}

.desc-title h4
{
    font-size: 1rem;
}

.desc-title .price
{
    font-size: 1rem;
    font-weight: 600;
}

.counter-title
{
    font-size: 1rem;
}
    
    .search
    {
        height: 60px;
        max-width: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 8rem;
    }

    .search input
    {
        height: 30px;
        width: 280px;
        outline: none;
        border: 1px solid gray;
        text-align: left;
        font-size: 12px;
        font-weight: 600;
        padding: 10px;
    }

    .search-icon
    {   
        height: 30px;
        width: 30px;
        border : 1px solid gray;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search input::placeholder
    {
        text-align: left;
    }

    .clicked
    {
        padding: 30px;
    }

    .search-products
    {
        display: grid;
        grid-template-columns: auto auto;
        gap:0.5rem;
    }


    .all-products-title h2
    {
        font-size: 1.5rem;
        font-weight: 600;
        letter-spacing: 2px;
    }

    .all-products-title h4
    {
        color: gray;
        font-weight: 300;
        word-spacing: 8px;
    }

    .all-products-title
    {
        gap:1rem;
    }
    
    .counter i
    {
        font-size: 12px;
    }

    .desc-title h4
    {
        font-size: 12px;
    }

    .all-products-title h2
    {
        font-size: 15px;
    }

    .all-products-title h4
    {
        font-size: 10px;
    }

}

@media screen and (max-width: 375px){

    .about-banner
    {   
        background-position: 70%;
        gap:1rem;
    }
    
    .about-banner h2
    {
        font-size: 1.5rem;
        margin: 0;
        margin-left: 1rem;
    }

    .about-banner h4
    {
        font-size: 1rem;
        width: 50%;
        margin: 0;
        margin-left: 1rem;
    }

    .search
    {
        height: 60px;
        max-width: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 6rem;
        border-radius: 10px;
    }

    .search input
    {
        height: 30px;
        width: 255px;
        outline: none;
        border: 1px solid gray;
        text-align: left;
        font-size: 11px;
        font-weight: 600;
        padding: 10px;
    }

    .search input::placeholder
    {
        font-size: 11px;
    }

    .search-icon
    {   
        height: 30px;
        width: 30px;
        border : 1px solid gray;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }


    .search-products
    {
        display: grid;
        grid-template-columns: auto;
        gap:0.5rem;
        width: 270px;
    }


.all-products
{   
    display: grid;
    grid-template-columns: repeat(1,auto);
    padding: 20px;
}

.all-products-title h2
{
    font-size: 15px;
}

.all-products-title h4
{
    font-size: 10px;
}

.product-item
{
    min-height: 280px;
    min-width: 250px;
}

.product-img
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img
{
    height: 180px;
    width: 180px;
    object-fit: contain;
}

.desc-title
{
    padding: 10px;
}

.desc-title h4
{
    font-size: 1rem;
}

.desc-title .price
{
    font-size: 1rem;
    font-weight: 600;
}

.counter-title
{
    font-size: 12px;
}
.counter i
{
    font-size: 10px;
}
}

@media screen and (max-width: 320px){

    .about-banner
    {
        background-position: 60%;
    }
    .about-banner h2
    {
        font-size: 1.2rem;
    }

    .about-banner h4
    {
        font-size: 1rem;
        width: 50%;
    }

    .search
    {
        height: 60px;
        max-width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-top: 8rem;
    }

    .search input
    {
        height: 30px;
        width: 238px;
        outline: none;
        border: 1px solid gray;
        text-align: left;
        font-size: 10px;
        font-weight: 600;
        padding: 10px;
    }

    .search-icon
    {   
        height: 30px;
        width: 30px;
        border : 1px solid gray;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search input::placeholder
    {
        text-align: left;
        font-size: 9px;
    }

    .search-products
    {
        display: grid;
        grid-template-columns: 180px;
        width: 100%;
        gap:0.5rem;
    }


    .all-products-title h2
    {
        font-size: 15px;
    }

    .all-products-title h4
    {
        font-size: 10px;
    }

.product-item
{
    min-height: 180px;
    min-width: 270px;
    margin-bottom: 1rem;
}

.product-img
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img
{
    height: 180px;
    width: 180px;
    object-fit: contain;
}

.counter-title
{
    font-size: 1rem;
}

.desc-title
{
    padding: 0px;
}

.desc-title h4
{
    font-size: 14px;
}

.desc-title .price
{
    font-size: 14px;
    font-weight: 600;
}


.counter
{
    padding: 0;
}

}
