/* AEM Labs Limited - Seller Shop Base CSS */
/* ======================================= */

.seller-hero-container {
    padding: 0;
    width: 100%;
    background-color: #f8f8f8;
}

.seller-hero-section {
    max-width: min(85%, var(--section-max-width));
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 30px;
}

.seller-hero-banner {
    position: relative;
    height: 15vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.seller-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.seller-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.seller-profile-section {
    position: relative;
    padding: 0 40px 25px 40px;
    margin-top: -60px;
    z-index: 2;
}

.seller-profile-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    min-height: 140px;
}

.seller-profile-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.seller-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: white;
}

.seller-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.verified-badge i {
    color: rgb(39, 174, 96);
    box-shadow: 0 0 12px rgba(0, 184, 148, 0.5);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 600;
}

.seller-info {
    margin-top: 5.5%;
    flex: 1;
    min-width: 0;
    padding-right: 20px;
}

.seller-profile-section .seller-name {
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.seller-info h1 {
    color: black;
    font-size: 24px;
    font-weight: 700;
}

.seller-id-badge {
    font-size: 11px;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.seller-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.seller-rating {
    display: flex;
    align-items: center;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffa500;
    font-size: 13px;
}

.rating-text {
    color: #666;
    font-size: 11px;
    font-weight: 500;
}

.seller-details {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 11px;
    font-weight: 500;
}

.seller-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.seller-details i {
    font-size: 11px;
    color: #999;
}

.seller-profile-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
    margin-top: 2.8%;
    min-width: 320px;
}

.seller-actions {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: flex-end;
}

.btn {
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    min-width: 120px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #d64545);
    color: white;
    box-shadow: 0 4px 12px rgba(167, 28, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(167, 28, 28, 0.4);
}

.btn-outline {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.seller-stats {
    display: flex;
    gap: 40px;
    text-align: center;
    width: 100%;
    justify-content: flex-end;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

.stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1440px) {
    .seller-hero-banner {
        height: 13vh;
    }

    .seller-profile-section {
        padding: 0 30px 15px 30px;
    }

    .seller-avatar {
        width: 80px;
        height: 80px;
        margin-top: 3%;
    }

    .verified-badge {
        width: 20px;
        height: 20px;
        right: -4px;
    }

    .verified-badge i {
        font-size: 18px;
    }

    .seller-info {
        margin-top: 9.5%;
    }

    .seller-profile-section .seller-name {
        margin: 0 0 6px 0;
    }

    .seller-id-badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .stars,
    .rating-text {
        font-size: 12px;
    }

    .seller-profile-right {
        margin-top: 4%;
        gap: 12px;
    }

    .btn {
        padding: 6px 16px;
        font-size: 12px;
        min-width: fit-content;
        border-radius: 12px;
    }

    .seller-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 15px;
    }

    .stat-label {
        font-size: 10px;
    }
}

@media (max-width: 992px) {
    .seller-profile-section {
        padding: 0 20px 15px 20px;
    }

    .seller-hero-banner {
        height: 7vh;
    }

    .seller-avatar {
        width: 70px;
        height: 70px;
        margin-top: 6%;
    }

    .verified-badge {
        width: 18px;
        height: 18px;
        bottom: -3px;
        right: -3px;
    }

    .seller-info {
        margin-top: 15%;
    }

    .seller-info h1 {
        font-size: 20px;
    }

    .seller-profile-section .seller-name {
        margin: 0 0 4px 0;
    }

    .seller-id-badge {
        font-size: 10px;
        padding: 2px 8px;
    }

    .stars,
    .rating-text {
        font-size: 11px;
    }

    .seller-details {
        font-size: 11px;
        gap: 10px;
    }

    .seller-profile-right {
        min-width: fit-content;
        margin-top: 6.5%;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .seller-hero-section {
        margin: 10px auto 20px;
        max-width: min(90%, var(--section-max-width))
    }

    .seller-avatar {
        width: 64px;
        height: 64px;
        margin-top: 8%;
    }

    .verified-badge {
        width: 16px;
        height: 16px;
        bottom: -2px;
        right: -2px;
    }

    .seller-info {
        margin-top: 15%;
    }

    .btn {
        padding: 6px 14px;
        font-size: 11px;
        border-radius: 10px;
    }

    .seller-profile-right {
        margin-top: 7%;
    }

    .stat-number {
        font-size: 14px;
    }

    .stat-label {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .seller-hero-section {
        max-width: min(95%, var(--section-max-width));
    }

    .seller-profile-section {
        padding: 0 20px 20px 20px;
    }

    .seller-profile-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .seller-hero-banner {
        height: 12vh;
    }

    .seller-profile-left {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        display: flex;
        width: 100%;
    }

    .seller-info {
        margin-top: -3%;
        padding: 0;
        width: 100%;
    }

    .seller-avatar {
        width: 64px;
        height: 64px;
        border: 2px solid #fff;
        margin-top: 5%;
    }

    .verified-badge {
        width: 10px;
        height: 10px;
        bottom: 2px;
        right: 2px;
    }

    .verified-badge i {
        font-size: 16px;
    }

    .seller-info h1 {
        font-size: 20px;
    }

    .seller-id-badge {
        font-size: 8px;
        padding: 2px 8px;
    }

    .seller-meta {
        gap: 10px;
        flex-direction: row;
        justify-content: space-between;
    }

    .stars,
    .rating-text,
    .member-since,
    .location {
        font-size: 9px;
    }

    .seller-details i {
        font-size: 10px;
    }

    .seller-details {
        font-size: 10px;
        gap: 10px;
    }

    .seller-details span {
        gap: 4px;
    }

    .seller-profile-right {
        margin-top: 0;
        flex-direction: row;
        align-items: center;
    }

    .seller-stats {
        order: -1;
    }

    .btn {
        padding: 2px 10px;
        font-size: 9px;
        border-radius: 8px;
    }

    .btn i {
        font-size: 9px;
    }

    .stat-number {
        font-size: 10px;
    }

    .stat-label {
        font-size: 7px;
    }

    .seller-stats {
        gap: 10px;
    }

    .seller-actions {
        gap: 8px;
    }
}