.client-products-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* HEADER */
.client-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.client-products-title {
    font-size: 24px;
}

/* BOTÃO NOVO */
.client-products-new-btn {
    padding: 10px 16px;
    background: #3483FA;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

/* TABELA */
.client-products-table-wrapper {
    background: #fff;
    padding: 16px;
    border-radius: 4px;
}

.client-products-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.client-products-table th {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.client-products-table td {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

/* PRODUTO */
.client-products-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-products-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
}

/* STATUS */
.client-products-status {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 12px;
    font-weight: bold;
}

.client-products-status.active {
    background: #e6f4ea;
    color: #1e8e3e;
}

.client-products-status.inactive {
    background: #fdecea;
    color: #c0392b;
}

/* AÇÕES */
.client-products-action {
    padding: 6px 12px;
    font-size: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.client-products-action.edit {
    background: #f5f5f5;
}

.box_mobile{
    background-color: #fff;
    padding: 10px;
}

.option_box_mobile{
    margin: 10px 0;
}
