/* vedio */

.video-container {
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    background: #00000000;
    position: relative;
}

.video-container img {
    min-width: 100%;
    min-height: 100%;
    border-radius: 5px;
}

/* product */

.product {
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}
.product-img{
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img{
    width: 100%;
}
.content{
 color: #000;
 padding: 20px;
}

.product .price {
    font-size: 14px;
    color: #333;
}

.product .old-price {
    text-decoration: line-through;
    color: #888;
}

.product .discount {
    color: #e74c3c;
}


/* Style the headings and button */
h3 {
    justify-content:baseline;
    font-size: 14px;
    color: #333;
    margin: 0;
}

h2 {
    font-size: 16px;
    color: #5f5f5f;
    margin: 5px 0;
}

button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 10px;
}
