/**
 * FastShop Products List View (DataTable)
 * استایل نمایش لیستی محصولات
 * @version 3.0.1
 */

/* DataTable Container */
#fastshop-products {
    width: 100% !important;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Table Styling */
#fastshop-products thead {
    background: var(--gray-100);
}

#fastshop-products thead th {
    padding: var(--spacing-lg);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gray-800);
    border-bottom: 2px solid var(--gray-300);
}

#fastshop-products tbody td {
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

#fastshop-products tbody tr {
    transition: background var(--transition-fast);
    cursor: pointer;
}

#fastshop-products tbody tr:hover {
    background: var(--gray-50);
}

#fastshop-products tbody tr.selected-row {
    background: rgba(204, 30, 30, 0.05);
    border-right: 3px solid var(--fire-red);
}

/* Checkbox Column */
.select-column {
    width: 50px !important;
}

.product-select {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--fire-red);
}

#select-all {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--fire-red);
}

/* Image Column */
.image-column {
    width: 90px !important;
}

.image-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.fs-thumbnail {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.fs-thumbnail:hover {
    transform: scale(1.1);
}

.no-image {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* Name Column */
.name-column {
    min-width: 250px;
}

.product-name-cell {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.product-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-900);
    text-decoration: none;
    transition: color var(--transition-fast);
    line-height: 1.4;
}

.product-title:hover {
    color: var(--fire-red);
}

.product-sku {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Description Column */
.description-column {
    min-width: 200px;
}

.short-description-cell {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Brand Column */
.brand-column {
    width: 120px;
}

/* Price Column */
.price-column {
    width: 140px;
}

.price-cell {
    font-size: 16px;
    font-weight: 700;
    color: var(--fire-red);
}

/* Cart Column */
.cart-column {
    width: 200px !important;
}

.cart-cell {
    display: flex;
    flex-direction: column;
    ga: var(--spacing-sm);
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
