.price-wrapper {
    margin-bottom: 20px;
}

.old-price {
    position: relative;
    font-size: 40px;
    color: #000;
    display: inline-block;
    margin-bottom: 5px;
}

.old-price::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 4px;
    background-color: red;
    transform: rotate(-15deg);
}

.promo-price {
    font-size: 48px;
    font-weight: bold;
    color: #d9534f;
}

.banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.banner img {
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.45);
    padding: 20px 40px;
    border-radius: 8px;
}

.banner-overlay h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.banner-overlay p {
    font-size: 1.2rem;
}

.btn-primary, .btn-primary:active, .btn-primary:visited {
    background-color: #ff1616;
    border-color: #ff1616;
    color: #202529;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #ff1616;
    border-color: #ff1616;
    color: #202529;
    font-weight: 600;
}

.footer-back-img {
    background-image: url('/images/section.png');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    height: 120px;
}

.carousel-img {
    height: 100vh;
    width: 100%;
    object-fit: contain;
    object-position: right center;
    background-color: #f8f9fa;
}

@media (min-width: 768px) {
    .footer-back-img {
        height: 350px;
    }
}
