.container-image {
    max-width: 300px;
    margin: auto;
    height: auto;
}

.img-juego {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

.main-description {
    background-color: transparent;
    backdrop-filter: blur(2px);
    margin: 1rem auto;
    border: 1px solid white;
    padding: 1rem;
    max-width: 600px;
}

.main-description,
.main-description p,
.lista-description li,
.precio-ahora,
.precio-anterior,
#stock-info,
label,
button.crear {
    color: white !important;
}

button.crear {
    background-color: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid white;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.crear:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

#title-item {
    border-bottom: 1px solid #050505;
    color: #dddddd;
}

.description {
    padding: 5%;
}

.description p {
    color: #dddddd;
    letter-spacing: 2px;
    margin: 1rem 0;
}

.lista-description {
    padding: 5%;
}

.lista-description li {
    padding-bottom: 0.1rem;
    color: #dddddd;
}

.precios {
    display: flex;
    padding: 0.5rem;
    align-items: center;
}

.precio-ahora {
    color: #dddddd;
    font-size: 1.5rem;
    font-weight: 600;
}

.precio-anterior {
    text-decoration: line-through;
    color: #000000;
}

.cantidadProductos {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 1rem;
}

.cantidadProductos input {
    width: 4rem;
    padding: 0.4rem;
    margin-right: 1rem;
    text-align: center;
    border-radius: 4px;
    outline: none;
}

.cantidadProductos input:focus {
    border: 2px solid #000000;
}

.cantidadProductos a:active {
    color: black;
    background-color: rgb(255, 255, 255);
}

.cantidadProductos a {
    color: #dddddd;
    text-align: center;
    width: 7rem;
    background-color: #ababab;
    padding: 0.5rem;
}

.cantidadProductos a:hover {
    background-color: #dddddd;
    color: #000000;
    transition-property: background-color color;
    transition-duration: 0.3s;
}

#quantity-items {
    height: 2.2rem;
    width: 4rem;
    background-color: #dddddd;
    outline: none;
    font-size: 15px;
    margin-right: 0.2rem;
}

.list-products {
    padding: 1rem 0;
}

#banner-image {
    display: none;
}

footer {
    width: 100%;
    background-color: #747474;
}

@media screen and (min-width: 768px) {
    #main-content {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

    .section-description {
        align-items: center;
        justify-content: center;
    }

    .list-products {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .price-content {
        display: flex;
        width: 23rem;
        flex-direction: row;
        margin-top: 0.3rem;
    }

    #name-product {
        margin-left: 15%;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 800;
    }

    .lista-description {
        padding: 1rem 0 0;
    }

    .cantidadProductos {
        margin: 0;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.mainProductDetail {
    padding: 1rem;
    background-image: url('/images/Lienzo01vero.jpeg');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: center top;
    background-attachment: fixed;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

#description-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}