/* [project]/src/components/configurator/StepProgressBar.css [app-client] (css) */
.step-bar {
  scrollbar-width: none;
  -ms-overflow-style: none;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: .375rem 0 1.25rem;
  display: flex;
  overflow-x: auto;
}

.step-bar::-webkit-scrollbar {
  display: none;
}

.step-item {
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: .4375rem;
  min-width: 80px;
  padding: 0;
  transition: opacity .15s;
  display: flex;
  position: relative;
}

.step-item:disabled {
  cursor: not-allowed;
  opacity: .4;
}

.step-indicator-row {
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.step-connector-left, .step-connector-right {
  background-color: var(--border);
  flex: 1;
  height: 2px;
  transition: background-color .3s;
}

.step-connector-left.filled, .step-connector-right.filled, .step-connector-left.active-fill {
  background-color: var(--accent);
}

.step-item:first-child .step-connector-left, .step-item:last-child .step-connector-right {
  visibility: hidden;
}

.step-circle {
  border: 2px solid var(--border);
  background-color: var(--surface-alt);
  width: 34px;
  height: 34px;
  color: var(--text-secondary);
  z-index: 1;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .6875rem;
  font-weight: 700;
  transition: all .2s;
  display: flex;
  position: relative;
}

.step-item.active .step-circle {
  border-color: var(--accent);
  background-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 3px #00823c1f;
}

.step-item.completed .step-circle {
  border-color: var(--accent);
  background-color: var(--accent);
  color: #fff;
}

.step-label {
  color: var(--text-secondary);
  text-align: center;
  white-space: nowrap;
  font-size: .625rem;
  font-weight: 600;
  line-height: 1.2;
  transition: color .15s;
}

.step-item.active .step-label {
  color: var(--accent);
  font-weight: 700;
}

.step-item.completed .step-label {
  color: var(--accent);
}

.step-item:not(:disabled):hover .step-circle {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px #00823c14;
}

.step-item.completed:not(:disabled):hover .step-circle {
  box-shadow: 0 0 0 3px #00823c0f;
}

@media (max-width: 768px) {
  .step-item {
    min-width: 60px;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: .625rem;
  }

  .step-label {
    font-size: .5625rem;
  }
}

/* [project]/src/components/configurator/BuildSummary.css [app-client] (css) */
.build-summary {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  align-self: flex-start;
  width: 340px;
  padding: 1rem;
  position: sticky;
  top: 84px;
}

.summary-title {
  border-bottom: 1px solid var(--border);
  margin-bottom: .875rem;
  padding-bottom: .625rem;
  font-size: .9375rem;
  font-weight: 700;
}

.component-list {
  margin-bottom: .875rem;
}

.empty-msg {
  color: var(--text-secondary);
  text-align: center;
  padding: .875rem 0;
  font-size: .8125rem;
}

.component-row {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: flex-start;
  gap: .375rem;
  padding: .4375rem 0;
  display: flex;
}

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

.comp-info {
  flex-direction: column;
  gap: .125rem;
  min-width: 0;
  display: flex;
}

.comp-category {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-secondary);
  font-size: .5625rem;
  font-weight: 700;
  display: block;
}

.comp-name {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: .8125rem;
  font-weight: 500;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
}

.comp-actions {
  flex-shrink: 0;
  align-items: center;
  gap: .375rem;
  display: flex;
}

.comp-price {
  font-family: var(--font-mono);
  font-size: .8125rem;
  font-weight: 600;
}

.remove-btn {
  width: 20px;
  height: 20px;
  color: var(--error);
  cursor: pointer;
  background: #bf1e2e0f;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: .8125rem;
  line-height: 1;
  transition: background .15s;
  display: flex;
}

.remove-btn:hover {
  background: #bf1e2e1f;
}

.issues-section {
  margin-bottom: .875rem;
}

.issue {
  border-radius: var(--radius-sm);
  gap: .375rem;
  margin-bottom: .25rem;
  padding: .375rem .5rem;
  font-size: .6875rem;
  line-height: 1.4;
  display: flex;
}

.issue.error {
  color: var(--error);
  background: #bf1e2e0d;
}

.issue.warning {
  color: #c07000;
  background: #f08c000d;
}

.issue-icon {
  flex-shrink: 0;
  font-weight: 700;
}

.pricing {
  border-top: 1px solid var(--border);
  margin-bottom: .875rem;
  padding-top: .625rem;
}

.price-row {
  color: var(--text-secondary);
  justify-content: space-between;
  padding: .1875rem 0;
  font-size: .8125rem;
  display: flex;
}

.price-row.sub {
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  margin-top: .25rem;
  padding-top: .375rem;
  font-weight: 600;
}

