/* Table */
.orders-content {
    width: 100%;
}

.orders-table-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    overflow: hidden;
    box-shadow: var(--orders-shadow);
}

.orders-table-header-cell,
.orders-table-body-cell {
    padding: 0.75rem;
    text-align: left;
    font-size: 0.875rem;
}

.orders-table-header-cell {
    background: var(--btn-bg);
    color: #ffffff;
    font-weight: 500;
}

.orders-table-row {
    border-bottom: 1px solid #e5e7eb;
}

.orders-table-row:hover {
    background-color: #f1f5f9;
}

.orders-text-center {
    text-align: center;
}

.orders-badge-pending {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--orders-accent);
    color: var(--color_primary);
}

.action-buttons-container div {
    position: relative;
}

.needAction {
    position: absolute;
    top: -9px;
    right: -7px;
    padding: 3px;
    background: red;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-weight: 900;
    cursor: pointer;
}

.needAction:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: -10px;
    background-color: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 5px;
}

.needAction:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 10%;
    border: 5px solid transparent;
    border-top-color: #1f2937;
    z-index: 1000;
    margin-bottom: -5px;
}


/* Order Action Buttons */
.order-action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--color-danger);
}

.order-action-buttons .btn {
    flex: 1;
}

/* Modal */
.orders-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    overflow: auto;
}

.orders-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.orders-modal-dialog {
    max-width: 600px;
    margin: 1rem;
    width: 90%;
    height: 700px;
    overflow: auto;
}

.orders-modal-content {
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    box-shadow: var(--orders-shadow);
    animation: ordersFadeIn 0.2s ease;
}

@keyframes ordersFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.orders-modal-header {
    background: var(--color_primary);
    color: #ffffff;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: var(--orders-radius);
    border-top-right-radius: var(--orders-radius);
}

.orders-modal-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.orders-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
}

.orders-modal-close:hover {
    color: #d1d5db;
}

.orders-modal-body {
    padding: 1rem;
}

.orders-modal-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
}

/* Accordion */
.orders-accordion-card {
    border: none;
    margin-bottom: 0.5rem;
    border-radius: var(--orders-radius);
    overflow: hidden;
    background-color: #f8fafc;
}

.orders-accordion-header {
    background-color: #f1f5f9;
    padding: 0.5rem 0.75rem;
}

.orders-accordion-btn {
    background: none;
    border: none;
    color: var(--color_primary);
    font-weight: 500;
    font-size: 0.875rem;
    width: 100%;
    text-align: left;
    text-decoration: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.orders-accordion-btn:hover {
    color: #111827;
}

.orders-accordion-body {
    padding: 0.75rem;
}

.orders-accordion-row {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.orders-accordion-label {
    width: 40%;
    font-weight: 500;
    color: var(--secondary_text);
}

.orders-accordion-value {
    width: 60%;
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 768px) {
    .orders-container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .orders-table-header-cell,
    .orders-table-body-cell {
        padding: 0.5rem;
        font-size: 0.75rem;
    }


    .orders-modal-dialog {
        max-width: 95%;
    }

    .orders-accordion-label,
    .orders-accordion-value {
        width: 100%;
    }

    .orders-accordion-row {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* All Orders Specific Styles */
.orders-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 1rem;
    background: #ffffff;
    border-radius: var(--orders-radius);
    box-shadow: var(--orders-shadow);
    width: 100%;
}

.orders-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color_primary);
    margin: 0;
}

.orders-search-filter-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.orders-search-box {
    position: relative;
    min-width: 250px;
}

.orders-search-input {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--orders-radius);
    font-size: 0.875rem;
    transition: var(--orders-transition);
    background-color: #ffffff;
}

