.wom-container,
.wom-quotations-container,
.wom-quotation-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.wom-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.wom-page-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.wom-page-title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.wom-page-description {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
}

.wom-page-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    line-height: 1;
}

.wom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wom-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.wom-btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
}

.wom-btn-secondary {
    background: white;
    color: #667eea;
    border: 1px solid #667eea;
}

.wom-btn-secondary:hover {
    background: #f8f9fa;
    color: #5a6fd8;
}

.wom-btn-success {
    background: #28a745;
    color: white;
}

.wom-btn-success:hover {
    background: #218838;
}

.wom-btn-danger {
    background: #dc3545;
    color: white;
}

.wom-btn-danger:hover {
    background: #c82333;
}

.wom-btn-small {
    padding: 6px 12px;
    font-size: 12px;
}

.wom-btn-print {
    background: #6c757d;
    color: white;
}

.wom-btn-print:hover {
    background: #5a6268;
}

.wom-products-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 6px 30px 6px;
    margin-bottom: 30px;
}

.wom-table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #eee;
}

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

.wom-products-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.wom-products-table th {
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    border: none;
    white-space: nowrap;
}

.wom-products-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.wom-products-table tbody tr:hover {
    background: #f8f9fa;
}

.wom-products-table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

.wom-product-sku-cell {
    text-align: center;
}

.wom-sku-badge {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-family: monospace;
}

.wom-product-info-cell {
    text-align: right;
}

.wom-product-info {
    max-width: 300px;
    margin: 0 auto;
}

