.ub-my-products-list {
    padding: 0 16px;
}

.ub-my-product-card {
    width: 100%;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    text-align: left;
    box-shadow: 0 8px 18px rgba(24, 35, 52, 0.08);
    transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ub-my-product-card:active {
    transform: translateY(1px);
}

.ub-my-product-main {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ub-my-product-thumb {
    width: 68px;
    height: 68px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
    background: #f2f4f7;
}

.ub-my-product-content {
    min-width: 0;
    flex: 1 1 auto;
}

.ub-my-product-title {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    color: #1f2630;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ub-my-product-stock {
    margin: 3px 0 0;
    font-size: 12px;
    color: #667080;
}

.ub-my-status-chip {
    display: inline-flex;
    align-items: center;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.ub-my-status-chip-active {
    background: #e6f7ec;
    color: #1f8c44;
}

.ub-my-status-chip-inactive {
    background: #edf0f3;
    color: #4a5566;
}

.ub-my-status-chip-sold_out {
    background: #fdecec;
    color: #bf2f2f;
}

.ub-my-status-chip-draft {
    background: #fff3e6;
    color: #bf6b13;
}

.ub-my-product-price {
    flex: 0 0 auto;
    margin-left: 6px;
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.ub-my-product-price .price-cents {
    font-size: 12px;
    font-weight: 700;
}

.ub-my-products-create-wrap {
    padding: 0 16px;
}

.ub-my-products-create-btn {
    background: #f15a24;
    color: #fff;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 10px 20px rgba(241, 90, 36, 0.3);
}

.ub-my-detail-close {
    border: 0;
    background: transparent;
    color: #6a7281;
    font-size: 20px;
    line-height: 1;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.ub-my-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.ub-my-detail-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.ub-my-detail-sub {
    margin: 4px 0 0;
    font-size: 13px;
    color: #6c7685;
}

.ub-my-detail-main {
    display: flex;
    gap: 14px;
    margin: 10px 0 12px;
    align-items: center;
}

.ub-my-detail-image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #e7ebf1;
    background: #f2f4f7;
    flex: 0 0 150px;
}

.ub-my-detail-meta {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.ub-my-detail-item {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.ub-my-detail-label {
    display: block;
    margin: 0 0 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #778194;
}

.ub-my-detail-value {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1c2430;
    line-height: 1.2;
}

.ub-my-detail-value .ub-my-status-chip {
    margin-top: 0;
}

.ub-my-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ub-my-detail-actions .btn {
    width: 100%;
}

.ub-my-btn-danger {
    background: #c62828 !important;
    color: #fff !important;
}

.ub-my-btn-cancel {
    background: #edf1f5 !important;
    border: 1px solid #e1e6ed !important;
    color: #29303d !important;
    box-shadow: inset 0 -1px 0 rgba(29, 41, 57, 0.05);
}

@media (max-width: 360px) {
    .ub-my-detail-main {
        flex-direction: column;
        align-items: stretch;
    }

    .ub-my-detail-image {
        width: 100%;
        height: 180px;
        flex: none;
    }

    .ub-my-detail-actions {
        grid-template-columns: 1fr;
    }
}
