/*===========================
// STORE PROFILE
// Styles d'origine pour l'en-tête (Cover, Avatar, Titres et Stats)
//===========================*/
.asp-store-profile-wrapper {
    margin-top: -15px;
}

.asp-store-profile-cover {
    width: 100%;
    height: 150px; 
    background-size: cover;    
    background-position: center; 
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
}

.asp-store-profile-avatar-details-group {
    margin-top: 10px;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

.asp-store-profile-avatar-container {
    margin-right: 10px;
}

@media (min-width:601px) {
    .asp-store-profile-details-container {
        margin-top: 10px;
    }
}

.asp-store-profile-avatar {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.asp-store-profile-display-name {
    font-size: 18px;
    font-weight: 700;
}

@media (max-width:600px) {
    .asp-store-profile-cover {
        border-radius: 5px;
        height: 90px;
    }
    .asp-store-profile-avatar {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
    }
}

.asp-store-profile-slug {
    margin-top: -4px;
    margin-bottom: -3px;
}

.asp-store-profile-stats {
    display: flex;
    font-size: 13px;
}

.asp-store-profile-stat-number {
    font-weight: inherit;
}

.asp-store-profile-stat-label {
    font-weight: inherit;
}

.asp-store-profile-stats-separator {
    margin-left: 7px;
    margin-right: 5px;
}

/*===========================
// STORE DETAILS
// Styles du contenu d'informations (Titres, Méta-groupes et liens)
//===========================*/
.asp-store-details-section-title {
    font-weight: 700;
    font-size: 18px;
}

.asp-store-details-bio-container p {
    /*margin: 0px !important;*/
    color: #949ea7 !important;
}

.asp-store-details-learn-more-text {
    color: #949ea7 !important;
}

.asp-store-details-meta-url-group,
.asp-store-details-meta-country-group,
.asp-store-details-meta-registration-group {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

/*===========================
// STORE POPUP
// Styles d'origine de la boîte modale (Conteneur, Positionnement et Thème Sombre)
//===========================*/
.asp-store-popup-wrapper {
    display: none; 
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: rgba(0,0,0,0.7);
}

.asp-store-popup-wrapper.is-open {
    display: flex;
}

.asp-store-popup-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 85%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
    background-color: #FFFFFF; 
    color: #212121;
}

.dark .asp-store-popup-container {
    background-color: #111418; 
    color: #FFFFFF;
}

@media (min-width: 721px) {
    .asp-store-popup-wrapper.is-open { 
        align-items: center; 
    }
    .asp-store-popup-container {
        width: 530px;
        height: 80%;
        border-radius: 15px;
    }
}

.asp-store-popup-header {
    flex-shrink: 0;
    height: 50px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DBDFEA;
}

.dark .asp-store-popup-header {
    border-bottom: 1px solid #404555;
}

.asp-store-popup-header-title {
    font-weight: 700;
    font-size: 22px;
}

.asp-store-popup-header-close-button {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.asp-store-popup-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    scrollbar-width: thin;
}