/* style.css - Identitat Visual Aladim B2B */

:root {
    --cor-principal: #0d6efd;
    --cor-secundaria: #6c757d;
    --cor-fundo: #f8f9fa;
    --cor-texto: #333;
    --radius-padrao: 12px;
    --sombra-suave: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body {
    background-color: var(--cor-fundo);
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: var(--cor-texto);
}

/* Padronització de Cards (Vitrines i llistats) */
.card {
    border: none !important;
    border-radius: var(--radius-padrao);
    box-shadow: var(--sombra-suave);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Títols de Secció amb detall a l'esquerra */
.section-title {
    font-weight: 700;
    border-left: 5px solid var(--cor-principal);
    padding-left: 15px;
    margin-bottom: 25px;
}

/* Botons Arrodonits */
.btn {
    border-radius: 8px;
    padding: 8px 20px;
    font-weight: 600;
}

/* Miniatures d'imatges */
.img-thumb-mini {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
}

/* Badge de Vitrina */
.badge-vitrine {
    background-color: var(--cor-principal);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
}