.wom-product-name {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.wom-product-desc {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.wom-min-qty-cell {
    font-weight: 600;
    color: #333;
}

.wom-price-cell {
    font-weight: 600;
    color: #28a745;
}

.wom-quantity-cell {
    min-width: 150px;
}

.wom-quantity-input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.wom-quantity-input {
    width: 100px;
    padding: 8px 12px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wom-quantity-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.wom-quantity-hint {
    font-size: 11px;
    color: #6c757d;
}

.wom-form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wom-total-preview {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.wom-total-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.wom-total-label {
    font-size: 12px;
    color: #666;
}

.wom-total-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

#wom-subtotal-preview {
    color: #28a745;
}

.wom-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.wom-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.wom-loading .spinner {
    float: none;
    margin: 0;
}

.wom-quotations-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wom-quotations-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.wom-quotations-table th {
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 500;
    border: none;
}

.wom-quotations-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.wom-quotations-table tbody tr:hover {
    background: #f8f9fa;
}

.wom-quotations-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.wom-quotation-number-cell {
    font-family: monospace;
    font-weight: 600;
    color: #333;
}

.wom-quotation-date-cell {
    text-align: center;
}

.wom-quotation-date {
    font-weight: 600;
    color: #333;
}

.wom-quotation-time {
    font-size: 12px;
    color: #666;
}

.wom-quotation-status-cell {
    text-align: center;
}

.wom-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.wom-status-pending {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.wom-status-reviewed {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.wom-status-confirmed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wom-status-converted {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.wom-status-cancelled {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.wom-order-link small {
    margin-top: 5px;
    display: block;
}

.wom-order-link a {
    color: #667eea;
    text-decoration: none;
    font-size: 12px;
}

.wom-order-link a:hover {
    text-decoration: underline;
}

.wom-quotation-total-cell {
    text-align: center;
}

.wom-quotation-total {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.wom-quotation-discount small {
    color: #dc3545;
    font-size: 12px;
}

.wom-quotation-actions-cell {
    text-align: center;
}

.wom-quotation-actions {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.wom-quotations-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.wom-stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.wom-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.wom-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.wom-stat-icon-total {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.wom-stat-icon-pending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
}

.wom-stat-icon-confirmed {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.wom-stat-icon-amount {
    background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
}

.wom-stat-content {
    flex: 1;
}

.wom-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.wom-stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wom-quotation-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.wom-summary-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.wom-summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #667eea;
    font-size: 20px;
}

.wom-summary-content {
    flex: 1;
}

.wom-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.wom-summary-row:last-child {
    border-bottom: none;
}

.wom-summary-label {
    color: #666;
    font-size: 14px;
}

.wom-summary-value {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.wom-summary-total .wom-summary-value {
    font-size: 18px;
    color: #28a745;
    font-weight: 600;
}

.wom-items-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wom-section-title {
    font-size: 20px;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

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

.wom-items-table thead {
    background: #f8f9fa;
}

.wom-items-table th {
    padding: 12px 15px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #dee2e6;
}

.wom-items-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.wom-items-table tbody tr:hover {
    background: #f8f9fa;
}

.wom-items-table td {
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
}

.wom-item-index {
    font-weight: 600;
    color: #666;
}

.wom-item-name {
    text-align: right;
    max-width: 300px;
}

.wom-item-info h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.wom-item-price,
.wom-item-total {
    font-weight: 600;
    color: #333;
}

.wom-items-table tfoot {
    background: #f8f9fa;
    font-weight: 600;
}

.wom-footer-label {
    text-align: left;
    padding: 15px;
    color: #333;
}

.wom-footer-value {
    text-align: center;
    padding: 15px;
    color: #333;
}

.wom-total-row .wom-footer-value {
    font-size: 18px;
    color: #28a745;
}

/* بخش یادداشت */
.wom-notes-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wom-notes-box {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 8px;
    padding: 20px;
    border-right: 4px solid #0073aa;
}

.wom-notes-content {
    color: #333;
    line-height: 1.8;
    white-space: pre-line;
    font-size: 14px;
}

.wom-quotation-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.wom-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wom-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #667eea;
}

.wom-empty-state h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
}

.wom-empty-state p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

.wom-error-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 40px auto;
}

.wom-error-message .dashicons {
    font-size: 60px;
    color: #dc3545;
    margin-bottom: 20px;
}

.wom-error-message h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 24px;
}

.wom-error-message p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .wom-container,
    .wom-quotations-container,
    .wom-quotation-detail {
        padding: 15px;
    }
    
    .wom-page-header {
        padding: 20px;
    }
    
    .wom-page-title {
        font-size: 22px;
    }
    
    .wom-page-actions {
        flex-direction: column;
    }
    
    .wom-btn {
        width: 100%;
        justify-content: center;
    }
    
    .wom-quotations-stats {
        grid-template-columns: 1fr;
    }
    
    .wom-quotation-summary {
        grid-template-columns: 1fr;
    }
    
    .wom-items-section,
    .wom-notes-section {
        padding: 20px;
    }
    
    .wom-quotation-actions {
        flex-direction: column;
    }
    
    .wom-quotation-actions .wom-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .wom-products-table th,
    .wom-products-table td,
    .wom-quotations-table th,
    .wom-quotations-table td,
    .wom-items-table th,
    .wom-items-table td {
        padding: 8px;
        font-size: 12px;
    }
    
    .wom-total-preview {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .wom-form-actions {
        flex-direction: column;
    }
    
    .wom-form-actions .wom-btn {
        width: 100%;
        justify-content: center;
    }
}

.wom-accordion-root {
    margin-top: 10px;
}

.wom-accordion-item {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
}

.wom-accordion-item .wom-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    border: none;
    cursor: pointer;
    text-align: right;
}

.wom-cat-item > .wom-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.wom-subcat-item > .wom-accordion-header {
    background: #f7f7f8;
    color: #333;
}

.wom-accordion-title {
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
}

.wom-subcat-item .wom-accordion-title {
    font-size: 18px;
    font-weight: 700;
}

.wom-accordion-icon {
    width: 26px;
    height: 26px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    left:30px;
}

.wom-accordion-body {
    padding: 16px 16px 10px 16px;
    background: #fff;
}

.wom-accordion-nested {
    margin: 0;
}

.wom-accordion-nested .wom-accordion-item {
    border-radius: 10px;
}

.wom-accordion-nested .wom-accordion-body {
    padding: 14px;
}

.wom-product-link {
    color: inherit;
    text-decoration: none;
}

.wom-product-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .wom-accordion-title { font-size: 18px; }
    .wom-subcat-item .wom-accordion-title { font-size: 16px; }
    .wom-accordion-item .wom-accordion-header { padding: 16px 14px; }
    .wom-accordion-body { padding: 14px 12px 8px 12px; }
}

.wom-accordion-root {
    margin-top: 10px;
}

.wom-accordion-item {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
}

.wom-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    border: none;
    text-align: right;
    direction: rtl;
    transition: all 0.2s ease;
}

.wom-cat-item > .wom-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
}

.wom-subcat-item > .wom-accordion-header {
    background: #f8f9fa;
    color: #2c2c2c;
    font-size: 18px;
    font-weight: 700;
}

.wom-subcat-item {
    margin: 8px 12px;
    border-radius: 12px;
}

.wom-subcat-item.wom-direct-products > .wom-accordion-header {
    background: #eef2ff;
}

.wom-accordion-title {
    flex: 1;
}

.wom-accordion-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-right: 6px;
    opacity: 0.9;
}

.wom-accordion-item.is-open > .wom-accordion-header .wom-accordion-icon {
    transform: rotate(225deg);
}

.wom-accordion-body {
    background: #fff;
    padding: 12px 14px 16px;
}

.wom-cat-item > .wom-accordion-body {
    padding: 14px 0 10px;
    background: #fff;
}

.wom-accordion-nested {
    padding: 0;
}

.wom-products-table--accordion {
    margin: 0;
}

.wom-products-table--accordion thead {
    position: sticky;
    top: 0;
}

.wom-product-link {
    color: inherit;
    text-decoration: none;
}

.wom-product-link:hover {
    text-decoration: underline;
}

.wom-accordion-item.is-filter-hidden {
    display: none;
}

#wom-wholesale-accordion details > summary::-webkit-details-marker {
    display: none;
}

#wom-wholesale-accordion details > summary {
    list-style: none;
}

