.slider_contenido_promocion {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    position: relative;
}

.imagen_fija_slider {
    flex: 0 0 250px;
    margin-top: 30px;
}
.imagen_fija_slider img {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.slider_contenido_promocion {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px 20px;
    position: relative;
}

.imagen_fija_slider {
    flex: 0 0 300px;
}
.imagen_fija_slider img {
    width: 100%;
    max-height: 420px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.slider_principal {
    flex: 1;
    position: relative;
}

.titulo_slider {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}
.titulo_slider::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #2c3e50;
    margin: 8px auto 0;
    border-radius: 2px;
}

.tarjeta_contenido_slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tarjeta_contenido_slider:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.tarjeta_contenido_slider img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
.tarjeta_contenido_slider:hover img {
    transform: scale(1.05);
}

.tarjeta_contenido_slider h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    margin: 0;
}
.tarjeta_contenido_slider p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.precio_oferta {
    margin-top: auto;
}
.precio {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c7a4b;
    display: block;
}
.oferta {
    font-size: 0.95rem;
    color: #e63946;
}

.btn_agregar {
    margin-top: 12px;
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, #2c3e50);
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn_agregar:hover {
    background: linear-gradient(135deg, #6e8ea1, #4a6775);
}

.glider-prev, .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #2c3e50);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}
.glider-prev:hover, .glider-next:hover {
    background: linear-gradient(135deg, #6e8ea1, #4a6775);
}
.glider-prev { left: 0; }
.glider-next { right: 0; }


.slider_principal {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.titulo_slider {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.tarjeta_contenido_slider {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tarjeta_contenido_slider:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.tarjeta_contenido_slider img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
}

.tarjeta_contenido_slider h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    margin: 0;
}
.tarjeta_contenido_slider p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.precio_oferta {
    margin-top: auto;
}
.precio {
    font-size: 1rem;
    font-weight: bold;
    color: #2c7a4b;
    display: block;
}
.oferta {
    font-size: 0.9rem;
    color: #e63946;
}

.btn_agregar {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    background: #2c3e50;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn_agregar:hover {
    background: #6e8ea1;
}

.glider-prev, .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #2c3e50;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}
.glider-prev:hover, .glider-next:hover {
    background: #6e8ea1;
}
.glider-prev { left: 0; }
.glider-next { right: 0; }
