:root {
    --bg: #1e2030;
    --bg-light: #252840;
    --bg-dark: #171928;
    --text-primary: #e0e4f0;
    --text-secondary: #8890b0;
    --text-muted: #555a75;
    --accent: #6c8cff;
    --accent-glow: rgba(108, 140, 255, 0.25);
    --accent-dim: rgba(108, 140, 255, 0.1);
    --success: #5ce0a0;
    --success-glow: rgba(92, 224, 160, 0.2);
    --warning: #ffc857;
    --warning-glow: rgba(255, 200, 87, 0.2);
    --danger: #ff6b7a;
    --danger-glow: rgba(255, 107, 122, 0.2);
    --shadow-dark: rgba(10, 11, 20, 0.7);
    --shadow-light: rgba(45, 50, 80, 0.5);
    --neu-raised: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
    --neu-raised-sm: 3px 3px 8px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
    --neu-pressed: inset 4px 4px 10px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
    --neu-flat: 2px 2px 6px var(--shadow-dark), -2px -2px 6px var(--shadow-light);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --transition: 200ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    background: var(--bg);
    box-shadow: 0 4px 20px var(--shadow-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    gap: 16px;
    flex-wrap: wrap;
}

.header-left {
    flex-shrink: 0;
}

.logo {
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 11px;
    margin-left: 10px;
    letter-spacing: 1px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.stats-bar {
    display: flex;
    gap: 8px;
    font-size: 12px;
}

.stat {
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    background: var(--bg);
    box-shadow: var(--neu-flat);
    color: var(--text-secondary);
}

.stat strong {
    color: var(--text-primary);
    font-weight: 700;
}

.stat-ok {
    color: var(--success);
}

.stat-ok strong {
    color: var(--success);
}

.stat-warn {
    color: var(--warning);
}

.stat-warn strong {
    color: var(--warning);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.db-status {
    font-size: 11px;
    color: var(--success);
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--bg);
    box-shadow: var(--neu-flat);
}

/* BUTTONS */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--neu-raised-sm);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn:hover {
    box-shadow: var(--neu-raised);
}

.btn:active {
    box-shadow: var(--neu-pressed);
}

.btn-primary {
    background: linear-gradient(145deg, #7a9aff, #5e7ee0);
    box-shadow: 4px 4px 12px var(--shadow-dark), -4px -4px 12px var(--shadow-light), 0 0 20px var(--accent-glow);
    color: #fff;
}

.btn-primary:hover {
    box-shadow: 6px 6px 16px var(--shadow-dark), -6px -6px 16px var(--shadow-light), 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-primary:active {
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.3), inset -3px -3px 8px rgba(255,255,255,0.1);
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg);
    box-shadow: var(--neu-flat);
    color: var(--text-secondary);
}

.btn-secondary:hover {
    color: var(--text-primary);
}

.btn-search {
    background: linear-gradient(145deg, #7a9aff, #5e7ee0);
    box-shadow: 4px 4px 12px var(--shadow-dark), -4px -4px 12px var(--shadow-light), 0 0 20px var(--accent-glow);
    color: #fff;
    padding: 10px 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-search:hover {
    box-shadow: 6px 6px 16px var(--shadow-dark), -6px -6px 16px var(--shadow-light), 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-search:active {
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.3), inset -3px -3px 8px rgba(255,255,255,0.1);
    transform: translateY(0);
}

.btn-filter {
    background: var(--bg);
    box-shadow: var(--neu-raised-sm);
}

.btn-filter.active {
    background: var(--accent-dim);
    box-shadow: var(--neu-pressed);
    color: var(--accent);
    border: 1px solid rgba(108, 140, 255, 0.3);
}

.btn-export {
    font-size: 12px;
    padding: 8px 14px;
    box-shadow: var(--neu-flat);
}

.btn-close {
    background: var(--bg);
    border: none;
    color: var(--text-secondary);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    border-radius: var(--radius-xs);
    box-shadow: var(--neu-flat);
    transition: all var(--transition);
}

.btn-close:hover {
    color: var(--danger);
    box-shadow: var(--neu-raised-sm);
}

.btn-small {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-danger {
    background: linear-gradient(145deg, #ff7a88, #e05565);
    box-shadow: 4px 4px 12px var(--shadow-dark), -4px -4px 12px var(--shadow-light), 0 0 15px var(--danger-glow);
    color: #fff;
}

.btn-danger:hover {
    box-shadow: 6px 6px 16px var(--shadow-dark), -6px -6px 16px var(--shadow-light), 0 0 25px var(--danger-glow);
}

/* MAIN */
.main {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 28px;
}

/* SEARCH */
.search-section {
    margin-bottom: 20px;
}

.search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.search-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--neu-pressed);
    color: var(--text-primary);
    font-size: 15px;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.search-input:focus {
    outline: none;
    box-shadow: var(--neu-pressed), 0 0 0 2px var(--accent-glow);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px 14px;
    border-radius: var(--radius-xs);
    background: var(--bg);
    box-shadow: var(--neu-flat);
    transition: all var(--transition);
}

.checkbox-label:hover {
    box-shadow: var(--neu-raised-sm);
}

.checkbox-label input {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.export-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

/* FILTERS PANEL */
.filters-panel {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--neu-raised);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding-left: 4px;
}

.filter-group input,
.filter-group select {
    padding: 10px 14px;
    border: none;
    border-radius: var(--radius-xs);
    background: var(--bg);
    box-shadow: var(--neu-pressed);
    color: var(--text-primary);
    font-size: 13px;
    transition: all var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    box-shadow: var(--neu-pressed), 0 0 0 2px var(--accent-glow);
}

.filters-actions {
    display: flex;
    gap: 10px;
}

/* RESULTS INFO */
.results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-secondary);
}

.select-per-page {
    padding: 6px 12px;
    border: none;
    border-radius: var(--radius-xs);
    background: var(--bg);
    box-shadow: var(--neu-flat);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
}

/* TABLE */
.table-container {
    overflow-x: auto;
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: var(--neu-raised);
}

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

.products-table thead {
    background: var(--bg-light);
    position: sticky;
    top: 0;
    z-index: 10;
}

.products-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(108, 140, 255, 0.15);
    white-space: nowrap;
    user-select: none;
}

.products-table th.sortable {
    cursor: pointer;
    transition: color var(--transition);
}

.products-table th.sortable:hover {
    color: var(--accent);
}

.products-table th.sort-asc::after {
    content: ' ▲';
    font-size: 9px;
    color: var(--accent);
}

.products-table th.sort-desc::after {
    content: ' ▼';
    font-size: 9px;
    color: var(--accent);
}

.products-table th.highlight-col {
    color: var(--accent);
    background: var(--accent-dim);
}

.products-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(108, 140, 255, 0.07);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.products-table tbody tr {
    transition: all var(--transition);
}

.products-table tbody tr:hover {
    background: var(--accent-dim);
}

.products-table td.cell-address {
    font-weight: 800;
    font-size: 15px;
    color: var(--accent);
    white-space: nowrap;
}

.products-table td.cell-address.no-address {
    color: var(--warning);
    font-weight: 400;
    font-size: 12px;
}

.products-table td .address-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.address-badge.has-address {
    background: var(--accent-dim);
    color: var(--accent);
    box-shadow: inset 2px 2px 5px rgba(108, 140, 255, 0.15), inset -2px -2px 5px rgba(108, 140, 255, 0.05);
    border: 1px solid rgba(108, 140, 255, 0.2);
}

.address-badge.no-address {
    background: var(--warning-glow);
    color: var(--warning);
    box-shadow: inset 2px 2px 5px rgba(255, 200, 87, 0.1), inset -2px -2px 5px rgba(255, 200, 87, 0.05);
    font-weight: 400;
    font-size: 11px;
    border: 1px solid rgba(255, 200, 87, 0.2);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination button {
    padding: 8px 14px;
    border: none;
    border-radius: var(--radius-xs);
    background: var(--bg);
    box-shadow: var(--neu-flat);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.pagination button:hover {
    box-shadow: var(--neu-raised-sm);
    color: var(--accent);
}

.pagination button:active {
    box-shadow: var(--neu-pressed);
}

.pagination button.active {
    background: linear-gradient(145deg, #7a9aff, #5e7ee0);
    box-shadow: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light), 0 0 15px var(--accent-glow);
    color: #fff;
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    box-shadow: none;
}

.pagination .page-info {
    padding: 6px 10px;
    font-size: 13px;
    color: var(--text-muted);
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 70px 20px;
    color: var(--text-secondary);
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--neu-pressed);
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 8px;
}

.empty-hint {
    font-size: 13px;
    color: var(--text-muted);
}

/* LOADING */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 50px;
    color: var(--text-secondary);
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--bg-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    box-shadow: var(--neu-flat);
}

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

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 20, 0.85);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal {
    background: var(--bg);
    border-radius: var(--radius);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), var(--neu-raised);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(108, 140, 255, 0.1);
}