.orders-search-input:focus {
    outline: none;
    border-color: var(--orders-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.orders-search-input.loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 12a9 9 0 1 1-6.219-8.56'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

.orders-search-input.no-results {
    border-color: #ef4444;
}

.orders-search-input.has-results {
    border-color: #10b981;
}

.orders-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--orders-radius);
    box-shadow: var(--orders-shadow);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.orders-search-suggestions ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.orders-search-suggestions li {
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    border-bottom: 1px solid #f3f4f6;
}

.orders-search-suggestions li:hover,
.orders-search-suggestions li.active {
    background-color: #f1f5f9;
    color: var(--orders-primary);
}

.orders-search-suggestions .no-results {
    padding: 0.5rem 1rem;
    color: #6b7280;
    font-style: italic;
}

.orders-filter-box {
    min-width: 150px;
}

.orders-filter-select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: var(--orders-radius);
    font-size: 0.875rem;
    background-color: #ffffff;
    cursor: pointer;
}

.orders-filter-select:focus {
    outline: none;
    border-color: var(--orders-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.orders-status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;

}

.orders-status-badge[data-status="pending"] {
    background-color: #fef3c7;
    color: #92400e;
}

.orders-status-badge[data-status="processing"] {
    background-color: #dbeafe;
    color: #1e40af;
}

.orders-status-badge[data-status="shipped"] {
    background-color: #dcfce7;
    color: #166534;
}

.orders-status-badge[data-status="delivered"] {
    background-color: #bbf7d0;
    color: #065f46;
}

.orders-status-badge[data-status="cancelled"] {
    background-color: #fee2e2;
    color: #991b1b;
}

.orders-status-badge[data-status="refunded"] {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.orders-status-badge[data-status="approved"] {
    background-color: #dbeafe;
    color: #1e40af;
}

.orders-status-badge[data-status="in-process"] {
    background-color: #e7b6e7;
    color: #9d30a3;
}

.orders-status-badge[data-status="complete"] {
    background-color: #d1fae5;
    color: #065f46;
}

.orders-status-badge[data-status="clarified"] {
    background-color: #fef9c3;
    color: #854d0e;
}

.orders-status-badge[data-status="canceled"] {
    background-color: #fee2e2;
    color: #991b1b;
}

.orders-status-badge[data-status="denied"] {
    background-color: #fecaca;
    color: #991b1b;
}

.orders-status-badge[data-status="canceled-reversal"] {
    background-color: #ffedd5;
    color: #9a3412;
}

.orders-status-badge[data-status="failed"] {
    background-color: #fca5a5;
    color: #7f1d1d;
}

.orders-status-badge[data-status="reversed"] {
    background-color: #e9d5ff;
    color: #6b21a8;
}

.orders-status-badge[data-status="chargeback"] {
    background-color: #fbcfe8;
    color: #9d266b;
}

.orders-status-badge[data-status="expired"] {
    background-color: #e5e7eb;
    color: #374151;
}

.orders-status-badge[data-status="processed"] {
    background-color: #cffafe;
    color: #0e7490;
}

.orders-status-badge[data-status="voided"] {
    background-color: #d1d5db;
    color: #1f2937;
}

/* Filter chips — tablist of lifecycle states above the table. Default chip
   is a quiet neutral pill; active chip echoes the dark gradient from the
   table header so "current filter" reads as "lens on the table below". */
.orders-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.orders-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.orders-filter-chip:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

.orders-filter-chip:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.35);
}

.orders-filter-chip--active {
    background: var(--btn-bg);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.18);
}

.orders-filter-chip--active:hover {
    background: var(--btn-bg);
    color: #ffffff;
}

.orders-filter-chip__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
}

.orders-filter-chip--active .orders-filter-chip__count {
    background: rgba(255, 255, 255, 0.18);
}

/* Vendor lifecycle states */
.orders-status-badge[data-status="first-approval"] {
    background-color: #e0e7ff;
    color: #3730a3;
}

.orders-status-badge[data-status="second-approval"] {
    background-color: #ede9fe;
    color: #5b21b6;
}

.orders-status-badge[data-status="verified"] {
    background-color: #d1fae5;
    color: #065f46;
}

/* Exxpress connection */
.orders-status-badge[data-status="connected"] {
    background-color: #dbeafe;
    color: #1e40af;
}

