/* =============================================
   Maira Jewels — Admin Panel Styles
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-gold: #c9a96e;
    --color-gold-dark: #a8894f;
    --color-gold-light: #f5eedf;
    --color-charcoal: #1e1b18;
    --color-dark: #12100e;
    --color-sidebar: #f7f4ee;
    --color-bg: #f8f6f0;
    --color-card-bg: #ffffff;
    --color-white: #ffffff;
    --color-border: #ede7dc;
    --color-border-subtle: #f2ede4;
    --color-muted: #7c746b;
    --color-danger: #e11d48;
    --color-success: #059669;
    --color-warning: #d97706;
    --color-info: #2563eb;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --sidebar-width: 210px;
    --shadow-sm: 0 1px 3px rgba(30, 27, 24, 0.04), 0 1px 2px rgba(30, 27, 24, 0.02);
    --shadow-md: 0 4px 14px rgba(30, 27, 24, 0.06), 0 2px 4px rgba(30, 27, 24, 0.03);
    --shadow-lg: 0 10px 28px rgba(30, 27, 24, 0.08), 0 4px 8px rgba(30, 27, 24, 0.04);
}

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

html {
    font-size: 11.5px; /* Crisp ultra-compact desktop scaling eliminating horizontal scroll */
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-charcoal);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ LOGIN PAGE ============ */
.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e1b18 0%, #2b2622 50%, #171513 100%);
    padding: 1.5rem;
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.login-logo {
    text-align: center;
    margin-bottom: 1.75rem;
}

.login-logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.65rem;
    filter: drop-shadow(0 4px 10px rgba(168, 137, 79, 0.25));
}

.login-logo h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-charcoal);
}

.login-logo p {
    color: var(--color-gold-dark);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 0.2rem;
}

.login-form .form-group {
    margin-bottom: 1.15rem;
}

.login-form label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--color-charcoal);
}

.login-form input {
    width: 100%;
    padding: 0.65rem 0.95rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: all 0.2s;
    background: #fdfdfd;
}

.login-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.login-hint {
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 1.15rem;
}

.login-error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
    padding: 0.65rem;
    border-radius: 8px;
    font-size: 0.82rem;
    margin-top: 0.9rem;
    text-align: center;
    font-weight: 500;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.52rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    line-height: 1.2;
}

.btn:disabled, .btn[disabled], .btn.disabled {
    opacity: 0.65;
    cursor: not-allowed !important;
    pointer-events: none !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-spinner {
    display: inline-block;
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.55s linear infinite;
    vertical-align: middle;
}

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

.btn--primary {
    background: linear-gradient(135deg, #c9a96e 0%, #a8894f 100%);
    color: var(--color-white);
    box-shadow: 0 2px 5px rgba(168, 137, 79, 0.25);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #d4b57b 0%, #9c7c42 100%);
    box-shadow: 0 4px 10px rgba(168, 137, 79, 0.35);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-charcoal);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    background: #fdfaf5;
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
    transform: translateY(-1px);
}

.btn--danger {
    background: #fff1f2;
    color: #e11d48;
    border: 1px solid #fecdd3;
}

.btn--danger:hover {
    background: #e11d48;
    color: var(--color-white);
    border-color: #e11d48;
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.25);
    transform: translateY(-1px);
}

.btn--success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.btn--success:hover {
    background: #059669;
    color: var(--color-white);
    border-color: #059669;
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
    transform: translateY(-1px);
}

.btn--sm {
    padding: 0.35rem 0.65rem;
    font-size: 0.78rem;
    border-radius: 6px;
}

.btn--full {
    width: 100%;
}

.btn--logout {
    background: rgba(255, 255, 255, 0.7);
    color: #5c544d;
    border: 1px solid rgba(168, 137, 79, 0.25);
    width: 100%;
    margin-top: 0.65rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 0.42rem;
    transition: all 0.2s ease;
}

.btn--logout:hover {
    background: var(--color-danger);
    color: var(--color-white);
    border-color: var(--color-danger);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.2);
}

/* ============ ADMIN LAYOUT ============ */
.admin-body {
    display: flex;
    min-height: 100vh;
    background: var(--color-bg);
}

