/* ------------------------------ GRID BOTIGAL--------------------------------------------- */
.mad_grid_productes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.mad_grid_item {
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    background: #fff;
    transition: transform 0.3s;
    box-shadow: 0 0 10px #e0e0e0;
}

.mad_grid_item:hover {
    transform: translateY(-5px);
}

.mad_grid_img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto 10px;
}

.mad_grid_title {
    font-size: 1.1rem;
    margin: 10px 0;
}

.mad_grid_quantitat,
.mad_grid_preu {
    font-size: 0.95rem;
    margin: 5px 0;
}

/* ------------------------------ FITXA INDIVIDUAL--------------------------------------------- */
/* Ficha individual Botiga - layout con imagen a la izquierda */
.mad_botiga_ficha {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mad_botiga_imagen {
    flex: 1 1 300px;
    max-width: 400px;
}

.mad_botiga_imagen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.mad_botiga_info {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
}

.mad_botiga_title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.mad_botiga_info p {
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.5;
}

.mad_botiga_info strong {
    font-weight: 600;
}

.mad_botiga_descripcio,
.mad_botiga_condicions {
    margin-top: 15px;
}

.mad_botiga_galeria {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.mad_botiga_galeria_item {
    flex: 1 1 150px;
    max-width: 200px;
}

.mad_botiga_galeria_item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
    display: block;
}
p.mad_botiga_preu {
    color: var(--accent);
    font-size: 24px;
}
/* Contacto y enlaces */
.mad_botiga_contacte a {
    color: #0073aa;
    text-decoration: none;
}

.mad_botiga_contacte a:hover {
    text-decoration: underline;
}

/* Precio, cantidad y fecha */
.mad_botiga_preu,
.mad_botiga_iva,
.mad_botiga_data_exp,
.mad_botiga_quantitat {
    font-size: 1rem;
    margin: 5px 0;
}

/* Responsive */
@media (max-width: 992px) {
    .mad_botiga_ficha {
        flex-direction: column;
    }

    .mad_botiga_imagen,
    .mad_botiga_info {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .mad_botiga_galeria_item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
