/** Shopify CDN: Minification failed

Line 3381:0 Unexpected "}"
Line 4676:0 Unexpected "}"

**/
/* ========= BRANDING CALCULATOR (scoped) ========= */
#branding-calculator[data-bc]{position:fixed;inset:0;z-index:9999;display:none;}
#branding-calculator[data-bc].open{display:block;}
#branding-calculator .bc-overlay{position:absolute;inset:0;background:rgba(0,0,0,.45);}
#branding-calculator .bc-modal{
  position:relative;max-width:960px;margin:4vh auto;background:var(--bc-card-bg);
  border-radius:var(--bc-radius-card);box-shadow:0 24px 48px rgba(0,0,0,.25);
  padding:32px 36px;color:var(--bc-text);font-family:var(--font-body, inherit);
  max-height:92vh;overflow:auto;outline:none;
}
#branding-calculator .bc-close{
  position:absolute;top:14px;right:18px;font-size:28px;background:none;border:none;
  color:var(--bc-text);cursor:pointer;line-height:1;
}
[data-bc] h1,[data-bc] h2,[data-bc] h3{
  color:var(--bc-heading);margin:0 0 12px;font-weight:600;
}
[data-bc] p{margin:0 0 10px;}
/* Progress */
[data-bc] .bc-progress{display:flex;align-items:center;gap:10px;margin-bottom:24px;}
[data-bc] .bc-step{
  width:40px;height:40px;border-radius:50%;background:var(--bc-line);color:var(--bc-text);
  display:flex;align-items:center;justify-content:center;font-weight:600;position:relative;}