/* Mobile Header */
.mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f7f4ee;
    border-bottom: 1px solid rgba(168, 137, 79, 0.2);
    position: sticky;
    top: 0;
    z-index: 90;
}

.mobile-header__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.mobile-header__logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.mobile-header__title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #1e1b18;
}

.mobile-menu-btn {
    background: none;
    border: 1px solid rgba(168, 137, 79, 0.3);
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    color: #1e1b18;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background: #f7f4ee;
    color: #2b2723;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(168, 137, 79, 0.15);
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.02);
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 137, 79, 0.2) transparent;
}

.sidebar::-webkit-scrollbar {
    width: 4px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(168, 137, 79, 0.2);
    border-radius: 4px;
}

.sidebar__brand {
    padding: 1.15rem 0.85rem 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid rgba(168, 137, 79, 0.15);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(247, 244, 238, 0) 100%);
    flex-shrink: 0;
}

.sidebar__logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 0.45rem;
    filter: drop-shadow(0 2px 5px rgba(168, 137, 79, 0.18));
    transition: transform 0.25s ease;
}

.sidebar__logo:hover {
    transform: scale(1.05);
}

.sidebar__brand-text h2 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1e1b18;
    line-height: 1.15;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.sidebar__brand-text p {
    font-size: 0.6rem;
    color: #a8894f;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    margin-top: 0.15rem;
}

.sidebar__nav {
    flex: 1;
    padding: 0.75rem 0.55rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.8rem;
    color: #5c544d;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: 7px;
    transition: all 0.18s ease;
}

.sidebar__link:hover {
    background: rgba(168, 137, 79, 0.08);
    color: #1e1b18;
    transform: translateX(2px);
}

.sidebar__link.active {
    background: rgba(201, 169, 110, 0.22);
    color: #8c6c30;
    font-weight: 600;
}

.sidebar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar__icon svg {
    width: 17px;
    height: 17px;
    stroke-width: 1.8;
}

.sidebar__link.active .sidebar__icon svg {
    stroke: #8c6c30;
}

.sidebar__footer {
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(168, 137, 79, 0.15);
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.admin-user__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a96e, #a8894f);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 2px 5px rgba(168, 137, 79, 0.2);
}

.admin-user__name {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1e1b18;
    line-height: 1.2;
}

.admin-user__role {
    font-size: 0.7rem;
    color: #8c827a;
}

/* Sidebar Backdrop (Mobile) */
.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 95;
}

.sidebar-backdrop.open {
    display: block;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 1rem 1.25rem;
    min-height: 100vh;
    max-width: calc(100vw - var(--sidebar-width));
    overflow-x: hidden;
}

.section {
    display: block;
}

.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.section__header h2 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 0.3px;
}