.modal-header h2 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 18px 24px;
    border-top: 1px solid rgba(108, 140, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* PRODUCT DETAIL */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-section {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--neu-raised-sm);
}

.detail-section h3 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 700;
}

.detail-field {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(108, 140, 255, 0.07);
    font-size: 13px;
}

.detail-field:last-child {
    border-bottom: none;
}

.detail-field .label {
    color: var(--text-muted);
}

.detail-field .value {
    font-weight: 600;
    color: var(--text-primary);
}

.location-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 36px;
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow: var(--neu-raised), inset 0 0 30px var(--accent-dim);
    border: 1px solid rgba(108, 140, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.location-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(108, 140, 255, 0.15), transparent 50%, rgba(108, 140, 255, 0.15));
    z-index: 0;
}

.location-box > * {
    position: relative;
    z-index: 1;
}

.location-box .loc-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 700;
}

.location-box .loc-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 4px;
    text-shadow: 0 0 30px var(--accent-glow);
}

.location-box.no-address {
    border-color: rgba(255, 200, 87, 0.2);
    box-shadow: var(--neu-raised), inset 0 0 30px var(--warning-glow);
}

.location-box.no-address::before {
    background: linear-gradient(135deg, rgba(255, 200, 87, 0.1), transparent 50%, rgba(255, 200, 87, 0.1));
}

