.sale {
    margin: 2em 3em;
    border: 2px solid black;
}
.sale-container {
    display: flex;
    flex-direction: row;
    max-height: 400px;
}
.sale-bg {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2em;
    background-color: #1B1A17;
    color: white;
    font-size: 32px;
    gap: 1em;
}

.sale-buy-now-button {
    font-size: inherit;
    font-family: inherit;
    padding: 0.2em 1em;
    background-color: #F0E3CA;
    margin-left: 2em;
    color: black;
    font-weight: 700;
}
.big-deal {
    margin-left: 2em;
}
.sale-img {
    flex: 1;
    display: flex;
    position: relative;
}
.sale-img img{
    width: 100%;
    object-fit: cover;
}

.sale-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1B1A17 0%, rgba(134, 133, 132, 0.53) 35.03%, rgba(255, 255, 255, 0.00) 74.76%);

}