.mostrarProductoActual {
    display: flex;
}

.producto_fondo {
    width: 500px;
    height: 300px;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0.04;
    transform: translate(-50%, -50%);
    overflow: visible;
}

/* ===== Titulo, descripcion, imagen del producto & Slide ===== */
.producto_title-descripcion-cantidad {
    padding-top: 5%;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
    z-index: 61;
    gap: .8em;
}

.producto_title-cantidad {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.producto_title-cantidad h3 {
    font-size: 1.6em;
}

.producto_title-cantidad span {
    font-size: .8em;
}

.producto_descripcion {
    font-size: .8em;
    color: #e7a95b;
}

/* ===== Footer BOTON ==== */
.producto_btn-verPrecio-container {
    display: flex;
    justify-content: center;
    margin-top: 1em;
    margin-bottom: 5.5em;
}

.producto_btn-verPrecio {
    text-decoration: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid black;
    border-radius: 30px;
    font-size: .9em;
    width: 120px;
    height: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.807);
    color: black;
    z-index: 62;
}

.producto_btn-verPrecio:hover {
    border: 1px solid white;
}

/* -- Imagen del producto -- */
.producto_img-producto {
    z-index: 59;
}

.producto_img {
    flex: 2;
    display: flex;
    justify-content: center;
}

.producto_img img {
    filter: drop-shadow(-60px 50px 35px rgba(0, 0, 0, 0.5));
    height: 400px;
    transition: all .3s ease-in-out;
    z-index: 50;
}

/* -- Slide -- */
.producto_slide-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
    z-index: 60;
}

.producto_slide-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 100%;
    font-size: .9em;
    width: 3em;
    height: 3em;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.184);
    color: white;
}

.producto_slide-btn:hover {
    border: 1px solid black;
}

.producto_slide-btn-active {
    background-color: white;
    color: black;
}

.producto_slide-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 5%;
}

.slide-text {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: .55em;
    color: #e7a95b;
}

@media (width > 768px) {
    .producto_fondo {
        width: auto;
    }

    .mostrarProductoActual {
        position: relative;
    }

    .producto_btn-verPrecio-container {
        position: absolute;
        top: 40%;
        left: 81%;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 768px) {
    .mostrarProductoActual {
        flex-direction: column-reverse;
        height: 100%;
    }
    .producto_btn-verPrecio-container{
        margin-bottom: 0;
    }

    .producto_fondo {
        top: 35%;
        width: 250px;
        height: 280px;
        opacity: 0.04;
    }

    .producto_slide-btn-container {
        flex-direction: column;
    }

    .producto_nav {
        position: absolute;
        top: 18%;
    }

    .producto_slide-btn {
        width: 40px;
        height: 35px;
        font-size: .8em;
        padding: 0;
    }

    .producto_slide-btn-text {
        position: absolute;
        flex: 0;
        top: 18%;
        left: 80%;
    }

    .producto_img img {
        height: 290px;
    }

    .producto_title-descripcion-cantidad {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        padding: 2em 1em;
        background-color: white;
        position: relative;
        gap: .4em;
    }

    .producto_title-cantidad h3 {
        font-size: 1.3em;
        color: black;
    }

    .producto_descripcion {
        font-size: .7em;
    }
}

@media (max-width: 475px) {
    .producto_img img {
        height: 290px;
    }
    .producto_descripcion{
        min-height: 80px;
    }
}

@media (max-width: 375px) {
    .producto_title-cantidad h3 {
        font-size: 1em;
    }

    .producto_descripcion {
        font-size: .65em;
    }
}