.producto-container {
        display: flex;
        flex-wrap: wrap;
        gap: 2.5rem;
        align-items: center;
        justify-content: center;
        margin: 2.5rem auto;
    }
    .producto-slider {
        flex: 1 1 340px;
        max-width: 400px;
        min-width: 280px;
        border-radius: 16px;
        padding: 1.5rem 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
.slider-wrapper {
    width: 640px; /* Ancho fijo para fotos */
    height: 420px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.slider-img {
    display: none;
    max-width: 95%;
    max-height: 95%;
    min-width: 640px;
    min-height: 420px;
    height: auto;
    width: auto;
    object-fit: contain;
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
    .slider-img.active {
        display: block;
        animation: fadein 0.4s;
    }
    @keyframes fadein {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .slider-controls {
        margin-top: 1.2rem;
        display: flex;
        gap: 1.5rem;
        justify-content: center;
    }
    .slider-controls button {
        border: none;
        border-radius: 50%;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.5rem;
        color: #13733d;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }
    .slider-controls button:hover {
        background: #13733d;
        color: #fff;
    }
    .producto-info {
        flex: 1 1 740px;
        min-width: 280px;
        max-width: 540px;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(44,62,80,0.10);
        padding: 2.2rem 2rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .producto-info h1 {
        font-size: 1.5rem;
        color: #0d5a2c;
        margin-bottom: 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.5em;
    }
    .producto-info p, .producto-info ul {
        font-size: 1.08rem;
        color: #333;
        margin-bottom: 1.1rem;
        line-height: 1.7;
    }
    @media (max-width: 900px) {
        .producto-container {
            flex-direction: column;
            align-items: stretch;
        }
        .producto-slider, .producto-info {
            max-width: 100%;
        }
    }