* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* ========== PROFIL TOKO (STORE HEADER) ========== */
.store-header-bg {
    background-color: #ffffff;
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.shopee-profile-wrapper {
    display: flex;
    background-color: transparent;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Kotak abu-abu kiri */
.profile-card-left {
    background-color: #5a5a5a;
    color: #ffffff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    width: 380px;
    flex-shrink: 0;
}

/* Logo dan badge */
.store-logo-group {
    position: relative;
    width: 75px;
    height: 75px;
    margin-right: 15px;
}

.store-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}

.mall-badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d0011b;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 2px;
    white-space: nowrap;
}

/* Info toko (nama, status) */
.store-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-name {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 4px 0;
}

.store-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Statistik kanan (grid) */
.store-stats-right {
    flex-grow: 1;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
    column-gap: 30px;
    align-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.stat-icon {
    width: 20px;
    color: #757575;
    margin-right: 10px;
    font-size: 16px;
    text-align: center;
}

.stat-label {
    color: #333333;
    margin-right: 5px;
}

.stat-value,
.stat-detail {
    color: #ee4d2d;
}

/* ========== RESPONSIF MOBILE ========== */
@media (max-width: 768px) {
    .shopee-profile-wrapper {
        flex-direction: column !important;
        margin: auto !important;
    }

    .profile-card-left {
        width: 100% !important;
        max-width: 100% !important;
        flex-shrink: 1 !important;
        padding: 15px !important;
    }

    .store-stats-right {
        grid-template-columns: 1fr !important;
        column-gap: 0 !important;
    }

    .store-header-bg {
        width: 100% !important;
        overflow-x: hidden !important;
    }
}