/* ===== CONTENEDOR PRINCIPAL ===== */
#products {
    max-width: 1100px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    border-top: 6px solid #5b89ae; /* gruta azul */
}

#products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #5b89ae;
}

#products > p {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* ===== TARJETAS DE CATEGORÍA ===== */
.category-section {
    background-color: #fefefe;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.07);
    border-left: 6px solid #cb8e66; /* lirio tigre */
}

.category-section h3 {
    font-size: 26px;
    color: #5b89ae;
    margin-bottom: 10px;
}

.category-section p {
    font-size: 17px;
    color: #444;
    line-height: 1.5;
}

/* ===== IMAGEN ===== */
.category-section img {
    width: 100%;
    max-width: 380px;
    margin: 20px auto;
    display: block;
    object-fit: contain;
    background-color: #ffffff; 
    padding: 15px;
    border-radius: 10px;
}

/* ===== BOTONES ===== */
.category-section button {
    padding: 12px 24px;
    background-color: #5b89ae; /* gruta azul */
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    display: block;
    margin: 10px auto 0 auto;
}

.category-section button:hover {
    background-color: #cb8e66; /* lirio tigre */
}

/* ===== VERSIÓN MÓVIL ===== */
@media (max-width: 768px) {
    #products {
        padding: 20px;
    }

    .category-section img {
        max-width: 90%;
    }

    .category-section h3 {
        font-size: 22px;
    }

    .category-section p {
        font-size: 16px;
    }
}
