/* @media (max-width: 2600px) and (min-width: 460px) { */
/* @media (min-width: 1440px)  { */
@media (min-width: 460px) and (max-width: 2600px) {
    body {
        margin: 0;
        font-family: sans-serif;
        font-family: Rokh , Vazir , 'Poppins';
        font-size: 16px;
        padding: 0;
    }
    .baner {
        height: 615px;
        background-image: url('./images/scandinavian-interior-mockup-wall-decal-background1.png');
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: bottom;
        display: flex;
        align-items: center;
        padding: 0 60px 0 0;  
    }
    .baner-div{
        font-family: 'Poppins';
        height: 324px;
        width: 559px;
        border-radius: 15px;
        padding: 80px 50px ;
        background-color: #FFF3E3;
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        justify-content: space-between;
    }
    .baner-p1{
        font-size: 20px;
        font-weight: 500  ;

    }
    .baner-p2{
        font-size: 52px;
        font-weight: bold;
        color: #b88e2f;
        width: 405px;
        text-align: end;
    }
    .baner-p3{
        font-size: 18px;
        font-weight: 300;
        direction: ltr;
    }
    .baner-button{
        font-weight: bold;
        color: #fff;
        background-color: #b88e2f;
        width: 222px;
        height: 80px;
        font-size: 25px;
        border: none;
    }
    .browse-the-range{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 60px 0 60px 0;
    }
    .browse-p1{
        font-weight: bold;
        font-size: 30px;
    }
    .browse-p2{
        font-size: 20px;
        margin: 7px 0 25px 0;
    }

    .category-maim{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        margin: 65px 0 60px 0;
    }
    .categories {
        gap: 32px;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    .category-card {
        display: flex;
        position: relative;
        width: 394px;
        height: 212px;
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        flex-wrap: nowrap;
    }
    .category-image {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .category-image img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
        transition: transform 0.5s ease;
    }
    .category-card:hover .category-image img {
        transform: scale(1.1);
    }
    .category-card:hover .overlay{
        background: rgba(0,0,0,0.4);
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        transition: background 0.3s ease;
    }
    .category-content {
        position: absolute;
        bottom: 0px;
        color: #fff;
        z-index: 2;
        display: flex;
        gap: 10px;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }
    .category-content i {
        font-size: 30px;
    }
    .category-content h3 {
        margin: 0;
        font-weight: bold;
        font-size: 30px;
    }
    .category-content p{
        font-size: 16px;
    }
    .category-content .category-cart{
        font-size: 25px;
        border-radius: 50%;
        /* background-color: #fff3; */
        background-color: #ffffff78;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .advertising {
        margin: 60px 15px;
        text-align: center;
    }
}