/* Vender entradas */
.me-vender-page .me-dashboard-container {
    max-width: 820px;
    padding-left: 24px;
    padding-right: 24px;
}

.me-vender-page .me-flow-header {
    margin-bottom: 18px;
}

.me-vender-page .me-dashboard-title {
    margin: 4px 0 0;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.me-vender-page .me-flow-back {
    margin-bottom: 6px;
    font-size: 14px;
    color: #71717a;
}

.me-vender-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: #f5f3ff;
}

.me-vender-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
    color: #7c3aed;
    box-shadow: 0 1px 2px rgba(124, 58, 237, 0.08);
}

.me-vender-banner__title {
    margin: 0 0 2px;
    font-size: 15px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.3;
}

.me-vender-banner__desc {
    margin: 0;
    font-size: 13px;
    color: #52525b;
    line-height: 1.4;
}

.me-vender-section {
    margin-bottom: 22px;
}

.me-vender-section__title {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #71717a;
}

.me-vender-section__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.me-vender-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid #ececf0;
    border-radius: 14px;
    background: #fff;
}

.me-vender-row--on-sale {
    border-color: #e9e5ff;
    background: linear-gradient(180deg, #faf8ff 0%, #fff 60%);
}

.me-vender-row__thumb {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f4f5;
}

.me-vender-row__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.me-vender-row__body {
    flex: 1;
    min-width: 0;
}

.me-vender-row__title {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.3;
}

.me-vender-row__meta,
.me-vender-row__status {
    margin: 0;
    font-size: 13px;
    color: #71717a;
    line-height: 1.4;
}

.me-vender-row__meta--price {
    margin-top: 2px;
    color: #52525b;
}

.me-vender-row__meta--price strong {
    color: #6d28d9;
    font-weight: 650;
}

.me-vender-row__status {
    color: #a1a1aa;
}

.me-vender-row__btn {
    flex-shrink: 0;
    min-width: 88px;
    padding: 9px 16px;
    border: 1.5px solid #7c3aed;
    border-radius: 10px;
    background: #fff;
    color: #7c3aed;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.me-vender-row__btn:hover {
    background: #f5f3ff;
}

.me-vender-row__lock {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #f4f4f5;
    color: #a1a1aa;
}

.me-vender-help {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-top: 8px;
    border: 1px solid #ececf0;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, background 0.15s;
}

.me-vender-help:hover {
    border-color: #ddd6fe;
    background: #fafafa;
}

.me-vender-help__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #7c3aed;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.me-vender-help__body {
    flex: 1;
    min-width: 0;
}

.me-vender-help__title {
    margin: 0 0 2px;
    font-size: 14px;
    font-weight: 700;
    color: #18181b;
}

.me-vender-help__desc {
    margin: 0;
    font-size: 12px;
    color: #71717a;
}

.me-vender-help__chevron {
    flex-shrink: 0;
    color: #7c3aed;
}

/* Listed manage sheet */
.me-listed-sheet {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 12px;
}

.me-listed-sheet[hidden] {
    display: none;
}

.me-listed-sheet__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 20, 0.45);
}

.me-listed-sheet__panel {
    position: relative;
    width: 100%;
    max-width: 560px;
    padding: 20px;
    border-radius: 16px 16px 14px 14px;
    background: #fff;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.me-listed-sheet__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.me-listed-sheet__header-text {
    flex: 1;
    min-width: 0;
}

.me-listed-sheet__title {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #18181b;
    line-height: 1.25;
    padding-right: 4px;
}

.me-listed-sheet__meta {
    margin: 0;
    font-size: 13px;
    color: #71717a;
    line-height: 1.45;
}

.me-listed-sheet__summary {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border: 1px solid #ede9fe;
    border-radius: 12px;
    background: #faf8ff;
}

.me-listed-sheet__summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    line-height: 1.35;
}

.me-listed-sheet__summary-label {
    color: #71717a;
    font-weight: 500;
}

.me-listed-sheet__summary-value {
    color: #18181b;
    font-weight: 650;
    text-align: right;
}

.me-listed-sheet__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.me-listed-sheet__btn,
.me-listed-sheet__actions .me-btn-primary,
.me-listed-sheet__actions .me-btn-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    box-sizing: border-box;
    text-decoration: none;
    line-height: 1.2;
}

.me-listed-sheet__close {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: #f3f4f6;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.me-listed-sheet__close:hover {
    background: #e5e7eb;
    color: #18181b;
}

@media (max-width: 768px) {
    .me-vender-page .me-dashboard-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .me-vender-row {
        gap: 12px;
        padding: 12px 14px;
    }

    .me-vender-row__thumb {
        width: 56px;
        height: 56px;
    }

    .me-vender-row__btn {
        min-width: 80px;
        padding: 8px 12px;
        font-size: 13px;
    }
}