.orders-status-badge[data-status="not-connected"] {
    background-color: transparent;
    color: #94a3b8;
    letter-spacing: normal;
}

/* Row-level action buttons (labeled, compact for in-table use). The base
   .btn is auto-sized; .orders-icon-btn squeezes it to a 34px icon square,
   which clipped longer labels like "First-approve". This variant keeps
   labels visible inside a table row. */
.orders-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.orders-row-actions .orders-row-action-btn {
    padding: 6px 10px;
    font-size: 0.72rem;
    line-height: 1;
    min-height: 0;
    white-space: nowrap;
}

.orders-status-badge[data-status="testing"] {
    background-color: #f0f9ff;
    color: #075985;
}

.orders-view-btn,
.orders-edit-btn {
    padding: 0.3rem 0.8rem;
    border: none;
    border-radius: var(--orders-radius);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--orders-transition);
}

.orders-view-btn {
    background-color: var(--orders-primary);
    color: #ffffff;
}

.orders-view-btn:hover {
    background-color: #1d4ed8;
}

.orders-edit-btn {
    background-color: #6b7280;
    color: #ffffff;
}

.orders-edit-btn:hover {
    background-color: #4b5563;
}

.orders-container .orders-load-more-container {
    text-align: center;
    padding: 1rem;
}


.orders-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 8px;
}

.orders-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--orders-primary-color);
}

.orders-loading-spinner svg {
    animation: spin 1s linear infinite;
}

.orders-table-container {
    position: relative;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.orders-no-results {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.orders-no-results-content {
    max-width: 400px;
    text-align: center;
}

.orders-no-results-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--orders-gray-900);
    margin-bottom: 0.5rem;
}

.orders-no-results-content p {
    color: var(--orders-gray-600);
    margin-bottom: 1.5rem;
}

.orders-no-results-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}


.orders-container .orders-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--orders-transition);
}

.orders-overlay.active {
    opacity: 1;
    visibility: visible;
}

.orders-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1001;
    transition: var(--orders-transition);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.orders-panel.active {
    right: 0;
}

.orders-panel-header {
    padding: 1rem;
    background-color: var(--secondary_text);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.orders-panel-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.orders-close-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.orders-close-btn:hover {
    color: #d1d5db;
}

.orders-panel-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.orders-panel-footer {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: right;
    display: flex;
    width: 100%;
    gap: 10px;
}

.orders-customer-section,
.orders-shipping-section,
.orders-status-section,
.orders-products-section,
.orders-totals-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
}

.orders-totals {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f8fafc;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
}

.orders-customer-section h4,
.orders-shipping-section h4,
.orders-status-section h4,
.orders-products-section h4,
.orders-totals-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color_primary);
    display: flex;
    align-items: center;
}

.orders-customer-section h4 i,
.orders-shipping-section h4 i,
.orders-status-section h4 i,
.orders-products-section h4 i,
.orders-totals-section h4 i {
    margin-right: 0.5rem;
}

.orders-history-item {
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
}

.orders-history-item:last-child {
    margin-bottom: 0;
}

.history-item {
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
}

.history-item:last-child {
    margin-bottom: 0;
}

.orders-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
}

.product-item:last-child {
    margin-bottom: 0;
}

.orders-form-group {
    margin-bottom: 1rem;
}

.orders-form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--secondary_text);
}

.orders-form-group input,
.orders-form-group textarea,
.orders-form-group select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: var(--orders-radius);
    font-size: 0.875rem;
    transition: var(--orders-transition);
    background-color: #ffffff;
}

.orders-form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: var(--orders-radius);
    font-size: 0.875rem;
    transition: var(--orders-transition);
    background-color: #ffffff;
}

.orders-form-input:focus {
    outline: none;
    border-color: var(--color_primary);
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.orders-form-textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: var(--orders-radius);
    font-size: 0.875rem;
    transition: var(--orders-transition);
    background-color: #ffffff;
    resize: vertical;
    min-height: 80px;
}

