/* Estilos para la página de producto individual */
.producto-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
}

.producto-imagen {
    flex: 1;
    max-width: 45%;
    text-align: center;
}

/* Imagen del producto */
.producto-imagen img {
    width: 80%; /* Ajusta el tamaño según sea necesario */
    max-width: 450px; /* Tamaño máximo para la imagen */
    margin: 0 auto; /* Centrar la imagen */
    display: block;
}

.producto-detalles {
    flex: 1;
    max-width: 50%;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.producto-titulo {
    font-size: 2em;
    color: #4b2e00;
    text-align: center;
    margin-bottom: 5px; /* Reducir margen inferior */
}

.producto-detalles h1 {
    font-size: 3em;
    color: #4b2e00;
    text-align: center;
    margin-bottom: 5px; /* Reducir margen inferior */
    margin-top: 0px;
}

.producto-detalles p {
    font-size: 1.2em;
    line-height: 1.3; /* Reducir interlineado */
    color: #555;
    margin: 10px 0; /* Reducir márgenes superior e inferior */
}

.producto-propiedades {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px; /* Reducir margen superior */
}

.producto-propiedades th,
.producto-propiedades td {
    border: 1px solid #ddd;
    padding: 6px; /* Reducir padding */
    text-align: center;
}

.producto-propiedades th {
    background-color: #4b2e00;
    color: white;
}

.producto-propiedades tr:nth-child(even) {
    background-color: #f4f4f4;
}

.producto-presentaciones {
    margin-top: 15px; /* Reducir margen superior */
}

.presentaciones-iconos {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* Reducir espacio entre íconos */
}

.presentacion-item img {
    max-width: 60px;
    height: auto;
}

.presentacion-item p {
    margin: 2px 0 0 0; /* Reducir márgenes superior e inferior */
    font-size: 0.9em;
    color: #555;
    text-align: center;
}

/* Beneficios */
.producto-detalles h3 {
    text-align: left;
    color: #4b2e00;
    font-size: 1.5em;
    margin-top: 10px; /* Reducir margen superior */
    margin-bottom: 5px; /* Reducir margen inferior */
}

.producto-aplicaciones {
    list-style-type: "✔ ";
    margin-top: 15px; /* Reducir margen superior */
    color: #555;
}

.producto-aplicaciones li {
    margin-bottom: 5px; /* Reducir margen inferior */
    font-size: 1em;
    line-height: 1.3; /* Reducir interlineado */
}

.two-columns {
    columns: 2; /* O puedes usar column-count: 2; */
    -webkit-columns: 2; /* Para compatibilidad con navegadores webkit */
    -moz-columns: 2; /* Para compatibilidad con navegadores Mozilla */
    column-gap: 20px; /* Espacio entre columnas */
}

.three-columns {
    columns: 3; /* O puedes usar column-count: 2; */
    -webkit-columns: 3; /* Para compatibilidad con navegadores webkit */
    -moz-columns: 3; /* Para compatibilidad con navegadores Mozilla */
    column-gap: 10px; /* Espacio entre columnas */
}