.price-row.total {
  color: var(--text-primary);
  border-top: 2px solid var(--accent);
  margin-top: .25rem;
  padding-top: .5rem;
  font-size: .9375rem;
  font-weight: 700;
}

.finance-hint {
  color: var(--text-secondary);
  text-align: center;
  margin-top: .5rem;
  font-size: .6875rem;
}

.summary-actions {
  flex-direction: column;
  gap: .375rem;
  display: flex;
}

@media (max-width: 1024px) {
  .build-summary {
    width: 100%;
    position: static;
  }
}

/* [project]/src/components/product/ComponentCard.css [app-client] (css) */
.component-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.component-card:before {
  display: none;
}

.component-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #bbb;
}

.component-card--selectable {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.component-card--selectable:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px #00823c1f;
}

.component-card--selectable:active {
  transform: scale(.99);
}

.component-card .card-link {
  color: inherit;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  display: flex;
}

.component-card .card-image-wrap {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--border);
  background: #fff;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.component-card .card-image-wrap:after {
  display: none;
}

.component-card .card-image-wrap img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  transition: transform .3s;
}

.component-card:hover .card-image-wrap img {
  transform: scale(1.03);
}

.card-category-tag {
  text-transform: uppercase;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  z-index: 1;
  border: 1px solid #00823c1f;
  padding: .1875rem .4375rem;
  font-size: .5625rem;
  font-weight: 700;
  position: absolute;
  top: 8px;
  left: 8px;
}

.component-card .card-body {
  flex-direction: column;
  flex: 1;
  gap: .25rem;
  padding: .875rem 1rem 1rem;
  display: flex;
}

.component-card .card-brand {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  font-size: .625rem;
  font-weight: 700;
}

.component-card .card-name {
  color: var(--scan-blue);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.component-card .card-specs {
  flex-wrap: wrap;
  gap: .25rem;
  margin-top: .25rem;
  display: flex;
}

.component-card .spec-pill {
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
  padding: .125rem .375rem;
  font-size: .5625rem;
  font-weight: 600;
  overflow: hidden;
}

.component-card .card-footer {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: .625rem;
  display: flex;
}

.stock-indicator {
  letter-spacing: .02em;
  text-transform: uppercase;
  align-items: center;
  gap: .375rem;
  font-size: .625rem;
  font-weight: 600;
  display: flex;
}

.stock-indicator .stock-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.stock-indicator.in-stock {
  color: var(--accent);
}

.stock-indicator.in-stock .stock-dot {
  background: var(--accent);
}

.stock-indicator.out-of-stock {
  color: var(--text-secondary);
}

.stock-indicator.out-of-stock .stock-dot {
  background: #bbb;
}

.btn-add-build {
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: .375rem;
  width: calc(100% - 1.5rem);
  margin: 0 .75rem .75rem;
  padding: .4375rem;
  font-family: inherit;
  font-size: .6875rem;
  font-weight: 700;
  transition: background .15s, box-shadow .15s;
  display: flex;
}

.btn-add-build:hover {
  background: var(--accent-hover);
  box-shadow: 0 2px 8px #00823c33;
}

.btn-add-build:active {
  transform: translateY(0);
}

/* [project]/src/components/ui/Modal.css [app-client] (css) */
.modal-overlay {
  z-index: 9999;
  background: #00000073;
  justify-content: center;
  align-items: center;
  animation: .15s ease-out modalFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(.96)translateY(6px);
  }

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

.modal-panel {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-direction: column;
  max-height: 90vh;
  animation: .2s ease-out modalSlideIn;
  display: flex;
  overflow: hidden;
  box-shadow: 0 16px 48px #00000026;
}

.modal-sm {
  width: min(420px, 92vw);
}

.modal-md {
  width: min(560px, 92vw);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  display: flex;
}

.modal-header-danger {
  background: #bf1e2e0a;
  border-bottom-color: #bf1e2e1f;
}

.modal-title {
  letter-spacing: -.01em;
  margin: 0;
  font-size: .9375rem;
  font-weight: 700;
}

.modal-header-danger .modal-title {
  color: var(--error);
}

.modal-close {
  background: var(--surface);
  border-radius: var(--radius-md);
  width: 26px;
  height: 26px;
  color: var(--text-secondary);
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  font-size: .75rem;
  transition: background .15s, color .15s;
  display: flex;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.modal-body {
  color: var(--text-secondary);
  padding: 18px;
  font-size: .875rem;
  overflow-y: auto;
}

.modal-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  display: flex;
}

.btn-danger {
  background: var(--error);
  color: #fff;
  border: 1px solid var(--error);
}

.btn-danger:hover {
  background: #a31826;
  border-color: #a31826;
}

/* [project]/src/app/configurator/page.css [app-client] (css) */
.configurator-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a2332 100%);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.configurator-hero-content {
  z-index: 1;
  position: relative;
}

