/* Spacely Front CSS */

.spacely-assistant {
margin: 2rem 0;
padding: 1rem;
border: 1px solid #ccc;
background: #f9f9f9;
border-radius: 8px;
}

.spacely-assistant form {
margin-bottom: 1.5rem;
}

.spacely-assistant select,
.spacely-assistant button {
padding: 0.5rem;
margin-right: 0.5rem;
border-radius: 4px;
border: 1px solid #ccc;
}

.spacely-loader {
margin: 1rem 0;
font-weight: bold;
color: #555;
}

.spacely-resultats {
margin-top: 1.5rem;
}

.spacely-empty,
.spacely-error {
color: #c00;
font-weight: bold;
}

.spacely-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
}

.spacely-product {
width: 200px;
border: 1px solid #ddd;
padding: 10px;
background: #fff;
text-align: center;
border-radius: 6px;
transition: box-shadow 0.2s;
}

.spacely-product:hover {
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.spacely-product img {
max-width: 100%;
height: auto;
}

.spacely-price {
font-weight: bold;
color: #0073aa;
margin-top: 0.5rem;
}