:root {
    --primary: #4F46E5;
    --primary-hover: #4338CA;
    --primary-light: #EEF2FF;
    --success: #10B981;
    --success-hover: #059669;
    --warning: #F59E0B;
    --danger: #EF4444;
    --background: #F3F4F6;
    --surface: #FFFFFF;
    --sidebar: #1E1B4B;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --col-1: #6366F1;
    --col-2: #F59E0B;
    --col-3: #8B5CF6;
    --col-4: #EC4899;
    --col-5: #10B981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
}

.dashboard {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background-color: var(--sidebar);
    color: white;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.logo {
    padding: 24px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo i {
    color: var(--primary);
}

.nav-links {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.nav-links a.active {
    background-color: rgba(79, 70, 229, 0.2);
    color: white;
    border-left: 4px solid var(--primary);
}

.user-profile {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--col-3));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.user-profile .info {
    display: flex;
    flex-direction: column;
}

.user-profile .name {
    font-weight: 600;
    font-size: 14px;
}

.user-profile .role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.top-header {
    height: 72px;
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 32px;
}

.search-bar {
    position: relative;
    width: 300px;
}

.search-bar i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    background-color: var(--background);
    transition: all 0.2s;
}

.search-bar input:focus {
    border-color: var(--primary);
    background-color: var(--surface);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: white;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--background);
}

.notifications {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
}

.notifications .badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background-color: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--surface);
}

/* Board Area */
.board-header {
    padding: 24px 32px;
}

.board-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.board-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.kanban-board {
    display: flex;
    gap: 20px;
    padding: 0 32px 32px 32px;
    overflow-x: auto;
    height: calc(100vh - 180px);
    /* Fill remaining space */
}