.configurator-hero h1 {
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .375rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
}

.configurator-hero-accent {
  color: var(--accent);
}

.configurator-hero p {
  color: #ffffff8c;
  margin: 0;
  font-size: .9375rem;
  line-height: 1.6;
}

.configurator-content {
  padding: 1.5rem 0 3.5rem;
}

.configurator-layout {
  align-items: flex-start;
  gap: 1.5rem;
  display: flex;
}

.picker-section {
  flex: 1;
  min-width: 0;
}

.picker-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  display: flex;
}

.picker-header h2 {
  margin: 0;
  font-size: 1.125rem;
}

.selected-badge {
  color: var(--accent);
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  border: 1px solid #00823c1f;
  padding: .1875rem .625rem;
  font-size: .6875rem;
  font-weight: 700;
}

.compat-filters {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: center;
  gap: .625rem;
  margin-bottom: 1rem;
  padding: .625rem .875rem;
  animation: .3s cubic-bezier(.22, 1, .36, 1) filterSlideIn;
  display: flex;
  position: relative;
  overflow: hidden;
}

.compat-filters:before {
  content: "";
  background: var(--accent);
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes filterSlideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filter-title {
  border-right: 1px solid var(--border);
  white-space: nowrap;
  align-items: center;
  gap: .375rem;
  padding-right: .625rem;
  display: flex;
}

.filter-title-icon {
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  display: flex;
}

.filter-title-icon svg {
  fill: none;
  width: 13px;
  height: 13px;
  stroke: var(--accent);
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.filter-title-text {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-secondary);
  font-size: .625rem;
  font-weight: 700;
}

.filter-badges {
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  display: flex;
}

.filter-badge {
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  white-space: nowrap;
  align-items: center;
  gap: .25rem;
  padding: .25rem .625rem;
  font-size: .75rem;
  font-weight: 600;
  transition: border-color .15s;
  display: inline-flex;
}

.filter-badge:hover {
  border-color: var(--accent);
}

.filter-badge .filter-icon {
  font-size: .6875rem;
  line-height: 1;
}

.filter-badge .filter-label {
  color: var(--text-secondary);
  font-size: .6875rem;
  font-weight: 500;
}

.filter-badge .filter-value {
  color: var(--text-primary);
  font-size: .75rem;
  font-weight: 700;
}

.filter-dot {
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-left: auto;
  animation: 2s ease-in-out infinite filterPulse;
  box-shadow: 0 0 4px #00823c66;
}

@keyframes filterPulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.filter-sep {
  background: var(--border);
  flex-shrink: 0;
  width: 1px;
  height: 14px;
}

@media (max-width: 640px) {
  .compat-filters {
    flex-wrap: wrap;
    gap: .375rem;
  }

  .filter-title {
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    padding-bottom: .375rem;
    padding-right: 0;
  }

  .filter-dot {
    display: none;
  }
}

.picker-search {
  margin-bottom: 1rem;
}

.search-input {
  width: 100%;
  max-width: 400px;
  font-size: .875rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-color: var(--surface-alt);
  color: var(--text-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-position: .75rem;
  background-repeat: no-repeat;
  padding: .5rem .875rem .5rem 2.25rem;
  transition: border-color .15s;
}

.search-input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px #00823c1a;
}

.picker-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  display: grid;
}

.picker-item {
  border-radius: var(--radius-lg);
  transition: box-shadow .15s;
}

.picker-item.selected {
  box-shadow: 0 0 0 2px var(--accent);
  border-radius: var(--radius-lg);
}

.skeleton-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #e8e8e8 25%, #f4f4f4 50%, #e8e8e8 75%) 0 0 / 200% 100%;
  height: 280px;
  animation: 1.5s ease-in-out infinite configurator-shimmer;
}

@keyframes configurator-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.empty-state {
  text-align: center;
  color: var(--text-secondary);
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.empty-state p {
  margin: 0;
  font-size: .9375rem;
}

.step-nav {
  border-top: 1px solid var(--border);
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  display: flex;
}

@media (max-width: 1024px) {
  .configurator-layout {
    flex-direction: column-reverse;
  }

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

@media (max-width: 768px) {
  .configurator-hero {
    padding: 1.5rem 0;
  }

  .configurator-hero h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .picker-grid {
    grid-template-columns: 1fr;
  }

  .configurator-hero h1 {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=src_82ca5f8a._.css.map*/