/* --- Estilos Generales --- */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f9fbf9; /* Fondo muy claro verdoso */
    color: #333;
}

/* --- Encabezado --- */
header {
    background-color: #2d5a27; /* Verde Bosque */
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.cart-status {
    font-size: 1.1rem;
}

/* --- Banner --- */
.banner {
    background-color: #8db600; /* Verde Manzana */
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 20px;
}

.banner h2 {
    margin: 0;
    font-size: 2.5rem;
}

/* --- Grilla de Productos --- */
#grid-vegetales {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Tarjeta de Producto --- */
.card-verdura {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-verdura:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover; /* Asegura que la imagen no se deforme */
    border-radius: 10px;
    margin-bottom: 15px;
}

.card-verdura h3 {
    margin: 10px 0;
    color: #2d5a27;
}

.unidad {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.precio {
    font-size: 1.4rem;
    color: #e67e22; /* Naranja Zanahoria */
    font-weight: bold;
    margin-bottom: 20px;
}

/* --- Botón --- */
.btn-comprar {
    background-color: #27ae60; /* Verde Botón */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn-comprar:hover {
    background-color: #1e8449;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 30px;
    background-color: #f1f1f1;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}