/* ============ STATS GRID (6 Cards In 1 Row on Desktop) ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.stat-card {
    background: var(--color-white);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid rgba(220, 214, 204, 0.75);
    box-shadow: 0 1px 3px rgba(30, 27, 24, 0.03);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 0;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(30, 27, 24, 0.06);
    border-color: rgba(201, 169, 110, 0.45);
}

.stat-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.stat-card__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    color: #857c72;
    font-family: var(--font-sans);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-card__value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #171513;
    line-height: 1.15;
    letter-spacing: -0.3px;
    font-family: var(--font-sans);
}

.stat-card__icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.stat-card:hover .stat-card__icon {
    transform: scale(1.06);
}

.stat-card__icon svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.9;
}

/* Stat card minimal accent variants */
.stat-card--gold .stat-card__icon { background: #fdf8ed; color: #b08226; border: 1px solid #f6e6be; }
.stat-card--bronze .stat-card__icon { background: #fdf4ed; color: #b45309; border: 1px solid #fedbc0; }
.stat-card--emerald .stat-card__icon { background: #ecfdf5; color: #059669; border: 1px solid #bbf7d0; }
.stat-card--indigo .stat-card__icon { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.stat-card--violet .stat-card__icon { background: #f5f3ff; color: #7c3aed; border: 1px solid #ddd6fe; }
.stat-card--rose .stat-card__icon { background: #fff1f2; color: #e11d48; border: 1px solid #fecdd3; }

/* ============ ANALYTICS CHARTS ============ */
.analytics-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.chart-container {
    position: relative;
    height: 235px;
    padding: 0.75rem 1.25rem 1rem;
    width: 100%;
}

.chart-container--pie {
    height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.chart-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
}

.card__subtitle {
    font-size: 0.74rem;
    color: var(--color-muted);
    font-weight: 500;
    margin-top: 0.15rem;
    letter-spacing: 0.2px;
}

/* ============ CARDS ============ */
.card {
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 3px rgba(30, 27, 24, 0.03);
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.card__header {
    padding: 0.85rem 1.25rem;
    background: #faf8f5;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card__header h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    letter-spacing: 0.3px;
}

.card__link {
    color: var(--color-gold-dark);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.card__link:hover {
    color: var(--color-charcoal);
    transform: translateX(3px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.3fr;
    gap: 1.25rem;
}

/* ============ TABLES ============ */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
    text-align: left;
}

.table th {
    background: #faf7f2;
    padding: 0.95rem 1.15rem;
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #6d6459;
    border-bottom: 1.5px solid var(--color-border);
    white-space: nowrap;
}

.table td {
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #f1ece4;
    vertical-align: middle;
    color: var(--color-charcoal);
    font-size: 0.88rem;
}

.table tbody tr {
    transition: background 0.18s ease;
}

.table tbody tr:hover {
    background: #fdfbf7;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.order-code {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.3px;
    display: inline-block;
}

.table-clickable-cell {
    color: var(--color-charcoal);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.table-clickable-cell:hover {
    color: #a8894f;
    text-decoration: underline;
}

.table-item-pill {
    font-weight: 600;
    font-size: 0.8rem;
    color: #6e6459;
    background: #f6f2ea;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #eae3d6;
    cursor: pointer;
    transition: all 0.15s ease;
    display: inline-block;
}

.table-item-pill:hover {
    background: #ede6d8;
    border-color: #c9baa4;
    color: var(--color-charcoal);
}

.table .product-thumb {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.table .actions {
    display: flex;
    gap: 0.4rem;
    white-space: nowrap;
}

/* ============ PAGINATION ============ */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border-top: 1px solid var(--color-border);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.pagination-info {
    font-size: 0.78rem;
    color: var(--color-muted);
    font-weight: 500;
}

.pagination-info strong {
    color: var(--color-charcoal);
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 0.5rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-charcoal);
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    background: #fdfaf3;
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #c9a96e 0%, #a8894f 100%);
    color: var(--color-white);
    border-color: #a8894f;
    box-shadow: 0 2px 5px rgba(168, 137, 79, 0.25);
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: #f8f6f0;
    border-color: var(--color-border-subtle);
}

/* ============ PILL BADGES ============ */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0.24rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1;
    white-space: nowrap;
}

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
}

/* Delivered / Completed / Active */
.status-badge--delivered,
.status-badge--completed,
.status-badge--active {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}
.status-badge--delivered .status-dot,
.status-badge--completed .status-dot,
.status-badge--active .status-dot {
    background: #059669;
}

/* Processing / New */
.status-badge--processing,
.status-badge--new {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}
.status-badge--processing .status-dot,
.status-badge--new .status-dot {
    background: #2563eb;
}

/* Shipped */
.status-badge--shipped {
    background: #faf5ff;
    color: #7e22ce;
    border: 1px solid #e9d5ff;
}
.status-badge--shipped .status-dot {
    background: #9333ea;
}

/* Pending */
.status-badge--pending {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}
.status-badge--pending .status-dot {
    background: #d97706;
}

/* Cancelled / Failed / Inactive */
.status-badge--cancelled,
.status-badge--failed,
.status-badge--inactive {
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
}
.status-badge--cancelled .status-dot,
.status-badge--failed .status-dot,
.status-badge--inactive .status-dot {
    background: #e11d48;
}

/* Refunded / Read */
.status-badge--refunded,
.status-badge--read,
.status-badge--info {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
}
.status-badge--refunded .status-dot,
.status-badge--read .status-dot,
.status-badge--info .status-dot {
    background: #64748b;
}

/* Product Luxury Badges */
.status-badge--bestseller,
.status-badge--most-popular,
.status-badge--mostpopular {
    background: #fdfaf3;
    color: #967027;
    border: 1px solid #e8d7b3;
    font-weight: 700;
}
.status-badge--luxury {
    background: #faf5ff;
    color: #6b21a8;
    border: 1px solid #e9d5ff;
    font-weight: 700;
}
.status-badge--limited {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
    font-weight: 700;
}

/* ============ CUSTOMER PILL BADGES ============ */
.customer-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.28rem 0.75rem 0.28rem 0.35rem;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-sans);
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f7f4ee;
    color: var(--color-charcoal);
    line-height: 1;
    white-space: nowrap;
}

.customer-pill-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    filter: brightness(0.97);
}

.customer-pill-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.customer-pill-name {
    letter-spacing: 0.1px;
}

/* ============ PAYMENT STATUS SELECT ============ */
.payment-status-select {
    padding: 0.3rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: 1px solid var(--color-border);
    font-family: var(--font-sans);
    outline: none;
}

.payment-status-select.pay-badge--paid {
    background: #ecfdf5;
    color: #047857;
    border-color: #a7f3d0;
}

.payment-status-select.pay-badge--unpaid {
    background: #fffbeb;
    color: #b45309;
    border-color: #fde68a;
}

.payment-status-select.pay-badge--failed {
    background: #fff1f2;
    color: #be123c;
    border-color: #fecdd3;
}

.payment-status-select.pay-badge--refunded {
    background: #f8fafc;
    color: #475569;
    border-color: #cbd5e1;
}

/* ============ MESSAGE LIST ============ */
.message-list {
    padding: 0.25rem 0;
}

.message-item {
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--color-border-subtle);
    cursor: pointer;
    transition: all 0.18s ease;
}

.message-item:hover {
    background: #fdfbf7;
    transform: translateX(2px);
}

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

.message-item__name {
    font-weight: 600;
    font-size: 0.86rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-item__subject {
    color: #655d54;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    line-height: 1.35;
}

.message-item__date {
    font-size: 0.72rem;
    color: var(--color-muted);
    margin-top: 0.3rem;
}

/* ============ TABLE TOOLBAR & INPUTS ============ */
.table-toolbar {
    padding: 0.85rem 1.25rem;
    display: flex;
    gap: 0.85rem;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
    background: #ffffff;
}

.input {
    padding: 0.52rem 0.85rem;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    font-size: 0.84rem;
    font-family: var(--font-sans);
    transition: all 0.2s ease;
    background: #ffffff;
    color: var(--color-charcoal);
}

.input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.input--search {
    flex: 1;
    min-width: 200px;
}

.input--select {
    min-width: 160px;
    cursor: pointer;
}

/* ============ CONTACT INFO GRID ============ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
    padding: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: #faf8f5;
    border-radius: 9px;
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
}

.contact-info-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--color-gold);
}

.contact-info-item__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.18);
    color: #8c6d32;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.contact-info-item p {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.35;
}

/* ============ MODALS (Minimal & Luxury Style) ============ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(22, 19, 16, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    animation: modalFadeIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 88vh;
    overflow: hidden;
    box-shadow: 0 24px 48px -12px rgba(18, 16, 14, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal__form-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 88vh;
    overflow: hidden;
    width: 100%;
}

.modal::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

@keyframes modalSlideUp {
    from { transform: translateY(12px) scale(0.98); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal--wide {
    max-width: 680px;
}

.modal__header {
    padding: 1.25rem 1.75rem 1rem;
    background: #ffffff;
    border-bottom: 1px solid #f3ede2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    z-index: 10;
}

.modal__header h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: -0.01em;
}

.modal__close {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    color: #8c827a;
    transition: all 0.2s ease;
    line-height: 1;
}

.modal__close:hover {
    background: #f7f4ee;
    color: var(--color-charcoal);
}

.modal__body {
    padding: 1.5rem 1.75rem 2rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #dcd3c5 transparent;
    flex: 1;
    min-height: 0;
}

.modal__body::-webkit-scrollbar {
    width: 6px;
}

.modal__body::-webkit-scrollbar-track {
    background: transparent;
}

.modal__body::-webkit-scrollbar-thumb {
    background: #e2dacd;
    border-radius: 4px;
}

.modal__body::-webkit-scrollbar-thumb:hover {
    background: #c9baa4;
}

.modal__footer {
    padding: 1rem 1.75rem;
    background: #faf8f5;
    border-top: 1px solid #f3ede2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.03);
    z-index: 10;
}

/* ============ FORMS (Minimal & Refined) ============ */
.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.45rem;
    color: #5a524a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid #e4ddd2;
    border-radius: 8px;
    font-size: 0.86rem;
    font-family: var(--font-sans);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    color: var(--color-charcoal);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aba298;
    font-size: 0.82rem;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #c9baa4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c746b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 14px;
    padding-right: 2.2rem;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
    line-height: 1.45;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.15rem;
}

.form-group--full {
    grid-column: 1 / -1;
}

/* ============ DETAILS VIEWS ============ */
.detail-section {
    margin-bottom: 1.25rem;
}

.detail-section h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
    margin-bottom: 0.6rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--color-border);
    font-weight: 700;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f6f3ee;
    font-size: 0.82rem;
}

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

.detail-row__label {
    color: var(--color-muted);
    font-weight: 500;
}

.detail-row__value {
    font-weight: 600;
    text-align: right;
}

.order-items-list {
    margin-top: 0.4rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f6f3ee;
}

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

.order-item img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid var(--color-border);
}