.orders-form-textarea:focus {
    outline: none;
    border-color: var(--color_primary);
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.orders-form-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: var(--orders-radius);
    font-size: 0.875rem;
    transition: var(--orders-transition);
    background-color: #ffffff;
    cursor: pointer;
}

.orders-form-select:focus {
    outline: none;
    border-color: var(--color_primary);
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.orders-product-item {
    padding: 1rem;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
    gap: 1rem;
}

.orders-product-item:last-child {
    margin-bottom: 0;
}

.orders-form-label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--secondary_text);
    font-size: 0.875rem;
}

.orders-form-group input:focus,
.orders-form-group textarea:focus,
.orders-form-group select:focus {
    outline: none;
    border-color: var(--color_primary);
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.orders-form-group input.is-invalid,
.orders-form-group textarea.is-invalid,
.orders-form-group select.is-invalid {
    border-color: #ef4444;
}

.orders-form-input-invalid {
    border-color: #ef4444 !important;
}

.orders-form-error {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.orders-alert {
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    padding: 0.875rem 1rem;
}

.orders-alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.orders-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.orders-invalid-feedback {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}


/* Responsive Design for All Orders */
@media (max-width: 768px) {
    .orders-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .orders-search-filter-container {
        flex-direction: column;
        width: 100%;
    }

    .orders-search-box,
    .orders-filter-box {
        width: 100%;
    }

    .orders-panel {
        width: 100%;
        right: -100%;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    .orders-panel-body {
        padding: 0.75rem;
    }

    .orders-customer-section,
    .orders-shipping-section,
    .orders-status-section,
    .orders-products-section,
    .orders-totals-section {
        padding: 0.75rem;
    }

}

/* Product Display Styling */
.product-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.product-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-main-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 12px;
}

.product-details {
    align-items: center;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--color_primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.product-quantity {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #059669;
    text-align: right;
    white-space: nowrap;
}

.product-options {
    border-top: 1px solid #f3f4f6;
}

.product-options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-option-badge {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.option-name {
    color: #0369a1;
    font-weight: 600;
}

.option-value {
    color: #0c4a6e;
    font-weight: 500;
}

/* Enhanced existing product-item styles */
.product-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: var(--orders-radius);
    border: 1px solid #e5e7eb;
    margin-bottom: 0.5rem;
    box-shadow: var(--orders-shadow);
    transition: var(--orders-transition);
}

.product-item:last-child {
    margin-bottom: 0;
}

.product-item:hover {
    border-color: var(--orders-primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Store Name Badge Styling */
.store-name-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.70rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--orders-transition);
}

/* POS Store Styling */
.store-name-badge.pos {
    background-color: #3b82f6;
    color: #ffffff;
    border: 1px solid #2563eb;
}

/* Ariba Store Styling */
.store-name-badge.ariba {
    background-color: #10b981;
    color: #ffffff;
    border: 1px solid #059669;
}

/* Default Store Styling */
.store-name-badge:not(.pos):not(.ariba) {
    background-color: #6b7280;
    color: #ffffff;
    border: 1px solid #4b5563;
}

/* ===== DEPOT ORDER DETAILS - DARK MODERN DESIGN ===== */

/* Modal Header Enhancements */
.orders-modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.orders-modal-title-icon {
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.orders-modal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Scan Status */
.scan-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    min-height: 40px;
    transition: all 0.3s ease;
    user-select: none;
}

.scan-status:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scan-status:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.scan-status-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.scan-status-text svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.scan-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.scan-loading.active {
    display: flex;
}

.scan-spinner {
    animation: spin 1s linear infinite;
    color: currentColor;
    flex-shrink: 0;
}

.scan-loading span {
    font-size: 14px;
    font-weight: 500;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Accordion Label with Icons */
.orders-accordion-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.orders-accordion-label svg {
    color: var(--color_primary);
    flex-shrink: 0;
}

/* Depot Product Item - Clean Modern Design */
.depot-product-item {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.depot-product-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.depot-product-item.depot-product-scanned {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.depot-product-item.depot-product-complete {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.depot-product-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.depot-product-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    flex-shrink: 0;
}

.depot-product-scanned .depot-product-icon {
    background: #d1fae5;
    color: #10b981;
}

.depot-product-complete .depot-product-icon {
    background: #d1fae5;
    color: #10b981;
}

.depot-product-status {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

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

.depot-status-badge svg {
    flex-shrink: 0;
}

.depot-status-pending {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.depot-status-scanned {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #10b981;
}

.depot-status-complete {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #10b981;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}
.depot-status-not-exist {
    background: var(--red-light);
    color: var(--red);
    border: 1px solid var(--red);
    box-shadow: 0 2px 4px rgba(7, 1, 1, 0.2);
}
.depot-product-info {
    flex: 1;
    min-width: 0;
}

.depot-product-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.depot-product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.depot-option-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
}

.depot-option-name {
    color: #6b7280;
    font-weight: 500;
}

.depot-option-separator {
    color: #9ca3af;
}

.depot-option-value {
    color: #111827;
    font-weight: 600;
}

/* Removed - using status badge instead */

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.depot-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.depot-product-stats {
    display: flex;
    gap: 16px;
}

.depot-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.depot-stat-item svg {
    color: #6b7280;
    flex-shrink: 0;
}

.depot-stat-label {
    color: #6b7280;
    font-weight: 500;
}

.depot-stat-value {
    color: #111827;
    font-weight: 600;
}

.depot-stat-item.depot-stat-complete svg,
.depot-stat-item.depot-stat-complete .depot-stat-value {
    color: #10b981;
}

.depot-product-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #d97706;
    padding: 6px 12px;
    background: #fef3c7;
    border-radius: 8px;
}

.depot-product-price svg {
    flex-shrink: 0;
}

/* Depot Buttons */
/* Depot buttons removed - using button.css classes instead */

.orders-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom-left-radius: var(--orders-radius);
    border-bottom-right-radius: var(--orders-radius);
}

/* ===== BARCODE POPUP - PRODUCT SELECTION DESIGN ===== */

.barcode-popup-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #bae6fd;
}

.barcode-popup-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(2, 132, 199, 0.1);
}

.barcode-popup-message {
    flex: 1;
}

.barcode-popup-title {
    font-size: 18px;
    font-weight: 700;
    color: #0c4a6e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.barcode-popup-description {
    font-size: 14px;
    color: #075985;
    margin: 0;
    line-height: 1.5;
}

.barcode-products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 4px;
}

.barcode-products-list::-webkit-scrollbar {
    width: 6px;
}

.barcode-products-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.barcode-products-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.barcode-products-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.barcode-product-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 100%;
    cursor: pointer;
    position: relative;
}

.barcode-product-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.barcode-product-card:active {
    transform: translateY(0);
}

.barcode-product-card.barcode-product-scanned {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.barcode-product-card.barcode-product-complete {
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.barcode-product-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.barcode-product-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.barcode-product-card:hover .barcode-product-icon {
    background: #dbeafe;
    color: #3b82f6;
}

.barcode-product-scanned .barcode-product-icon,
.barcode-product-complete .barcode-product-icon {
    background: #d1fae5;
    color: #10b981;
}

.barcode-product-info {
    flex: 1;
    min-width: 0;
}

.barcode-product-name {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

.barcode-product-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.barcode-option-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
}

.barcode-option-name {
    color: #6b7280;
    font-weight: 500;
}

.barcode-option-separator {
    color: #9ca3af;
}

.barcode-option-value {
    color: #111827;
    font-weight: 600;
}

.barcode-product-status {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

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

.barcode-status-badge svg {
    flex-shrink: 0;
}

.barcode-status-pending {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.barcode-status-scanned {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #10b981;
}

.barcode-status-complete {
    background: #d1fae5;
    color: #059669;
    border: 1px solid #10b981;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
}

.barcode-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.barcode-product-stats {
    display: flex;
    gap: 16px;
}

.barcode-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.barcode-stat-item svg {
    color: #6b7280;
    flex-shrink: 0;
}

.barcode-stat-label {
    color: #6b7280;
    font-weight: 500;
}

.barcode-stat-value {
    color: #111827;
    font-weight: 600;
}

.barcode-stat-item.barcode-stat-complete svg,
.barcode-stat-item.barcode-stat-complete .barcode-stat-value {
    color: #10b981;
}

.barcode-product-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.barcode-product-card:hover .barcode-product-action {
    background: #3b82f6;
    color: #ffffff;
    transform: translateX(4px);
}

/* Order inbox refresh */
.orders-container {
    width: 100%;
    padding: 20px 0 28px;
}

.orders-header {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.orders-eyebrow {
    margin: 0 0 4px;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.orders-header h2 {
    color: #111827;
    font-size: 1.35rem;
}

.orders-search-filter-container {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.orders-search-box {
    min-width: min(360px, 52vw);
}

.orders-search-input,
.orders-filter-select {
    min-height: 42px;
    border-color: #cbd5e1;
    border-radius: 8px;
    color: #111827;
}

.orders-search-input::placeholder {
    color: #94a3b8;
}

.orders-container .orders-table-shell {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.orders-container .orders-table {
    min-width: 880px;
    border-radius: 0;
    box-shadow: none;
}

.orders-container .orders-table-header-cell {
    background: #f8fafc;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.orders-container .orders-sortable-header {
    cursor: pointer;
    user-select: none;
}

.orders-container .orders-sortable-header:hover {
    background: #f1f5f9;
    color: #111827;
}

.orders-container .orders-table-body-cell {
    color: #1f2937;
    vertical-align: middle;
}

.orders-container .orders-id-cell {
    color: #0457cb;
    font-weight: 700;
}

.orders-container .orders-clickable-row {
    cursor: pointer;
}

.orders-container .orders-clickable-row:hover,
.orders-container .orders-clickable-row:focus {
    background-color: #f8fafc;
    outline: none;
}

.orders-container .orders-clickable-row:focus-visible {
    box-shadow: inset 0 0 0 2px #3b82f6;
}

.orders-container .orders-customer-cell {
    display: grid;
    gap: 2px;
}

.orders-container .orders-customer-cell span {
    font-weight: 600;
}

.orders-container .orders-customer-cell small {
    color: #64748b;
    font-size: 0.75rem;
}

.orders-container .orders-icon-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 8px;
}

.orders-container .orders-empty-state {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding: 28px 12px;
    color: #64748b;
}

.orders-container .orders-empty-state strong {
    color: #111827;
    font-size: 1rem;
}

.orders-load-more-container {
    padding: 18px 0 0;
}

.orders-overlay {
    background-color: rgba(15, 23, 42, 0.46);
}

.orders-container .orders-panel {
    right: -680px;
    width: min(680px, 100vw);
    background: #f8fafc;
    box-shadow: -18px 0 38px rgba(15, 23, 42, 0.18);
}

.orders-container .orders-panel.active {
    right: 0;
}

.orders-container .orders-panel-header {
    min-height: 74px;
    padding: 16px 20px;
    background: #111827;
    border-bottom: 1px solid #1f2937;
}

.orders-container .orders-panel-title {
    display: grid;
    gap: 2px;
}

.orders-container .orders-panel-title span {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
}

.orders-container .orders-panel-title small {
    color: #cbd5e1;
    font-size: 0.78rem;
}

.orders-container .orders-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

.orders-container .orders-modal-close:hover,
.orders-container .orders-modal-close:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.orders-container .orders-panel-body {
    padding: 18px;
}

.orders-container .orders-detail-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.orders-container .orders-detail-summary > div {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.orders-container .orders-detail-summary span,
.orders-container .orders-detail-list span {
    color: #64748b;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.orders-container .orders-detail-summary strong {
    min-width: 0;
    color: #111827;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.orders-container .orders-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.orders-container .orders-customer-section,
.orders-container .orders-shipping-section,
.orders-container .orders-status-section,
.orders-container .orders-products-section,
.orders-container .orders-totals {
    margin-bottom: 14px;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.orders-container .orders-customer-section h4,
.orders-container .orders-shipping-section h4,
.orders-container .orders-status-section h4,
.orders-container .orders-products-section h4,
.orders-container .orders-totals h4 {
    color: #111827;
    font-size: 0.92rem;
}

.orders-container .orders-detail-list,
.orders-container .orders-history-list,
.orders-container .orders-products-list,
.orders-container .orders-total-list {
    display: grid;
    gap: 10px;
}

.orders-container .orders-detail-list > div {
    display: grid;
    gap: 3px;
}

.orders-container .orders-detail-list strong {
    min-width: 0;
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.orders-container .orders-detail-note {
    padding-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.orders-container .history-item {
    padding: 12px;
    border-color: #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0;
}

.orders-container .history-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.orders-container .history-item-header strong {
    color: #111827;
}

.orders-container .history-item-header span {
    color: #64748b;
    font-size: 0.75rem;
    white-space: nowrap;
}

.orders-container .history-item p {
    margin: 6px 0 0;
    color: #475569;
    font-size: 0.86rem;
    line-height: 1.45;
}

.orders-container .orders-muted {
    color: #64748b;
    font-size: 0.9rem;
}

.orders-container .product-item {
    margin-bottom: 0;
    border-color: #e2e8f0;
    border-radius: 10px;
    box-shadow: none;
}

.orders-container .product-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.orders-container .product-main-info {
    gap: 12px;
    margin-bottom: 0;
}

.orders-container .product-details {
    align-items: flex-start;
    gap: 12px;
}

.orders-container .product-details-meta {
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.orders-container .product-name {
    color: #111827;
    font-size: 0.96rem;
}

.orders-container .product-price {
    color: #047857;
    font-size: 1rem;
}

.orders-container .product-option-badge {
    background: #f8fafc;
    border-color: #cbd5e1;
    border-radius: 999px;
}

.orders-container .option-name {
    color: #475569;
}

.orders-container .option-value {
    color: #111827;
}

.orders-container .orders-total-list .flex {
    align-items: center;
    color: #475569;
}

.orders-container .orders-total-list .font-bold {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid #e5e7eb;
    color: #111827;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .orders-header {
        flex-direction: column;
    }

    .orders-search-filter-container,
    .orders-search-box,
    .orders-filter-box {
        width: 100%;
        min-width: 0;
    }

    .orders-container .orders-detail-summary,
    .orders-container .orders-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== VENDOR TABLE PAGINATION ===== */
.vendor-pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0.5rem;
    margin-top: 0.5rem;
}

.vendor-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vendor-page-item {
    display: inline-block;
}

.vendor-page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 40px;
    height: 40px;
    transition: all 0.2s ease;
    cursor: pointer;
    line-height: 1;
}

.vendor-page-link:hover {
    background: #f9fafb;
    border-color: var(--btn-bg);
    color: var(--btn-bg);
}

.vendor-page-item.active .vendor-page-link {
    background: var(--btn-bg);
    border-color: var(--btn-bg);
    color: #ffffff;
    cursor: default;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vendor-page-item.disabled .vendor-page-link {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.vendor-page-item.disabled .vendor-page-link:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #9ca3af;
}

.vendor-page-prev,
.vendor-page-next {
    padding: 0.5rem;
    min-width: 40px;
}

.vendor-page-dots {
    background: transparent;
    border-color: transparent;
    color: #6b7280;
    cursor: default;
    font-weight: 600;
    letter-spacing: 2px;
}

.vendor-page-dots:hover {
    background: transparent;
    border-color: transparent;
    color: #6b7280;
}

.vendor-pagination-info {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}