[data-bc] .bc-step[aria-current="step"]{background:var(--bc-primary);color:var(--bc-primary-text);}
[data-bc] .bc-step[data-complete="true"]{background:var(--bc-secondary);color:#fff;}
[data-bc] .bc-line{height:2px;background:var(--bc-line);flex:1;}
[data-bc] .bc-line[data-complete="true"]{background:var(--bc-secondary);}
/* Cards */
[data-bc] .bc-card{
  background:var(--bc-card-bg);border-radius:var(--bc-radius-card);
  padding:28px;box-shadow:0 2px 8px rgba(0,0,0,.05);margin-bottom:20px;}
/* Form */
[data-bc] label{font-weight:600;margin-bottom:6px;color:var(--bc-heading);display:block;}
[data-bc] select,[data-bc] input[type="number"],[data-bc] input[type="text"]{
  width:100%;padding:12px 14px;border:1.5px solid var(--bc-input-border);
  border-radius:var(--bc-radius-button);font-size:1rem;background:var(--bc-input-bg);
  color:var(--bc-input-text);transition:border-color .2s, box-shadow .2s;}
[data-bc] select:focus,[data-bc] input:focus{
  outline:none;border-color:var(--bc-primary);box-shadow:0 0 0 2px color-mix(in srgb, var(--bc-primary) 30%, transparent);
}
[data-bc] .help-text{font-size:.85rem;color:var(--bc-text);opacity:.6;margin-top:4px;}
/* Options grid */
[data-bc] .option-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px;}
[data-bc] .option-card{
  border:1.5px solid var(--bc-line);border-radius:var(--bc-radius-button);padding:18px;cursor:pointer;
  transition:all .25s;text-align:center;background:#fff;color:var(--bc-text);}
[data-bc] .option-card:hover{border-color:var(--bc-primary);box-shadow:0 4px 12px rgba(0,0,0,.08);}
[data-bc] .option-card[aria-pressed="true"]{
  border-color:var(--bc-primary);background:color-mix(in srgb, var(--bc-primary) 6%, white);
}
/* File upload */
[data-bc] .file-upload{
  border:2px dashed var(--bc-line);border-radius:var(--bc-radius-button);
  padding:36px;text-align:center;transition:all .3s;background:#fff;}
[data-bc] .file-upload.drag-over{border-color:var(--bc-primary);background:color-mix(in srgb, var(--bc-primary) 7%, white);}
[data-bc] .uploaded-file{background:color-mix(in srgb, var(--bc-secondary) 12%, white);
  border:1px solid var(--bc-secondary);border-radius:var(--bc-radius-button);
  padding:12px 14px;margin-top:10px;display:flex;align-items:center;justify-content:space-between;}
/* Quote */
[data-bc] .quote-summary{background:var(--bc-alt-bg);border-radius:var(--bc-radius-card);padding:22px;margin-top:18px;}
[data-bc] .quote-line{display:flex;justify-content:space-between;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid var(--bc-line);}
[data-bc] .quote-line:last-child{border-bottom:none;font-weight:700;font-size:1.05rem;}
/* Buttons */
[data-bc] .button-group{display:flex;gap:12px;margin-top:28px;}
@media(max-width:768px){[data-bc] .button-group{flex-direction:column;}[data-bc] .bc-card{padding:20px;}}
/* Use theme buttons */
[data-bc] .button{background:var(--bc-primary);color:var(--bc-primary-text);
  border:1px solid var(--bc-primary-border);padding:12px 22px;border-radius:var(--bc-radius-button);
  font-size:1rem;font-weight:600;cursor:pointer;transition:background .15s,transform .15s;display:inline-flex;align-items:center;gap:8px;text-decoration:none;}
[data-bc] .button:hover{background:var(--bc-primary-hover);color:var(--bc-primary-text-hover);transform:translateY(-1px);}
[data-bc] .button[disabled]{background:#9ca3af;cursor:not-allowed;transform:none;}
[data-bc] .button--secondary{background:var(--bc-secondary);color:var(--bc-secondary-text);border:1px solid var(--bc-secondary-border);}
[data-bc] .visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
/* Alerts */
[data-bc] .alert{padding:16px;border-radius:8px;margin-bottom:20px;font-weight:500;}
[data-bc] .alert[role="alert"]{background:color-mix(in srgb, var(--bc-secondary) 12%, white);color:var(--bc-secondary);}
[data-bc] .alert--success{background:color-mix(in srgb, var(--bc-primary) 10%, white);color:var(--bc-primary);}
/* Add these styles to your existing branding-calculator.css file */

/* Multi-variant grid styles */
.variant-table {
  border: 1px solid var(--bc-line, #e0e0e0);
  border-radius: var(--bc-radius-card, 16px);
  overflow: hidden;
  margin: 1rem 0;
  background: var(--bc-card-bg, #ffffff);
}

.variant-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bc-alt-bg, #f8f9fa);
  font-weight: 600;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  color: var(--bc-heading, #333);
}

.variant-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  align-items: center;
  transition: background-color 0.2s ease;
}

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

.variant-row:hover {
  background: var(--bc-alt-bg, #f8f9fa);
}

.variant-row.unavailable {
  opacity: 0.5;
  background: rgba(128, 128, 128, 0.1);
}

.variant-row.unavailable:hover {
  background: rgba(128, 128, 128, 0.15);
}

.size-label {
  font-weight: 500;
  color: var(--bc-text, #333);
}

.quantity-input {
  min-width: 80px;
}

.quantity-input input {
  width: 100%;
  max-width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--bc-input-border, #ddd);
  border-radius: 4px;
  background: var(--bc-input-bg, #ffffff);
  color: var(--bc-input-text, #333);
  text-align: center;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.quantity-input input:focus {
  outline: none;
  border-color: var(--bc-primary, #007bff);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.quantity-input input:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.stock-info {
  font-size: 0.875rem;
  color: var(--bc-text, #666);
  min-width: 100px;
  text-align: right;
}

.stock-info.out-of-stock {
  color: #e74c3c;
  font-weight: 500;
}

/* Color selector styles */
.color-selector {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bc-card-bg, #ffffff);
  border-radius: var(--bc-radius-card, 16px);
  border: 1px solid var(--bc-line, #e0e0e0);
}

.color-selector h3 {
  margin: 0 0 0.75rem 0;
  color: var(--bc-heading, #333);
  font-size: 1.1rem;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--bc-input-border, #ddd);
  border-radius: var(--bc-radius-button, 8px);
  cursor: pointer;
  background: var(--bc-input-bg, #ffffff);
  transition: all 0.2s ease;
  user-select: none;
}

.color-option:hover {
  border-color: var(--bc-primary, #007bff);
  background: rgba(0, 123, 255, 0.05);
}

.color-option input[type="radio"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

.color-option input[type="radio"]:checked + .color-label {
  font-weight: 600;
  color: var(--bc-primary, #007bff);
}

.color-option:has(input[type="radio"]:checked) {
  border-color: var(--bc-primary, #007bff);
  background: rgba(0, 123, 255, 0.1);
}

.color-label {
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* Selection summary */
.selection-summary {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bc-alt-bg, #f8f9fa);
  border-radius: var(--bc-radius-card, 16px);
  text-align: center;
  border: 1px solid var(--bc-line, #e0e0e0);
}

.selection-summary strong {
  color: var(--bc-heading, #333);
  font-size: 1.1rem;
}

#total-quantity {
  color: var(--bc-primary, #007bff);
  font-weight: 700;
}

/* Single variant styles */
.single-variant {
  text-align: center;
  padding: 2rem;
  background: var(--bc-card-bg, #ffffff);
  border-radius: var(--bc-radius-card, 16px);
  border: 1px solid var(--bc-line, #e0e0e0);
}

.single-variant h3 {
  margin: 0 0 1.5rem 0;
  color: var(--bc-heading, #333);
  font-size: 1.2rem;
}

.single-variant .form-group {
  max-width: 300px;
  margin: 1rem auto;
}

.single-variant label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--bc-text, #333);
}

.single-variant input {
  width: 120px;
  padding: 0.75rem;
  border: 1px solid var(--bc-input-border, #ddd);
  border-radius: var(--bc-radius-button, 8px);
  background: var(--bc-input-bg, #ffffff);
  color: var(--bc-input-text, #333);
  text-align: center;
  font-size: 1.1rem;
  transition: border-color 0.2s ease;
}

.single-variant input:focus {
  outline: none;
  border-color: var(--bc-primary, #007bff);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Quote styles */
.quote-summary {
  margin-bottom: 1.5rem;
}

.quote-summary h3 {
  margin: 1.5rem 0 0.5rem 0;
  color: var(--bc-heading, #333);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  padding-bottom: 0.5rem;
}

.quote-summary h3:first-child {
  margin-top: 0;
}

.quote-product,
.quote-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  align-items: center;
}

.quote-product:last-child,
.quote-line:last-child {
  border-bottom: none;
}

.quote-total {
  text-align: right;
  font-size: 1.25rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bc-alt-bg, #f8f9fa);
  border-radius: var(--bc-radius-card, 16px);
  border: 2px solid var(--bc-primary, #007bff);
  color: var(--bc-heading, #333);
}

.quote-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.line-total {
  font-weight: 600;
  color: var(--bc-heading, #333);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .variant-header,
  .variant-row {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .stock-info {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    text-align: left;
  }

  .quote-product,
  .quote-line {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    text-align: left;
  }

  .line-total {
    text-align: right;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }

  .quote-actions {
    flex-direction: column;
  }

  .color-options {
    justify-content: center;
  }

  .color-option {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .variant-table {
    margin: 0.5rem 0;
  }

  .variant-header,
  .variant-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.5rem;
  }

  .size-label {
    font-size: 0.9rem;
  }

  .quantity-input {
    margin: 0.25rem 0;
  }

  .stock-info {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--bc-line, #e0e0e0);
  }

  .single-variant input {
    width: 100px;
    font-size: 1rem;
  }
}

/* Add these styles to your existing branding-calculator.css file */

/* Enhanced option card styles with better checkbox design */
[data-bc] .option-card {
  border: 1.5px solid var(--bc-line);
  border-radius: var(--bc-radius-button);
  padding: 18px;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
  background: #fff;
  color: var(--bc-text);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

[data-bc] .option-card:hover {
  border-color: var(--bc-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

[data-bc] .option-card input[type="checkbox"] {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

/* Custom checkbox styling */
[data-bc] .option-card::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bc-line);
  border-radius: 3px;
  background: white;
  transition: all 0.2s ease;
}

/* Checked state */
[data-bc] .option-card:has(input[type="checkbox"]:checked)::before,
[data-bc] .option-card input[type="checkbox"]:checked + .option-card::before {
  background: #22c55e;
  border-color: #22c55e;
}

/* Checkmark */
[data-bc] .option-card:has(input[type="checkbox"]:checked)::after,
[data-bc] .option-card input[type="checkbox"]:checked + .option-card::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Selected card styling */
[data-bc] .option-card:has(input[type="checkbox"]:checked),
[data-bc] .option-card[aria-pressed="true"] {
  border-color: #22c55e;
  background: color-mix(in srgb, #22c55e 6%, white);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

/* Option card content */
[data-bc] .option-card__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

[data-bc] .option-card__label strong {
  font-weight: 600;
  color: var(--bc-heading);
  margin-bottom: 4px;
  line-height: 1.2;
}

[data-bc] .text-subdued {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.3;
}

/* Position-specific placeholder squares */
[data-bc] .position-placeholder {
  width: 48px;
  height: 48px;
  background: var(--bc-line);
  border-radius: 4px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0.7;
}

[data-bc] .option-card:has(input[type="checkbox"]:checked) .position-placeholder {
  background: #22c55e;
  opacity: 1;
}

/* Fallback for browsers that don't support :has() */
[data-bc] .option-card.selected {
  border-color: #22c55e;
  background: color-mix(in srgb, #22c55e 6%, white);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

[data-bc] .option-card.selected::before {
  background: #22c55e;
  border-color: #22c55e;
}

[data-bc] .option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

[data-bc] .option-card.selected .position-placeholder {
  background: #22c55e;
  opacity: 1;
}

/* Multi-variant grid styles */
.variant-table {
  border: 1px solid var(--bc-line, #e0e0e0);
  border-radius: var(--bc-radius-card, 16px);
  overflow: hidden;
  margin: 1rem 0;
  background: var(--bc-card-bg, #ffffff);
}

.variant-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bc-alt-bg, #f8f9fa);
  font-weight: 600;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  color: var(--bc-heading, #333);
}

.variant-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  align-items: center;
  transition: background-color 0.2s ease;
}

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

.variant-row:hover {
  background: var(--bc-alt-bg, #f8f9fa);
}

.variant-row.unavailable {
  opacity: 0.5;
  background: rgba(128, 128, 128, 0.1);
}

.variant-row.unavailable:hover {
  background: rgba(128, 128, 128, 0.15);
}

.size-label {
  font-weight: 500;
  color: var(--bc-text, #333);
}

.quantity-input {
  min-width: 80px;
}

.quantity-input input {
  width: 100%;
  max-width: 80px;
  padding: 0.5rem;
  border: 1px solid var(--bc-input-border, #ddd);
  border-radius: 4px;
  background: var(--bc-input-bg, #ffffff);
  color: var(--bc-input-text, #333);
  text-align: center;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.quantity-input input:focus {
  outline: none;
  border-color: var(--bc-primary, #007bff);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.quantity-input input:disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}

.stock-info {
  font-size: 0.875rem;
  color: var(--bc-text, #666);
  min-width: 100px;
  text-align: right;
}

.stock-info.out-of-stock {
  color: #e74c3c;
  font-weight: 500;
}

/* Color selector styles */
.color-selector {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bc-card-bg, #ffffff);
  border-radius: var(--bc-radius-card, 16px);
  border: 1px solid var(--bc-line, #e0e0e0);
}

.color-selector h3 {
  margin: 0 0 0.75rem 0;
  color: var(--bc-heading, #333);
  font-size: 1.1rem;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.color-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--bc-input-border, #ddd);
  border-radius: var(--bc-radius-button, 8px);
  cursor: pointer;
  background: var(--bc-input-bg, #ffffff);
  transition: all 0.2s ease;
  user-select: none;
}

.color-option:hover {
  border-color: var(--bc-primary, #007bff);
  background: rgba(0, 123, 255, 0.05);
}

.color-option input[type="radio"] {
  margin: 0;
  width: 16px;
  height: 16px;
}

.color-option input[type="radio"]:checked + .color-label {
  font-weight: 600;
  color: var(--bc-primary, #007bff);
}

.color-option:has(input[type="radio"]:checked) {
  border-color: var(--bc-primary, #007bff);
  background: rgba(0, 123, 255, 0.1);
}

.color-label {
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

/* Selection summary */
.selection-summary {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bc-alt-bg, #f8f9fa);
  border-radius: var(--bc-radius-card, 16px);
  text-align: center;
  border: 1px solid var(--bc-line, #e0e0e0);
}

.selection-summary strong {
  color: var(--bc-heading, #333);
  font-size: 1.1rem;
}

#total-quantity {
  color: var(--bc-primary, #007bff);
  font-weight: 700;
}

/* Single variant styles */
.single-variant {
  text-align: center;
  padding: 2rem;
  background: var(--bc-card-bg, #ffffff);
  border-radius: var(--bc-radius-card, 16px);
  border: 1px solid var(--bc-line, #e0e0e0);
}

.single-variant h3 {
  margin: 0 0 1.5rem 0;
  color: var(--bc-heading, #333);
  font-size: 1.2rem;
}

.single-variant .form-group {
  max-width: 300px;
  margin: 1rem auto;
}

.single-variant label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--bc-text, #333);
}

.single-variant input {
  width: 120px;
  padding: 0.75rem;
  border: 1px solid var(--bc-input-border, #ddd);
  border-radius: var(--bc-radius-button, 8px);
  background: var(--bc-input-bg, #ffffff);
  color: var(--bc-input-text, #333);
  text-align: center;
  font-size: 1.1rem;
  transition: border-color 0.2s ease;
}

.single-variant input:focus {
  outline: none;
  border-color: var(--bc-primary, #007bff);
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* Quote styles */
.quote-summary {
  margin-bottom: 1.5rem;
}

.quote-summary h3 {
  margin: 1.5rem 0 0.5rem 0;
  color: var(--bc-heading, #333);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  padding-bottom: 0.5rem;
}

.quote-summary h3:first-child {
  margin-top: 0;
}

.quote-product,
.quote-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bc-line, #e0e0e0);
  align-items: center;
}

.quote-product:last-child,
.quote-line:last-child {
  border-bottom: none;
}

.quote-total {
  text-align: right;
  font-size: 1.25rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: var(--bc-alt-bg, #f8f9fa);
  border-radius: var(--bc-radius-card, 16px);
  border: 2px solid var(--bc-primary, #007bff);
  color: var(--bc-heading, #333);
}

.quote-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.line-total {
  font-weight: 600;
  color: var(--bc-heading, #333);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .variant-header,
  .variant-row {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }

  .stock-info {
    grid-column: 1 / -1;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    text-align: left;
  }

  .quote-product,
  .quote-line {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    text-align: left;
  }

  .line-total {
    text-align: right;
    font-size: 0.9rem;
    margin-top: 0.25rem;
  }

  .quote-actions {
    flex-direction: column;
  }

  .color-options {
    justify-content: center;
  }

  .color-option {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .variant-table {
    margin: 0.5rem 0;
  }

  .variant-header,
  .variant-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.5rem;
  }

  .size-label {
    font-size: 0.9rem;
  }

  .quantity-input {
    margin: 0.25rem 0;
  }

  .stock-info {
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--bc-line, #e0e0e0);
  }

  .single-variant input {
    width: 100px;
    font-size: 1rem;
  }
}

/* Enhanced styles for conditional color selection */
/* Add this to your branding-calculator.css file */

.bc-method-card {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    transition: all 0.2s ease;
    background: white;
}

.bc-method-card.selected {
    border-color: #10b981;
    background: #f0fdf4;
}

.bc-method-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bc-method-name {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.bc-method-price {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Color Selection Styles */
.bc-color-selection {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.bc-color-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.bc-color-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-color-select {
    padding: 6px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    min-width: 120px;
    transition: border-color 0.2s ease;
}

.bc-color-select:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1);
}

.bc-color-note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
    color: #d97706;
    font-weight: 500;
}

/* For methods without color input */
.bc-color-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-color-description {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

/* Different styles for each category */
.bc-color-selection[data-method*="EM-"] .bc-color-description {
    color: #7c3aed; /* Purple for embroidery */
}

.bc-color-selection[data-method*="SP-"] .bc-color-description {
    color: #dc2626; /* Red for screen print */
}

.bc-color-selection[data-method*="LE-"] .bc-color-description {
    color: #374151; /* Gray for laser engraving */
}

.bc-color-selection[data-method*="DT-"] .bc-color-description {
    color: #059669; /* Green for digital transfer */
}

/* Method grid layout */
.bc-methods-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

/* Responsive grid */
@media (min-width: 768px) {
    .bc-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bc-methods-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Color input animations */
.bc-color-select option {
    padding: 4px 8px;
}

.bc-color-select:hover {
    border-color: #9ca3af;
}

/* Visual indicators for different method types */
.bc-method-card[data-branding-code*="EM-"]::before {
    content: "🧵";
    margin-right: 8px;
}

.bc-method-card[data-branding-code*="SP-"]::before {
    content: "🎨";
    margin-right: 8px;
}

.bc-method-card[data-branding-code*="LE-"]::before {
    content: "⚡";
    margin-right: 8px;
}

.bc-method-card[data-branding-code*="DT-"]::before {
    content: "🖨️";
    margin-right: 8px;
}

/* Tooltip-style hover effects */
.bc-color-selection:hover .bc-color-description {
    color: #374151;
}

/* Loading states */
.bc-color-select.loading {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

.bc-color-select.loading::after {
    content: "Loading...";
    color: #9ca3af;
}

/* Error states */
.bc-color-select.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.bc-color-note.error {
    color: #ef4444;
    font-weight: 500;
}

/* Success feedback */
.bc-color-selection.valid .bc-color-select {
    border-color: #10b981;
}

.bc-color-selection.valid .bc-color-note {
    color: #10b981;
}

/* Disabled state for methods that don't need color selection */
.bc-color-selection .bc-color-description {
    user-select: none;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .bc-method-card {
        padding: 12px;
    }
    
    .bc-method-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .bc-color-input-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .bc-color-select {
        width: 100%;
        min-width: auto;
    }
}

/* Accessibility improvements */
.bc-color-select:focus-visible {
    outline: 2px solid #10b981;
    outline-offset: 2px;
}

.bc-method-card:focus-within {
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bc-method-card {
        border-width: 3px;
    }
    
    .bc-color-select {
        border-width: 2px;
    }
    
    .bc-color-note {
        font-weight: 600;
    }
}

/* Enhanced styles for conditional color selection in Step 4 */
/* Add these styles to your existing branding-calculator.css */

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* Responsive design */
@media (max-width: 640px) {
  .bc-method-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .bc-color-description {
    text-align: left;
  }
  
  .bc-color-input-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .bc-color-select {
    min-width: auto;
    width: 100%;
  }
  
  .bc-color-selection {
    padding: 12px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* Dark mode support (if your theme supports it) */
@media (prefers-color-scheme: dark) {
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
}

/* Enhanced styles for conditional color selection in Step 4 */
/* Add these styles to your existing branding-calculator.css */

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* ========================================================================
   STEP 5 - ARTWORK UPLOAD STYLES
   ======================================================================== */

/* Artwork info section */
.artwork-info {
  margin-bottom: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.artwork-info h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* File types grid */
.file-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  max-width: 600px;
}

.file-type {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.file-type:hover {
  background: #374151;
  border-color: #4b5563;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

/* Upload guidelines */
.upload-note {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  background: #f9fafb;
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #3b82f6;
}

.upload-note strong {
  color: #1f2937;
  font-weight: 600;
}

/* Enhanced file upload area */
.file-upload {
  border: 2px dashed #cbd5e0;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fafafa;
  margin-bottom: 20px;
}

.file-upload:hover {
  border-color: #9ca3af;
  background: #f3f4f6;
}

.file-upload.drag-over {
  border-color: #3b82f6;
  background: #eff6ff;
  transform: scale(1.02);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.upload-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-text strong {
  font-size: 16px;
  color: #1f2937;
}

.upload-text span {
  font-size: 14px;
  color: #6b7280;
}

/* Uploaded files container */
.uploaded-files-container {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
}

.uploaded-files-container:empty {
  display: none;
}

/* Individual uploaded file */
.uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.uploaded-file:last-child {
  border-bottom: none;
}

.uploaded-file:hover {
  background: #f9fafb;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.file-icon {
  font-size: 24px;
  line-height: 1;
}

.file-details {
  flex: 1;
}

.file-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 2px;
}

.file-meta {
  font-size: 12px;
  color: #6b7280;
}

.remove-file {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.remove-file:hover {
  background: #fee2e2;
  color: #991b1b;
}

.remove-file:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 640px) {
  .file-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 6px;
  }
  
  .file-type {
    padding: 4px 6px;
    font-size: 11px;
  }
  
  .artwork-info {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .file-upload {
    padding: 24px 16px;
  }
  
  .upload-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .upload-text strong {
    font-size: 14px;
  }
  
  .upload-text span {
    font-size: 13px;
  }
  
  .file-info {
    gap: 8px;
  }
  
  .file-icon {
    font-size: 20px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
  
  .file-upload {
    border-width: 3px;
  }
  
  .file-type {
    border-width: 2px;
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
  
  .file-upload {
    display: none;
  }
  
  .uploaded-file {
    border: 1px solid #000;
    margin-bottom: 4px;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.file-upload:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* Dark mode support (if your theme supports it) */
@media (prefers-color-scheme: dark) {
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
  
  .artwork-info {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .file-type {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .file-upload {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .uploaded-files-container {
    background: #1a202c;
    border-color: #4a5568;
  }
  
  .uploaded-file {
    border-color: #4a5568;
  }
  
  .uploaded-file:hover {
    background: #2d3748;
  }
}

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* Responsive design */
@media (max-width: 640px) {
  .bc-method-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .bc-color-description {
    text-align: left;
  }
  
  .bc-color-input-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .bc-color-select {
    min-width: auto;
    width: 100%;
  }
  
  .bc-color-selection {
    padding: 12px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* Dark mode support (if your theme supports it) */
@media (prefers-color-scheme: dark) {
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
}

/* Enhanced styles for conditional color selection in Step 4 */
/* Add these styles to your existing branding-calculator.css */

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* ========================================================================
   STEP 5 - ARTWORK UPLOAD STYLES
   ======================================================================== */

/* Artwork info section */
.artwork-info {
  margin-bottom: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.artwork-info h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

/* File types grid */
.file-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  max-width: 600px;
}

.file-type {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.file-type:hover {
  background: #374151;
  border-color: #4b5563;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

/* Upload guidelines */
.upload-note {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  background: #f9fafb;
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #3b82f6;
}

.upload-note strong {
  color: #1f2937;
  font-weight: 600;
}

/* Enhanced file upload area */
.file-upload {
  border: 2px dashed #cbd5e0;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.file-upload:hover {
  border-color: #3b82f6;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.file-upload.drag-over {
  border-color: #3b82f6;
  background: #eff6ff;
  transform: scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.upload-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-text strong {
  font-size: 18px;
  color: #111827;
  font-weight: 600;
}

.upload-text span {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Uploaded files container */
.uploaded-files-container {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
}

.uploaded-files-container:empty {
  display: none;
}

/* Individual uploaded file */
.uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.uploaded-file:last-child {
  border-bottom: none;
}

.uploaded-file:hover {
  background: #f9fafb;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.file-icon {
  font-size: 24px;
  line-height: 1;
}

.file-details {
  flex: 1;
}

.file-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 2px;
}

.file-meta {
  font-size: 12px;
  color: #6b7280;
}

.remove-file {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.remove-file:hover {
  background: #fee2e2;
  color: #991b1b;
}

.remove-file:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 640px) {
  .file-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
  }
  
  .file-type {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .artwork-info {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .upload-note {
    padding: 12px;
    font-size: 13px;
  }
  
  .file-upload {
    padding: 32px 16px;
  }
  
  .upload-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .upload-text strong {
    font-size: 16px;
  }
  
  .upload-text span {
    font-size: 13px;
  }
  
  .file-info {
    gap: 8px;
  }
  
  .file-icon {
    font-size: 20px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
  
  .file-upload {
    border-width: 3px;
  }
  
  .file-type {
    border-width: 2px;
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
  
  .file-upload {
    display: none;
  }
  
  .uploaded-file {
    border: 1px solid #000;
    margin-bottom: 4px;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.file-upload:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* ========================================================================
   STEP 6 - QUOTE DISPLAY STYLES
   ======================================================================== */

/* Quote display container */
.quote-display {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

/* Quote header */
.quote-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.quote-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.quote-summary-stats {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Quote sections */
.quote-sections {
  margin-bottom: 24px;
}

.quote-section {
  margin-bottom: 24px;
}

.quote-section:last-child {
  margin-bottom: 0;
}

.quote-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Quote lines */
.quote-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-line {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.quote-line:hover {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

/* Product lines styling */
.product-line {
  background: #f0f9ff;
  border-color: #e0f2fe;
}

.product-line:hover {
  background: #e0f2fe;
}

/* Branding lines styling */
.branding-line {
  background: #f0fdf4;
  border-color: #dcfce7;
}

.branding-line:hover {
  background: #dcfce7;
}

/* Setup cost line styling */
.setup-line {
  background: #fffbeb;
  border-color: #fef3c7;
}

.setup-line:hover {
  background: #fef3c7;
}

/* Line content */
.line-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.line-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.line-details {
  font-size: 12px;
  color: #6b7280;
}

.line-quantity {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  min-width: 40px;
}

.line-unit-price {
  font-size: 14px;
  color: #6b7280;
  text-align: right;
  min-width: 80px;
}

.line-total {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: right;
  min-width: 100px;
}

/* Quote totals */
.quote-totals {
  border-top: 2px solid #e5e7eb;
  padding-top: 16px;
  margin-bottom: 24px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-radius: 6px;
}

.subtotal-line, .vat-line {
  font-size: 14px;
  color: #374151;
  background: #f9fafb;
  margin-bottom: 4px;
}

.grand-total-line {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  margin-top: 8px;
}

/* Quote actions */
.quote-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quote-actions .button {
  flex: 1;
  min-width: 160px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button--secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #d1d5db;
}

.button--secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.button--primary {
  background: #3b82f6;
  color: #ffffff;
  border: 2px solid #3b82f6;
}

.button--primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Quote notes */
.quote-notes {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.quote-notes p {
  margin: 0 0 8px 0;
}

.quote-notes p:last-child {
  margin-bottom: 0;
}

.quote-notes strong {
  color: #374151;
  font-weight: 600;
}

/* Responsive design for quote */
@media (max-width: 768px) {
  .quote-display {
    padding: 16px;
  }
  
  .quote-line {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  
  .line-quantity, .line-unit-price, .line-total {
    text-align: left;
  }
  
  .line-quantity::before {
    content: "Qty: ";
    font-weight: normal;
    color: #6b7280;
  }
  
  .line-unit-price::before {
    content: "Unit: ";
    font-weight: normal;
    color: #6b7280;
  }
  
  .line-total::before {
    content: "Total: ";
    font-weight: normal;
    color: #6b7280;
  }
  
  .quote-actions {
    flex-direction: column;
  }
  
  .quote-actions .button {
    min-width: auto;
  }
  
  .quote-header h3 {
    font-size: 20px;
  }
  
  .quote-summary-stats {
    flex-wrap: wrap;
  }
}

/* Print styles for quotes */
@media print {
  .quote-display {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .quote-actions {
    display: none;
  }
  
  .quote-line {
    break-inside: avoid;
  }
  
  .quote-totals {
    break-inside: avoid;
  }
}
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
  
  .artwork-info {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .file-type {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .file-upload {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .uploaded-files-container {
    background: #1a202c;
    border-color: #4a5568;
  }
  
  .uploaded-file {
    border-color: #4a5568;
  }
  
  .uploaded-file:hover {
    background: #2d3748;
  }
}

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* Responsive design */
@media (max-width: 640px) {
  .bc-method-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .bc-color-description {
    text-align: left;
  }
  
  .bc-color-input-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .bc-color-select {
    min-width: auto;
    width: 100%;
  }
  
  .bc-color-selection {
    padding: 12px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* Dark mode support (if your theme supports it) */
@media (prefers-color-scheme: dark) {
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
}
/* Enhanced styles for conditional color selection in Step 4 */
/* Add these styles to your existing branding-calculator.css */

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* ========================================================================
   STEP 5 - ARTWORK UPLOAD STYLES
   ======================================================================== */

/* Artwork info section */
.artwork-info {
  margin-bottom: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.artwork-info h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

/* File types grid */
.file-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
  max-width: 600px;
}

.file-type {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.file-type:hover {
  background: #374151;
  border-color: #4b5563;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

/* Upload guidelines */
.upload-note {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
  background: #f9fafb;
  padding: 16px;
  border-radius: 6px;
  border-left: 4px solid #3b82f6;
}

.upload-note strong {
  color: #1f2937;
  font-weight: 600;
}

/* Enhanced file upload area */
.file-upload {
  border: 2px dashed #cbd5e0;
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.file-upload:hover {
  border-color: #3b82f6;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.file-upload.drag-over {
  border-color: #3b82f6;
  background: #eff6ff;
  transform: scale(1.02);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.upload-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.upload-text strong {
  font-size: 18px;
  color: #111827;
  font-weight: 600;
}

.upload-text span {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Uploaded files container */
.uploaded-files-container {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: white;
}

.uploaded-files-container:empty {
  display: none;
}

/* Individual uploaded file */
.uploaded-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.uploaded-file:last-child {
  border-bottom: none;
}

.uploaded-file:hover {
  background: #f9fafb;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.file-icon {
  font-size: 24px;
  line-height: 1;
}

.file-details {
  flex: 1;
}

.file-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 2px;
}

.file-meta {
  font-size: 12px;
  color: #6b7280;
}

.remove-file {
  background: none;
  border: none;
  color: #dc2626;
  font-size: 16px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.remove-file:hover {
  background: #fee2e2;
  color: #991b1b;
}

.remove-file:focus {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

/* Responsive design */
@media (max-width: 640px) {
  .file-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
  }
  
  .file-type {
    padding: 6px 8px;
    font-size: 12px;
  }
  
  .artwork-info {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .upload-note {
    padding: 12px;
    font-size: 13px;
  }
  
  .file-upload {
    padding: 32px 16px;
  }
  
  .upload-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .upload-text strong {
    font-size: 16px;
  }
  
  .upload-text span {
    font-size: 13px;
  }
  
  .file-info {
    gap: 8px;
  }
  
  .file-icon {
    font-size: 20px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
  
  .file-upload {
    border-width: 3px;
  }
  
  .file-type {
    border-width: 2px;
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
  
  .file-upload {
    display: none;
  }
  
  .uploaded-file {
    border: 1px solid #000;
    margin-bottom: 4px;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

.file-upload:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* ========================================================================
   STEP 6 - QUOTE DISPLAY STYLES
   ======================================================================== */

/* Quote loading state */
.quote-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

.quote-loading p {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Quote display container */
.quote-display {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

/* Quote header */
.quote-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f3f4f6;
}

.quote-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.quote-summary-stats {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Quote sections */
.quote-sections {
  margin-bottom: 24px;
}

.quote-section {
  margin-bottom: 24px;
}

.quote-section:last-child {
  margin-bottom: 0;
}

.quote-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Quote lines */
.quote-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-line {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.quote-line:hover {
  background: #f3f4f6;
  border-color: #e5e7eb;
}

/* Product lines styling */
.product-line {
  background: #f0f9ff;
  border-color: #e0f2fe;
}

.product-line:hover {
  background: #e0f2fe;
}

/* Branding lines styling */
.branding-line {
  background: #f0fdf4;
  border-color: #dcfce7;
}

.branding-line:hover {
  background: #dcfce7;
}

/* Setup cost line styling */
.setup-line {
  background: #fffbeb;
  border-color: #fef3c7;
}

.setup-line:hover {
  background: #fef3c7;
}

/* Line content */
.line-description {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.line-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.line-details {
  font-size: 12px;
  color: #6b7280;
}

.line-quantity {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  min-width: 40px;
}

.line-unit-price {
  font-size: 14px;
  color: #6b7280;
  text-align: right;
  min-width: 80px;
}

.line-total {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: right;
  min-width: 100px;
}

/* Quote totals */
.quote-totals {
  border-top: 2px solid #e5e7eb;
  padding-top: 16px;
  margin-bottom: 24px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-radius: 6px;
}

.subtotal-line, .vat-line {
  font-size: 14px;
  color: #374151;
  background: #f9fafb;
  margin-bottom: 4px;
}

.grand-total-line {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  margin-top: 8px;
}

/* Quote actions */
.quote-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.quote-actions .button {
  flex: 1;
  min-width: 160px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button--secondary {
  background: #ffffff;
  color: #374151;
  border: 2px solid #d1d5db;
}

.button--secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.button--primary {
  background: #3b82f6;
  color: #ffffff;
  border: 2px solid #3b82f6;
}

.button--primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Quote notes */
.quote-notes {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
}

.quote-notes p {
  margin: 0 0 8px 0;
}

.quote-notes p:last-child {
  margin-bottom: 0;
}

.quote-notes strong {
  color: #374151;
  font-weight: 600;
}

/* Responsive design for quote */
@media (max-width: 768px) {
  .quote-display {
    padding: 16px;
  }
  
  .quote-line {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  
  .line-quantity, .line-unit-price, .line-total {
    text-align: left;
  }
  
  .line-quantity::before {
    content: "Qty: ";
    font-weight: normal;
    color: #6b7280;
  }
  
  .line-unit-price::before {
    content: "Unit: ";
    font-weight: normal;
    color: #6b7280;
  }
  
  .line-total::before {
    content: "Total: ";
    font-weight: normal;
    color: #6b7280;
  }
  
  .quote-actions {
    flex-direction: column;
  }
  
  .quote-actions .button {
    min-width: auto;
  }
  
  .quote-header h3 {
    font-size: 20px;
  }
  
  .quote-summary-stats {
    flex-wrap: wrap;
  }
}

/* Print styles for quotes */
@media print {
  .quote-display {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .quote-actions {
    display: none;
  }
  
  .quote-line {
    break-inside: avoid;
  }
  
  .quote-totals {
    break-inside: avoid;
  }
}
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
  
  .artwork-info {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .file-type {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .file-upload {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .uploaded-files-container {
    background: #1a202c;
    border-color: #4a5568;
  }
  
  .uploaded-file {
    border-color: #4a5568;
  }
  
  .uploaded-file:hover {
    background: #2d3748;
  }
}

/* Enhanced color selection container */
.bc-color-selection {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: #fafafa;
  transition: all 0.2s ease;
}

.bc-color-selection:hover {
  border-color: #cbd5e0;
  background: #ffffff;
}

.bc-color-selection.bc-multiple-colors {
  border-color: #f59e0b;
  background: #fffbeb;
}

/* Method header with icon and description */
.bc-method-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 12px;
}

.bc-method-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.bc-method-icon {
  font-size: 18px;
  line-height: 1;
}

.bc-color-description {
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: right;
  flex-shrink: 0;
}

/* Color input container */
.bc-color-input-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.bc-color-select {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  background: white;
  min-width: 140px;
  transition: all 0.2s ease;
}

.bc-color-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bc-color-select:hover {
  border-color: #9ca3af;
}

.bc-color-note {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.2s ease;
}

.bc-color-note.bc-color-warning {
  color: #f59e0b;
  font-weight: 600;
}

/* Color info container (for methods without selection) */
.bc-color-info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.bc-color-value {
  font-size: 14px;
  color: #4a5568;
  font-weight: 500;
  padding: 6px 12px;
  background: #e2e8f0;
  border-radius: 4px;
  border: 1px solid #cbd5e0;
}

/* Help text styling */
.bc-color-help {
  font-size: 12px;
  color: #718096;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e2e8f0;
}

/* Category-specific styling */
.bc-color-selection[data-category="multi-color"] {
  border-left: 4px solid #8b5cf6;
}

.bc-color-selection[data-category="single-color"] {
  border-left: 4px solid #10b981;
}

.bc-color-selection[data-category="no-color"] {
  border-left: 4px solid #6b7280;
}

.bc-color-selection[data-category="full-color"] {
  border-left: 4px solid #f59e0b;
}

/* Category-specific color values */
.bc-color-selection[data-category="no-color"] .bc-color-value {
  background: #f7fafc;
  color: #4a5568;
  border-color: #e2e8f0;
}

.bc-color-selection[data-category="single-color"] .bc-color-value {
  background: #f0fff4;
  color: #22543d;
  border-color: #9ae6b4;
}

.bc-color-selection[data-category="full-color"] .bc-color-value {
  background: #fffbeb;
  color: #92400e;
  border-color: #f6d55c;
}

/* Enhanced form group styling for Step 4 */
#colors-container .form-group:last-child {
  margin-bottom: 0;
}

#colors-container .form-group + .form-group {
  margin-top: 0;
}

/* Responsive design */
@media (max-width: 640px) {
  .bc-method-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .bc-color-description {
    text-align: left;
  }
  
  .bc-color-input-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .bc-color-select {
    min-width: auto;
    width: 100%;
  }
  
  .bc-color-selection {
    padding: 12px;
  }
}

/* Loading states */
.bc-color-select:disabled {
  background-color: #f7fafc;
  color: #a0aec0;
  cursor: not-allowed;
}

.bc-color-selection.loading {
  opacity: 0.7;
}

.bc-color-selection.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.bc-color-selection.error {
  border-color: #f56565;
  background: #fed7d7;
}

.bc-color-selection.error .bc-color-select {
  border-color: #f56565;
}

.bc-color-selection.error .bc-color-note {
  color: #e53e3e;
  font-weight: 600;
}

/* Success states */
.bc-color-selection.valid {
  border-color: #48bb78;
  background: #f0fff4;
}

.bc-color-selection.valid .bc-color-select {
  border-color: #48bb78;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bc-color-selection {
    border-width: 2px;
  }
  
  .bc-color-select {
    border-width: 2px;
  }
  
  .bc-color-note {
    font-weight: 700;
  }
  
  .bc-method-label {
    font-weight: 700;
  }
}

/* Print styles */
@media print {
  .bc-color-selection {
    break-inside: avoid;
    border: 1px solid #000;
    background: transparent;
  }
  
  .bc-method-icon {
    display: none;
  }
}

/* Focus styles for accessibility */
.bc-color-selection:focus-within {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
}

/* Smooth transitions */
.bc-color-selection * {
  transition: all 0.15s ease;
}

/* Dark mode support (if your theme supports it) */
@media (prefers-color-scheme: dark) {
  .bc-color-selection {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-selection:hover {
    background: #1a202c;
    border-color: #718096;
  }
  
  .bc-method-label {
    color: #f7fafc;
  }
  
  .bc-color-description {
    color: #a0aec0;
  }
  
  .bc-color-select {
    background: #1a202c;
    border-color: #4a5568;
    color: #e2e8f0;
  }
  
  .bc-color-select:focus {
    border-color: #63b3ed;
    box-shadow: 0 0 0 3px rgba(99, 179, 237, 0.1);
  }
  
  .bc-color-value {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }
  
  .bc-color-help {
    color: #a0aec0;
    border-color: #4a5568;
  }
}
/* ========= STEP 4 ENHANCED STYLES ========= */
.bc-section-intro {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  border-left: 4px solid var(--bc-primary, #007bff);
}

.bc-section-intro .bc-section-description {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: var(--bc-text, #4a5568);
  line-height: 1.5;
}

.bc-color-info-box {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 12px 16px;
  color: #856404;
  font-size: 14px;
  line-height: 1.4;
}

.bc-color-info-box strong {
  color: #6c4d00;
  font-weight: 600;
}

/* Enhanced colors container for step 4 */
#colors-container {
  margin-top: 20px;
}

#colors-container .form-group {
  margin-bottom: 20px;
}

#colors-container .form-group:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments for step 4 */
@media (max-width: 768px) {
  .bc-section-intro {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .bc-section-intro .bc-section-description {
    font-size: 14px;
  }
  
  .bc-color-info-box {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Dark mode support for step 4 elements */
@media (prefers-color-scheme: dark) {
  .bc-section-intro {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    border-left-color: var(--bc-primary, #63b3ed);
  }
  
  .bc-section-intro .bc-section-description {
    color: #e2e8f0;
  }
  
  .bc-color-info-box {
    background: #2d3748;
    border-color: #4a5568;
    color: #f7fafc;
  }
  
  .bc-color-info-box strong {
    color: #ffd700;
  }
}
