/* Override esthétique pour la page boutique publique
   Complète style.css sans le remplacer */

/* Post grid — ratio carré pour galerie */
.gallery-grid .gallery-item,
.shop-page .post {
    aspect-ratio: 1/1;
}
.shop-page .post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Améliorer le header de la boutique */
.shop-page #header-banner {
    position: relative;
    overflow: hidden;
}

/* Photo de profil : reflet subtil */
.shop-page .profile-picture {
    box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

/* Stat container */
.shop-page .stat-container {
    gap: 20px;
}
.shop-page .stat-data {
    background: rgba(255,255,255,.04);
    border-radius: 10px;
    padding: 10px 20px;
    min-width: 120px;
}

/* Scrollbar fine */
.shop-page ::-webkit-scrollbar { width: 4px; }
.shop-page ::-webkit-scrollbar-track { background: transparent; }
.shop-page ::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
