.shik-woo-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.shik-woo-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.shik-woo-table thead {
    background: #f7f7f7;
    border-bottom: 2px solid #e1e1e1;
}

.shik-woo-table thead th {
    padding: 15px 10px;
    text-align: right;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.shik-woo-table tbody tr {
    border-bottom: 1px solid #e1e1e1;
    transition: background-color 0.2s;
}

.shik-woo-table tbody tr:hover {
    background-color: #f9f9f9;
}

.shik-woo-table tbody td {
    padding: 15px 10px;
    text-align: right;
    vertical-align: middle;
}

/* ستون تصویر */
.shik-woo-table .shik-thumbnail {
    width: 80px;
    text-align: center;
}

.shik-woo-table .shik-thumbnail img {
    max-width: 60px;
    height: auto;
    border-radius: 4px;
}

/* ستون عنوان */
.shik-woo-table .shik-title {
    min-width: 200px;
}

.shik-woo-table .shik-title a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.shik-woo-table .shik-title a:hover {
    color: #0073aa;
}

/* ستون قیمت */
.shik-woo-table .shik-price {
    width: 150px;
    font-weight: 600;
    color: #333;
}

.shik-woo-table .shik-price .amount {
    font-size: 16px;
}

/* ستون موجودی */
.shik-woo-table .shik-stock {
    width: 100px;
    text-align: center;
}

.shik-woo-table .shik-stock .in-stock {
    display: inline-block;
    padding: 5px 12px;
    background: #e7f7ed;
    color: #0f834d;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.shik-woo-table .shik-stock .out-of-stock {
    display: inline-block;
    padding: 5px 12px;
    background: #f7e7e7;
    color: #cc1818;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

/* ستون عملیات */
.shik-woo-table .shik-action {
    width: 150px;
    text-align: center;
}

/* مخفی کردن لینک "مشاهده سبد خرید" ووکامرس */
.shik-woo-table .shik-action .added_to_cart {
    display: none !important;
}

.shik-woo-table .shik-quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.shik-woo-table .shik-quantity {
    width: 60px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    direction: ltr;
}

.shik-woo-table .shik-quantity:focus {
    outline: none;
    border-color: #0073aa;
}

.shik-woo-table .shik-add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.shik-woo-table .shik-add-to-cart-btn:hover {
    background: #005a87;
    transform: scale(1.05);
}

.shik-woo-table .shik-add-to-cart-btn:active {
    transform: scale(0.95);
}

.shik-woo-table .shik-add-to-cart-btn.loading {
    opacity: 0.6;
    cursor: wait;
}

.shik-woo-table .shik-add-to-cart-btn svg {
    display: block;
}

.shik-woo-table .shik-action .button.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

/* نوتیفیکیشن */
.shik-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.shik-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.shik-notification-success {
    background: #e7f7ed;
    color: #0f834d;
    border-right: 4px solid #0f834d;
}

.shik-notification-error {
    background: #f7e7e7;
    color: #cc1818;
    border-right: 4px solid #cc1818;
}

/* رسپانسیو */
@media (max-width: 768px) {
    .shik-woo-table {
        font-size: 13px;
    }
    
    .shik-woo-table thead th,
    .shik-woo-table tbody td {
        padding: 10px 5px;
    }
    
    .shik-woo-table .shik-thumbnail {
        width: 60px;
    }
    
    .shik-woo-table .shik-thumbnail img {
        max-width: 50px;
    }
    
    .shik-woo-table .shik-title {
        min-width: 150px;
    }
    
    .shik-woo-table .shik-quantity {
        width: 50px;
        padding: 5px;
        font-size: 13px;
    }
    
    .shik-woo-table .shik-add-to-cart-btn {
        padding: 6px 10px;
    }
    
    .shik-woo-table .shik-add-to-cart-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .shik-notification {
        right: 10px;
        left: 10px;
        top: 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .shik-woo-table {
        display: block;
    }
    
    .shik-woo-table thead {
        display: none;
    }
    
    .shik-woo-table tbody,
    .shik-woo-table tbody tr,
    .shik-woo-table tbody td {
        display: block;
        width: 100%;
    }
    
    .shik-woo-table tbody tr {
        margin-bottom: 15px;
        border: 1px solid #e1e1e1;
        border-radius: 4px;
        padding: 10px;
    }
    
    .shik-woo-table tbody td {
        text-align: right;
        padding: 8px 0;
        border: none;
    }
    
    .shik-woo-table tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        display: inline-block;
        margin-left: 10px;
    }
    
    .shik-woo-table .shik-thumbnail {
        text-align: center;
        width: 100%;
    }
    
    .shik-woo-table .shik-stock,
    .shik-woo-table .shik-action {
        text-align: right;
    }
    
    .shik-woo-table .shik-quantity-wrapper {
        justify-content: flex-start;
    }
}