/* ==============================================
   SHOP PROFILE MODERN PREMIUM
   ============================================== */

body {
    background: #F8FAFC !important;
}

.sellers-shop-hero {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #EEF2F6;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    padding: 32px 40px;
}

.sellers-shop-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(135deg, rgba(67, 178, 125, 0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.sellers-shop-hero__layout {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.sellers-shop-hero__main {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sellers-shop-hero__logo-wrap {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 100px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #EEF2F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sellers-shop-hero__logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sellers-shop-hero__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.sellers-shop-hero__title {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin: 0;
}

.sellers-shop-hero__action--complaint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748B;
    background: #F1F5F9;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sellers-shop-hero__action--complaint:hover {
    background: #E2E8F0;
    color: #475569;
}


/* Tabs modern */
.sellers-shop-tabs__nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
}

.sellers-shop-tabs__button {
    padding: 8px 18px;
    border-radius: 100px;
    color: #475569;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sellers-shop-tabs__button:hover {
    color: #0F172A;
    background: #F8FAFC;
    text-decoration: none;
}

.sellers-shop-tabs__button.is-active {
    background: #0F172A;
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(15,23,42,0.2);
}

/* Detail Panels */
.sellers-shop-tabs__panel {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #EEF2F6;
}

.sellers-shop-tabs__panel-title {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
}

/* Company Content Layout */
.sellers-shop-company {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.sellers-shop-company__section {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid #EEF2F6;
}

.sellers-shop-company__section-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-top: 0;
    margin-bottom: 24px;
}

/* Contacts layout */
.sellers-shop-company__contacts {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.sellers-shop-company__contact-row {
    background: #F8FAFC;
    border: 1px solid #EEF2F6;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sellers-shop-company__contact-icon {
    color: #43B27D;
    background: #EDFDF4;
    padding: 10px !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex-shrink: 0;
}
.sellers-shop-company__contact-icon svg {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    flex-shrink: 0;
}

.sellers-shop-company__contact-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sellers-shop-company__contact-label,
.sellers-shop-company__contact-meta {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
}

.sellers-shop-company__contact-secondary {
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    line-height: 1.4;
}

.sellers-shop-company__contact-link--phone {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
    cursor: pointer;
}

/* Requisites */
.sellers-shop-company__details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.sellers-shop-company__detail-row {
    background: #F8FAFC;
    border: 1px solid #EEF2F6;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sellers-shop-company__detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sellers-shop-company__detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    line-height: 1.4;
    word-break: break-word;
}

/* Description Text */
.sellers-shop-company__description {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}
.sellers-shop-company__description p {
    margin-bottom: 1em;
}

/* Mobile responsiventss */
@media (max-width: 991px) {
    .sellers-shop-hero__layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .sellers-shop-hero__main {
        flex-direction: column;
    }
    .sellers-shop-hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .sellers-shop-hero__action {
        width: 100%;
        justify-content: center;
    }
    .sellers-shop-hero__action-text {
        align-items: center;
    }
}