.location-box.no-address .loc-value {
    color: var(--warning);
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0 0 20px var(--warning-glow);
}

/* IMPORT FLOW */
.import-steps {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.import-step {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow: var(--neu-flat);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all var(--transition);
}

.import-step.active {
    background: var(--accent-dim);
    box-shadow: var(--neu-pressed);
    color: var(--accent);
    border: 1px solid rgba(108, 140, 255, 0.3);
}

.import-step.done {
    background: var(--success-glow);
    box-shadow: var(--neu-pressed);
    color: var(--success);
    border: 1px solid rgba(92, 224, 160, 0.3);
}

.upload-zone {
    border: none;
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--bg);
    box-shadow: var(--neu-pressed);
}

.upload-zone:hover {
    box-shadow: var(--neu-pressed), 0 0 0 2px var(--accent-glow);
}

.upload-zone .upload-icon {
    font-size: 48px;
    margin-bottom: 14px;
    filter: grayscale(0.3);
}

.upload-zone p {
    color: var(--text-secondary);
    margin-bottom: 4px;
    font-weight: 500;
}

.upload-zone .upload-hint {
    font-size: 12px;
    color: var(--text-muted);
}

.mapping-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
}

.mapping-grid .mapping-arrow {
    color: var(--accent);
    font-size: 18px;
}

.mapping-grid .mapping-label {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-xs);
    box-shadow: var(--neu-pressed);
    font-weight: 500;
}

.mapping-grid select {
    padding: 10px 14px;
    border: none;
    border-radius: var(--radius-xs);
    background: var(--bg);
    box-shadow: var(--neu-pressed);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
}

.preview-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 14px;
}

.preview-table th {
    padding: 10px 12px;
    background: var(--bg-light);
    text-align: left;
    font-weight: 700;
    color: var(--text-muted);
    border-bottom: 2px solid rgba(108, 140, 255, 0.15);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.8px;
}

.preview-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(108, 140, 255, 0.07);
}

.import-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 20px 0;
}

.summary-card {
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    background: var(--bg);
    box-shadow: var(--neu-raised-sm);
}

.summary-card .summary-value {
    font-size: 32px;
    font-weight: 800;
}

.summary-card .summary-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.summary-card.total .summary-value {
    color: var(--text-primary);
}

.summary-card.inserted {
    background: var(--bg);
    box-shadow: var(--neu-raised-sm), inset 0 0 20px var(--success-glow);
}

.summary-card.inserted .summary-value {
    color: var(--success);
}

.summary-card.updated {
    background: var(--bg);
    box-shadow: var(--neu-raised-sm), inset 0 0 20px var(--accent-dim);
}

.summary-card.updated .summary-value {
    color: var(--accent);
}

.summary-card.errors {
    background: var(--bg);
    box-shadow: var(--neu-raised-sm), inset 0 0 20px var(--danger-glow);
}

.summary-card.errors .summary-value {
    color: var(--danger);
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background: var(--bg);
    border-radius: 5px;
    overflow: hidden;
    margin: 18px 0;
    box-shadow: var(--neu-pressed);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #8aa8ff);
    border-radius: 5px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--accent-glow);
}

.error-list {
    max-height: 200px;
    overflow-y: auto;
    border-radius: var(--radius-xs);
    padding: 10px;
    margin-top: 14px;
    background: var(--bg);
    box-shadow: var(--neu-pressed);
}

.error-item {
    padding: 8px 10px;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 107, 122, 0.1);
    color: var(--danger);
}

.error-item:last-child {
    border-bottom: none;
}

/* TOAST */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
    min-width: 300px;
    max-width: 420px;
    background: var(--bg);
    box-shadow: var(--neu-raised);
}

.toast.success {
    border-left: 4px solid var(--success);
    color: var(--success);
    box-shadow: var(--neu-raised), -4px 0 15px var(--success-glow);
}

.toast.error {
    border-left: 4px solid var(--danger);
    color: var(--danger);
    box-shadow: var(--neu-raised), -4px 0 15px var(--danger-glow);
}

.toast.info {
    border-left: 4px solid var(--accent);
    color: var(--accent);
    box-shadow: var(--neu-raised), -4px 0 15px var(--accent-glow);
}

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .header {
        padding: 12px 18px;
    }

    .logo-sub {
        display: none;
    }

    .stats-bar {
        gap: 6px;
    }

    .main {
        padding: 18px;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .filters-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .import-summary {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-center {
        display: none;
    }

    .header-right {
        width: 100%;
        justify-content: flex-end;
    }

    .search-bar {
        flex-wrap: wrap;
    }

    .search-input {
        min-width: 0;
    }

    .export-actions {
        margin-left: 0;
    }

    .products-table td,
    .products-table th {
        padding: 10px 12px;
        font-size: 12px;
    }

    .location-box .loc-value {
        font-size: 32px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 12px;
    }
}