.order-item__info {
    flex: 1;
}

.order-item__name {
    font-weight: 600;
    font-size: 0.85rem;
}

.order-item__meta {
    font-size: 0.75rem;
    color: var(--color-muted);
}

.order-item__price {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-charcoal);
}

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #1e1b18;
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast--success {
    background: #065f46;
    border-color: #059669;
}

.toast--error {
    background: #9f1239;
    border-color: #e11d48;
}

/* ============ EMPTY STATE ============ */
.empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--color-muted);
}

.empty-state__icon {
    font-size: 2.2rem;
    margin-bottom: 0.65rem;
}

.empty-state__text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============ PRODUCT SPECIFIC STYLES ============ */
.product-id-badge {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #786e64;
    background: #f7f4ee;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e8e2d5;
    letter-spacing: 0.4px;
    display: inline-block;
}

.table-product-cell {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.table .product-thumb {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.table-product-cell .product-thumb-wrap {
    position: relative;
    flex-shrink: 0;
}

.table-product-cell .img-count-badge {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--color-charcoal);
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.5px 3px;
    border-radius: 3px;
    border: 1px solid #fff;
    line-height: 1;
}

.table-product-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.table-product-title {
    font-weight: 700;
    color: var(--color-charcoal);
    font-size: 0.85rem;
    letter-spacing: -0.1px;
}

.table-product-desc {
    font-size: 0.72rem;
    color: #756d64;
    max-width: 240px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
}

/* Compact Table Utility */
.table--compact th {
    padding: 0.65rem 0.85rem;
    font-size: 0.7rem;
}

.table--compact td {
    padding: 0.6rem 0.85rem;
    font-size: 0.83rem;
}

.table-specs-cell {
    max-width: 150px;
    font-size: 0.75rem;
    color: #554e47;
    line-height: 1.2;
}

/* Image Upload & Multi-Image Manager */
.image-upload-zone {
    border: 1.5px dashed #dcd3c5;
    border-radius: 12px;
    background: #fbf9f6;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.image-upload-zone:hover,
.image-upload-zone.dragover {
    border-color: var(--color-gold);
    background: #fdfbf7;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.08);
}

.image-upload-zone__icon {
    color: #9e7f47;
    margin-bottom: 0.15rem;
    transition: transform 0.2s ease;
}

.image-upload-zone:hover .image-upload-zone__icon {
    transform: translateY(-2px);
}

.image-upload-zone__text {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.image-upload-zone__subtext {
    font-size: 0.72rem;
    color: #8c827a;
}

.image-previews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.image-preview-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e2d8;
    aspect-ratio: 1 / 1;
    background: #f8f6f2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.image-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-preview-card .btn-remove-img {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    background: rgba(225, 29, 72, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.15s ease, background 0.15s ease;
}

.image-preview-card .btn-remove-img:hover {
    background: #e11d48;
    transform: scale(1.15);
}

.image-preview-card .primary-tag {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(26, 23, 20, 0.85);
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 5px;
    border-radius: 4px;
}

.input-readonly {
    background: #f8f6f0 !important;
    color: #7c746b !important;
    cursor: not-allowed;
    border-style: dashed !important;
    font-family: 'SF Mono', Monaco, Consolas, monospace !important;
    font-weight: 600 !important;
}

/* ============ RESPONSIVE BREAKPOINTS ============ */
/* Tablet & Medium Screens */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .main-content {
        margin-left: 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .dashboard-grid,
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile & Small Tablet */
@media (max-width: 768px) {
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 99;
        background: var(--color-bg);
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        width: 100%;
        box-sizing: border-box;
    }

    .sidebar {
        transform: translateX(-100%);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0.85rem 0.75rem;
        box-sizing: border-box;
    }

    .section__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.65rem;
        margin-bottom: 1rem;
    }

    .section__header h2 {
        font-size: 1.3rem;
    }

    .section__header .btn {
        font-size: 0.78rem;
        padding: 0.42rem 0.85rem;
        white-space: nowrap;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .card {
        padding: 0.85rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        width: 100% !important;
        box-sizing: border-box;
    }

    .table-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        margin-bottom: 0.85rem;
    }

    .input--search,
    .input--select {
        width: 100% !important;
        min-width: 0;
        box-sizing: border-box;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .table {
        min-width: 650px;
    }

    .table td, .table th {
        padding: 0.55rem 0.5rem;
        font-size: 0.8rem;
    }

    .pagination-container {
        flex-direction: column;
        gap: 0.65rem;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding-top: 0.75rem;
    }

    .pagination-info {
        font-size: 0.76rem;
    }

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

    .form-group--full {
        grid-column: auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .modal-overlay {
        padding: 0.5rem;
        align-items: flex-start;
        padding-top: 1.5rem;
    }

    .modal, .modal--wide {
        width: 100% !important;
        max-width: 96vw !important;
        max-height: 88vh;
        overflow-y: auto;
        border-radius: 10px;
        padding: 0;
    }

    .modal__header {
        padding: 0.85rem 1rem;
        position: sticky;
        top: 0;
        background: var(--color-white);
        z-index: 10;
        border-bottom: 1px solid var(--color-border);
    }

    .modal__body {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0.65rem 0.5rem;
    }

    .section__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .section__header h2 {
        font-size: 1.15rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.6rem 0.7rem;
    }

    .stat-card__label {
        font-size: 0.7rem;
    }

    .stat-card__value {
        font-size: 1.1rem;
    }

    .table-spec-chip {
        font-size: 0.7rem;
        padding: 2px 5px;
    }
}

/* ============ SPECIFICATIONS BADGES & TAGS ============ */
.specs-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.specs-input-wrapper input {
    flex: 1;
}

.specs-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    min-height: 28px;
    padding: 0.4rem 0.5rem;
    background: #faf8f5;
    border: 1px dashed #dfd7cb;
    border-radius: 7px;
}

.specs-badges-container:empty::before {
    content: "No specification badges added yet.";
    font-size: 0.76rem;
    color: var(--color-muted);
    font-style: italic;
}

.spec-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f4eee2;
    color: #4a4237;
    border: 1px solid #dfd4c0;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.15s ease;
}

.spec-badge-pill:hover {
    background: #ebe1cf;
    border-color: #cbb99d;
}

.spec-badge-pill .btn-remove-spec {
    background: none;
    border: none;
    color: #928373;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    padding: 0 2px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-badge-pill .btn-remove-spec:hover {
    color: #e11d48;
}

.table-specs-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    max-width: 260px;
}

.table-spec-chip {
    display: inline-flex;
    align-items: center;
    background: #fbf7ee;
    color: #5c5245;
    border: 1px solid #eae2d2;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 1.5px 5px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

