/* Variables de diseño */
:root {
    --primary-color: #d35400; /* Color naranja principal */
    --bg-color: #fdfbf7;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    text-align: center;
}

.intro-text {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: justify;
    font-size: 0.95em;
}

/* Contenedor flexible adaptable a PC y Móvil */
.catalogo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Tarjetas de producto */
.producto-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

.producto-card:hover {
    transform: translateY(-5px);
}

.producto-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.producto-titulo {
    font-size: 1.2em;
    margin: 15px 0 5px;
    color: var(--primary-color);
}

.producto-precio {
    font-size: 1.3em;
    font-weight: bold;
    margin: 10px 0;
}

.producto-desc {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

/* Botón estilo WhatsApp */
.btn-comprar {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.btn-comprar:hover {
    background-color: #128C7E;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}