/* Columns */
.kanban-column {
    min-width: 300px;
    max-width: 300px;
    background-color: rgba(243, 244, 246, 0.7);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.column-header {
    padding: 16px;
    border-bottom: 2px solid transparent;
}

.highlight-col {
    background-color: rgba(245, 158, 11, 0.05);
    /* very soft orange */
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.col-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.col-title .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.color-1 {
    background-color: var(--col-1);
}

.dot.color-2 {
    background-color: var(--col-2);
}

.dot.color-3 {
    background-color: var(--col-3);
}

.dot.color-4 {
    background-color: var(--col-4);
}

.dot.color-5 {
    background-color: var(--col-5);
}

.col-title h2 {
    font-size: 15px;
    font-weight: 600;
    flex-grow: 1;
}

.col-title .count {
    background: var(--border);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.kanban-cards {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Cards */
.card {
    background-color: var(--surface);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.3);
}

.card-highlight {
    border: 1px solid var(--success);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: -4px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.tag-new {
    background-color: #DBEAFE;
    color: #1D4ED8;
}

.tag-normal {
    background-color: #F1F5F9;
    color: #475569;
}

.tag-material {
    background-color: #F3E8FF;
    color: #7E22CE;
}

.tag-urgent {
    background-color: #FEE2E2;
    color: #B91C1C;
}

.tag-warning {
    background-color: #FEF3C7;
    color: #B45309;
}

.tag-success {
    background-color: #D1FAE5;
    color: #047857;
}

.card h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-main);
}

.card .desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.card .desc-small {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.cost-info {
    background-color: #F8FAFC;
    border-radius: 6px;
    padding: 10px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cost-info.highlighted {
    background-color: #F0F9FF;
    border-color: #BAE6FD;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.info-row .label {
    color: var(--text-muted);
}

.info-row .value {
    font-weight: 600;
}

.info-row .price {
    color: var(--text-main);
    font-size: 14px;
}

.info-row .price.blue {
    color: #0284C7;
    font-weight: 700;
    font-size: 15px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--col-3);
    border-radius: 3px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px dashed var(--border);
    padding-top: 10px;
    margin-top: auto;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-action {
    margin-top: 4px;
}

.btn-action {
    width: 100%;
    padding: 10px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.btn-action.secondary {
    background-color: var(--background);
    color: var(--text-muted);
}

.btn-action.outline {
    background-color: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* The VIP Button for CEO */
.btn-action.primary-glow {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulse 2s infinite;
}

.btn-action.primary-glow:hover {
    background: #059669;
    transform: scale(1.02);
}

.btn-action.success {
    background-color: #F0FDF4;
    color: #166534;
    border: 1px solid #BBF7D0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Custom Scrollbar for Kanban */
.kanban-board::-webkit-scrollbar {
    height: 8px;
}

.kanban-board::-webkit-scrollbar-track {
    background: transparent;
}

.kanban-board::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 4px;
}

.kanban-cards::-webkit-scrollbar {
    width: 4px;
}

.kanban-cards::-webkit-scrollbar-track {
    background: transparent;
}

.kanban-cards::-webkit-scrollbar-thumb {
    background-color: #D1D5DB;
    border-radius: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dashboard {
        flex-direction: column;
    }

    /* Hide sidebar by default on mobile, can add hamburger menu later */
    .sidebar {
        display: none;
    }

    .top-header {
        padding: 0 16px;
        height: auto;
        min-height: 60px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .search-bar {
        width: 100%;
        order: 2;
        padding-bottom: 12px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
        order: 1;
        padding-top: 12px;
    }

    .btn-outline {
        display: none;
        /* Hide filter button to save space */
    }

    .board-header {
        padding: 16px;
    }

    .board-header h1 {
        font-size: 20px;
    }

    /* Native Horizontal Snap Scrolling for Mobile Kanban */
    .kanban-board {
        padding: 0 16px 16px 16px;
        flex-direction: column;
        height: auto;
        /* we override this for tab layout via JS by showing/hiding columns */
    }

    .kanban-column {
        width: 100%;
        max-width: 100%;
        min-height: 500px;
        display: none;
        /* Hidden by default on mobile, JS will show active */
    }

    .kanban-column.active-tab {
        display: flex;
        /* Show only active column */
    }

    /* Mobile Tab Navigation Styles */
    .mobile-tabs {
        display: flex !important;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        overflow-x: auto;
        padding: 0 16px;
        margin-bottom: 16px;
        scrollbar-width: none;
        /* Firefox */
    }

    .mobile-tabs::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .m-tab {
        background: none;
        border: none;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-muted);
        white-space: nowrap;
        border-bottom: 3px solid transparent;
        cursor: pointer;
        transition: all 0.2s;
    }

    .m-tab.active {
        color: var(--primary);
        border-bottom-color: var(--primary);
    }

    /* Full screen modal for Mobile */
    .modal-content {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .modal-header {
        padding: 16px;
    }

    .modal-body {
        padding: 16px;
    }

    .modal-footer {
        padding: 16px;
    }

    .step-header {
        padding: 12px 16px;
    }

    .step-body {
        padding: 16px;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 24, 39, 0.5);
    /* dark backdrop */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--surface);
    width: 90%;
    max-width: 1000px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-title h2 i {
    color: var(--primary);
}

.modal-title .subtitle {
    margin-top: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.btn-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close:hover {
    color: var(--text-main);
}

.modal-body {
    padding: 24px 32px;
    overflow-y: auto;
    flex-grow: 1;
}

.table-container {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
}

.bom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;
}

.bom-table th {
    background-color: var(--background);
    padding: 12px 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.bom-table td {
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.table-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: transparent;
    font-size: 13px;
    transition: all 0.2s;
}

.table-input:hover {
    background-color: var(--background);
}

.table-input:focus {
    background-color: var(--surface);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--primary-light);
}

.text-center {
    text-align: center;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
}

.btn-icon:hover {
    background-color: var(--background);
}

.btn-icon.danger:hover {
    color: var(--danger);
    background-color: #FEE2E2;
}

.btn-add-row {
    width: 100%;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 12px;
    color: var(--text-muted);
    background-color: var(--surface);
}

.btn-add-row:hover {
    background-color: var(--background);
    color: var(--primary);
}

.bom-summary {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    gap: 12px;
}

.summary-box {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.summary-total {
    background-color: #F0F9FF;
    border: 1px solid #BAE6FD;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
}

.summary-total .value {
    font-size: 24px;
    font-weight: 700;
    color: #0284C7;
}

.modal-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.footer-left {
    display: flex;
    gap: 12px;
}

/* History Timeline */
.history-timeline {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.timeline-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-main);
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.log-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
}

.log-item .time {
    color: var(--text-muted);
    min-width: 80px;
    font-size: 12px;
}

.log-item .status {
    font-weight: 600;
    color: var(--primary);
}

.log-item .msg {
    color: var(--text-main);
}

/* Back Button */
.btn-back {
    font-size: 12px;
    color: var(--text-muted);
    background: none;
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-back:hover {
    background-color: var(--background);
    color: var(--danger);
    border-color: var(--danger);
}

.card-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

/* Media Upload Area */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.upload-area:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

.reference-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.ref-item {
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.ref-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.ref-item .ref-label {
    padding: 4px 8px;
    font-size: 11px;
    background-color: var(--surface);
    border-top: 1px solid var(--border);
}

/* =============================================================================
   STEP SECTION ACCORDION (Cumulative Project Modal)
   ============================================================================= */
.step-section {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    background-color: var(--surface);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--border);
}

.step-number {
    font-size: 11px;
    font-weight: 800;
    color: white;
    background: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
}

.step-badge {
    font-size: 12px;
    font-weight: 600;
}

.step-body {
    padding: 20px;
}

/* Global memo area */
.global-memo-area {
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

/* Field-based form layout */
.field-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.field-memo {
    min-height: 100px;
    font-size: 13px;
    line-height: 1.6;
    padding: 12px;
    resize: vertical;
}

.readonly-row {
    font-size: 13px;
    margin-bottom: 4px;
}

.readonly-label {
    font-weight: 700;
    color: var(--primary);
    margin-right: 6px;
}

.readonly-section {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: var(--text-body);
}

.readonly-section strong {
    color: var(--text-main);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =============================================================================
   VISUAL PART SEARCH CARDS (Step 4 Pricing)
   ============================================================================= */
.visual-search-results {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 12px;
    max-height: 300px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--background);
}

.visual-part-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.visual-part-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
    transform: translateY(-1px);
}

.visual-part-card.selected {
    border-color: #10B981;
    background: linear-gradient(135deg, #ECFDF5 0%, var(--surface) 100%);
}

.visual-part-card.readonly {
    cursor: default;
    opacity: 0.9;
}

.visual-part-card img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.vp-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.vp-info strong {
    font-size: 13px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vp-specs {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'Courier New', monospace;
    background-color: var(--background);
    padding: 2px 6px;
    border-radius: 3px;
    display: inline-block;
}

.vp-price {
    font-size: 13px;
    font-weight: 700;
    color: #0284C7;
}

.vp-stock {
    font-size: 11px;
    font-weight: 600;
}

.selected-parts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Card thumbnail images - uniform size */
.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    display: block;
}