#wom-wholesale-accordion details[open] > .wom-accordion-header .wom-accordion-icon,
#wom-wholesale-accordion details[open] > summary.wom-accordion-header .wom-accordion-icon {
    transform: rotate(225deg);
}

@media screen and (max-width: 768px) {
    .wom-cat-item > .wom-accordion-header {
        font-size: 18px;
        padding: 14px 14px;
    }

    .wom-subcat-item > .wom-accordion-header {
        font-size: 16px;
        padding: 12px 12px;
    }

    .wom-subcat-item {
        margin: 8px 10px;
    }

    .wom-accordion-body {
        padding: 12px 12px 14px;
    }
}

.wom-accordion-root {
    margin-top: 10px;
}

.wom-accordion-item {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    background: #fff;
}

.wom-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    cursor: pointer;
    border: 0;
    outline: none;
    text-align: right;
}

.wom-cat-item > .wom-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.wom-subcat-item > .wom-accordion-header {
    background: #f8f9fa;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid #eee;
}

.wom-accordion-title {
    display: block;
    line-height: 1.4;
}

.wom-accordion-icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex: 0 0 22px;
}

.wom-accordion-body {
    background: #fff;
    padding: 12px 14px 16px 14px;
    border-top: 1px solid #f1f1f1;
}

.wom-cat-item > .wom-accordion-body {
    background: #fff;
}

.wom-accordion-nested {
    display: grid;
    gap: 8px;
}

.wom-accordion-nested .wom-accordion-item {
    border-radius: 10px;
    margin-bottom: 0;
}

.wom-accordion-nested .wom-accordion-body {
    padding: 10px 12px 14px 12px;
}

.wom-product-link {
    color: inherit;
    text-decoration: none;
}

.wom-product-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .wom-cat-item > .wom-accordion-header {
        font-size: 18px;
        padding: 16px 16px;
    }

    .wom-subcat-item > .wom-accordion-header {
        font-size: 16px;
        padding: 14px 16px;
    }

    .wom-accordion-body {
        padding: 10px 10px 12px 10px;
    }
}

details.wom-accordion-item > summary.wom-accordion-header {
    list-style: none;
}

details.wom-accordion-item > summary.wom-accordion-header::-webkit-details-marker {
    display: none;
}

details.wom-accordion-item > summary.wom-accordion-header::marker {
    content: '';
}

details.wom-accordion-item[open] > summary.wom-accordion-header .wom-accordion-icon {
    transform: rotate(225deg);
}

details.wom-accordion-item.is-open > summary.wom-accordion-header .wom-accordion-icon {
    transform: rotate(225deg);
}

#wom-wholesale-accordion.wom-accordion-root {
    margin-top: 16px;
}

#wom-wholesale-accordion .wom-accordion-item {
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: #ffffff;
    margin-bottom: 12px;
    overflow: hidden;
}

#wom-wholesale-accordion .wom-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 6px 16px 6px;
    background: #1455ff;
    cursor: pointer;
    user-select: none;
    font-weight: 700;
    line-height: 1.6;
}

