*{
    font-family: poppins;
    margin: 0;
   
}

.NavBar{
     box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
     padding: 20px;
     position: sticky;
     top: 0px;
     background-color: rgba(255, 255, 255, 0.908);
     backdrop-filter: blur(5px);
     display: flex;
     align-items: center;
     z-index: 20;
}

.NavBar input{
    width: 50%;
    margin-left: 20px;
}

.poster{
  width: 80%;
  margin: 10px;
  border-radius: 10px;
}

.Tag{
    display: inline-block;
}

.highlight-red{
    color: red;
}

.Para{
    background-color: rgb(238, 238, 238);
    color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 10px;
    margin: 10px;
}

button{
    border: none;
    background-color: black;
    padding: 4px;
    font-size: larger;
    color: white;
    border-radius: 4px;
    margin: 10px;
    cursor: pointer;
    transition: 0.5s;
}

button:hover{
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 0px;
    color: rgb(255, 203, 203);
}

.product{
    width: 400px;
    margin: 20px;
    background-color: black;
    color: white;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    vertical-align: top;
    
}

.product img{
    width: 400px;
    border-radius: 10px;
  max-width: 400px;
}

.product h3{
    color: yellow;
}

.cart-btn{
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.54);
}

.cart-btn:hover{
    background: black;
}

@media(max-width:700px){
    .product{
        width: 300px;

    }

    .product img{
        width: 400px;
    }

    .NavBar input{
        width: 80%;
        margin-left: 0;
        margin: 5px;
    }

    .NavBar{
        flex-direction: column;
    }

    .products{
        display: flex;
        flex-direction: column;
        align-items: center;
    }




}

.product{
    cursor: pointer;
    transition: 0.5S;
}

.product:hover{
    transform: translateY(-15px);
   z-index: 0;
}

input{
    width: 80%;
    padding: 6px;
    border: 3px , black , solid;
}

textarea{
    resize: none;
    border: 3px , black , solid;
    width: 80%;
    height: 200px;
}


/* ===== Slider Only ===== */

.slider{
    position: relative;
    width: 280px;      /* Change if needed */
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
}

.slides{
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .4s ease-in-out;
}

.slides img{
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
}

.slider button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
}

.slider #prev{
    left: 10px;
}

.slider #next{
    right: 10px;
}

.slider button:hover{
    background: rgba(0,0,0,.75);
}