/* Estilos para El Reventón Cochabambino */
:root {
    --primary-color: #e74c3c;  /* Rojo para "Reventón" */
    --secondary-color: #2c3e50; /* Azul oscuro */
    --accent-color: #f39c12;    /* Amarillo para ofertas */
}

/* Header personalizado */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
}

/* Badges para productos mayoristas */
.wholesale-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

/* Precios mayoristas */
.wholesale-price {
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
}

.regular-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9em;
    margin-left: 10px;
}

/* Dashboard de vendedor */
.vendor-dashboard {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

/* Botones B2B */
.btn-b2b {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-b2b:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Catálogo mayorista */
.wholesale-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

/* Tarjetas de productos */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

/* Cantidades mínimas */
.min-qty-notice {
    background: #f39c12;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 768px) {
    .wholesale-catalog {
        grid-template-columns: 1fr;
    }
}