#wom-wholesale-accordion summary.wom-accordion-header::-webkit-details-marker { display: none; }
#wom-wholesale-accordion summary.wom-accordion-header::marker { content: ""; }

#wom-wholesale-accordion .wom-accordion-title {
    font-size: 20px;
    color: inherit;
}

#wom-wholesale-accordion .wom-accordion-icon {
    width: 8px;
    height: 10px;
    flex: 0 0 8px;
    position: relative;
    left: 16px;
}

#wom-wholesale-accordion details[open] > .wom-accordion-header {
    background: #1455ff !important;
}

#wom-wholesale-accordion .wom-accordion-body {
    padding: 12px 2px 12px 2px !important;
    background: #ffffff;
}

#wom-wholesale-accordion .wom-accordion-nested .wom-accordion-item {
    border-radius: 10px;
    margin: 8px 2px 8px 2px;
    border-color: #e6e6e6;
}

#wom-wholesale-accordion .wom-accordion-nested .wom-accordion-header {
    padding: 10px 4px 10px 4px !important;
    font-weight: 700;
    background: #f7f7f7;
}

#wom-wholesale-accordion .wom-accordion-nested .wom-accordion-title {
    font-size: 18px;
}

#wom-wholesale-accordion .wom-table-responsive {
    border: 1px solid #eeeeee;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
    overflow: auto;
}

#wom-wholesale-accordion .wom-products-table {
    margin-top: 10px;
}

.woocommerce-account .wom-page-header {
    border-radius: 12px !important;
}

.woocommerce-account .wom-quotation-detail,
.woocommerce-account .wom-quotations-container {
    padding: 20px !important;
}

.woocommerce-account .wom-card,
.woocommerce-account .wom-summary-card,
.woocommerce-account .wom-quotation-card {
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 12px !important;
}

.woocommerce-account .wom-table,
.woocommerce-account table.wom-table {
    background: #ffffff !important;
}

.woocommerce-account .wom-btn,
.woocommerce-account a.wom-btn,
.woocommerce-account button.wom-btn {
    border-radius: 10px !important;
}
.wom-selected-items { margin-top: 10px; padding-top: 10px; border-top: 1px dashed #e5e7eb; }
.wom-selected-items-title { margin-bottom: 8px; }
.wom-selected-items-list { display: flex; flex-direction: column; gap: 6px; }

.wom-selected-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 6px 0; border-bottom: 1px solid #f3f4f6; }
.wom-selected-item:last-child { border-bottom: none; }
.wom-selected-sku { font-weight: 700; direction: ltr; }
.wom-selected-controls { display: inline-flex; align-items: center; gap: 6px; }
.wom-selected-controls button { border: 1px solid #e5e7eb; background: #fff; padding: 4px 10px; border-radius: 8px; cursor: pointer; }
.wom-selected-controls .wom-selected-qty-input { width: 70px; text-align: center; border: 1px solid #e5e7eb; border-radius: 8px; padding: 4px 6px; }
.wom-selected-controls .wom-selected-remove { border-color: #f5c2c7; background: #fff; color: #b02a37; }

.wom-accordion-title-wrap { display: flex; align-items: center; gap: 10px; }
.wom-category-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; overflow: hidden; background: #eef2ff; flex: 0 0 auto; }
.wom-category-icon-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wom-category-icon-letter { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #1d4ed8; }

.wom-live-cart{
    margin: 10px 0 0 0;
}

.wom-live-cart-table{
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
}

.wom-live-cart-table th,
.wom-live-cart-table td{
    padding: 10px 8px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    text-align: right;
    white-space: nowrap;
}

.wom-live-cart-table th{
    background: #f7f8fa;
    font-weight: 700;
}

.wom-live-cart-name{
    white-space: normal;
    min-width: 180px;
}

.wom-live-cart-qty{
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-start;
}

.wom-live-cart-qty button{
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background: #fff;
    cursor: pointer;
    line-height: 1;
}

.wom-live-qty-input{
    width: 64px;
    text-align: center;
    padding: 6px 6px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
}

.wom-live-remove{
    border: 1px solid #dc3545;
    background: #fff;
    color: #dc3545;
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
}

@media (max-width: 768px){
    .wom-live-cart-table th:nth-child(2),
    .wom-live-cart-table td:nth-child(2){
        display: none; /* در موبایل ستون نام را مخفی کن تا جدول جمع‌وجور باشد */
    }
}
