@charset "utf-8";

/* =====================================================
   SHOP SPECIFIC HEADER
===================================================== */
.shop-header {
    padding: 140px 0 40px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.shop-profile-wrap {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 28px;
}

/* Gradient Border around Logo: 70% Blue, 30% Green */
.shop-logo-box {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 5px; 
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.shop-logo-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    background: var(--off-white);
}

.shop-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shop-name {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 900;
    color: var(--dark-deeper);
    letter-spacing: -1px;
    line-height: 1.1;
}

.shop-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.shop-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--off-white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid rgba(0,0,0,0.04);
}

.shop-stat-badge strong {
    color: var(--dark-deeper);
    font-weight: 800;
}

p.shop-desc {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.8;
    padding: 24px 30px;
    margin-bottom: 40px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media only screen and (max-width: 750px) {
    .shop-profile-wrap {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .shop-stats {
        justify-content: center;
    }
    p.shop-desc {
        text-align: center;
        border-top: 4px solid var(--blue);
        padding: 20px;
    }
}