/* ====================================
   QUOTE CALCULATOR — Los Angeles Custom Printing / AKD Ink
   Matches the existing landing theme tokens
   ==================================== */

.quote-page {
  background: var(--bg);
  min-height: calc(100vh - 81px);
  padding: 60px 24px 80px;
}

.quote-container {
  max-width: 720px;
  margin: 0 auto;
}

.quote-brand-bridge {
  margin: 0 0 12px;
  color: var(--fg-muted, #6b6459);
  font-size: 13px;
  font-weight: 600;
}

/* Header */
.quote-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.quote-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}
.quote-subtitle {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-section {}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 14px;
}
.form-hint {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 540px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--white);
}
.product-card:hover { border-color: var(--accent); }
.product-card input { display: none; }
.product-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.product-icon {
  width: 44px; height: 44px;
  color: var(--fg-muted);
  display: flex; align-items: center; justify-content: center;
}
.product-card:has(input:checked) .product-icon { color: var(--accent); }
.product-icon svg { width: 100%; height: 100%; }
.product-name { font-size: 14px; font-weight: 600; color: var(--fg); }

/* Quantity */
.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  cursor: pointer;
  transition: background 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--border); }
.qty-input {
  width: 80px; height: 44px;
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Ink colors */
.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.color-chip {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600; font-size: 16px;
  color: var(--fg-muted);
  background: var(--white);
  transition: all 0.15s;
}
.color-chip:hover { border-color: var(--accent); color: var(--accent); }
.color-chip input { display: none; }
.color-chip.selected,
.color-chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

/* Complexity slider */
.complexity-wrapper {}
.complexity-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  outline: none;
  cursor: pointer;
}
.complexity-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--accent);
}
.complexity-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.complexity-labels span {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  flex: 1;
  line-height: 1.4;
}
.complexity-labels span small {
  font-size: 11px;
  opacity: 0.8;
}

/* Rush options */
.rush-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 540px) {
  .rush-options { grid-template-columns: 1fr; }
}
.rush-card {
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s;
}
.rush-card:hover { border-color: var(--accent); }
.rush-card input { display: none; }
.rush-card:has(input:checked) { border-color: var(--accent); background: var(--accent-dim); }
.rush-content { display: flex; flex-direction: column; gap: 4px; }
.rush-title { font-weight: 600; font-size: 14px; color: var(--fg); }
.rush-desc { font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rush-card.rush-hot { border-color: var(--accent); }
.rush-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}

/* Get Estimate button */
.get-estimate-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 6px;
}

/* Estimate box */
.estimate-box {
  background: var(--bg-dark);
  color: var(--white);
  border-radius: 12px;
  padding: 36px 40px;
  text-align: center;
  animation: fadeSlideUp 0.3s ease;
}
.estimate-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.estimate-range {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.estimate-note {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}
.estimate-cta { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.quote-cta-btn {
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 6px;
}
.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
}

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

/* Modal */
body.quote-modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 24, 21, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}
.modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.25s ease;
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border: none;
  background: var(--bg-alt);
  border-radius: 50%;
  font-size: 20px;
  color: var(--fg-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: var(--border); }
.modal-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.modal-subtitle {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}
.modal-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .modal-fields { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 20px; }
}
.modal-field { display: flex; flex-direction: column; gap: 6px; }
.modal-field--full { grid-column: 1 / -1; }
.modal-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.modal-field input,
.modal-field textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'Muli', system-ui, sans-serif;
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}
.modal-field input:focus,
.modal-field textarea:focus { border-color: var(--accent); }
.modal-field textarea { resize: vertical; }
.modal-summary {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--fg-muted);
}
.modal-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 56px; height: 56px;
  background: #2d9d5a;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.modal-success h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.modal-success p { font-size: 14px; color: var(--fg-muted); }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Section divider in form */
.quote-form > .form-section {
  border-bottom: 1px solid var(--border);
  padding-bottom: 36px;
}
.quote-form > .form-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

/* Input disabled state */
input:disabled, select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Artwork upload */
.artwork-label {
  display: flex;
  align-items: baseline;
  gap: 10px;
  cursor: pointer;
}
.artwork-formats {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-muted);
}
.artwork-drop {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: var(--bg);
  margin-top: 6px;
}
.artwork-drop.has-files {
  padding: 14px 16px;
}
.artwork-drop:hover,
.artwork-drop.drag-over {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.artwork-drop:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.artwork-drop.has-error {
  border-color: #b42318;
}
.artwork-icon {
  width: 32px;
  height: 32px;
  color: var(--fg-muted);
  margin: 0 auto 10px;
  display: block;
}
.artwork-drop-text {
  font-size: 14px;
  color: var(--fg-muted);
  margin: 0;
}
.artwork-browse {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.artwork-file-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.artwork-file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--fg);
}
.artwork-file-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent);
}
.artwork-file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.artwork-file-size {
  font-size: 12px;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.artwork-file-remove {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  flex-shrink: 0;
}
.artwork-file-remove:hover { color: var(--accent); }
.artwork-preview-controls {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
}
.artwork-preview-controls[hidden] { display: none; }
.artwork-preview-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.artwork-preview-label {
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
}
.artwork-preview-status {
  color: var(--fg-muted);
  font-size: 12px;
  text-align: right;
}
.artwork-thumbnail-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}
.artwork-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}
.artwork-thumbnail-image {
  display: block;
  width: 100%;
  height: 72px;
  object-fit: contain;
}
.artwork-thumbnail-status {
  padding: 6px;
  color: var(--fg-muted);
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
}
.artwork-preview-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.artwork-action-btn {
  min-height: 44px;
  flex: 1;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  font: 600 13px 'Muli', system-ui, sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.artwork-action-btn:hover,
.artwork-action-btn:focus-visible {
  background: var(--accent);
  color: var(--white);
}
.artwork-action-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.artwork-action-btn--remove {
  border-color: var(--border);
}
.artwork-mockup {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-alt);
  text-align: center;
}
.artwork-mockup-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}
.artwork-mockup-stage {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 5 / 6;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}
.artwork-mockup-shirt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.artwork-mockup-shirt-back-detail { display: none; }
.artwork-mockup[data-side="back"] .artwork-mockup-shirt-front-detail { display: none; }
.artwork-mockup[data-side="back"] .artwork-mockup-shirt-back-detail { display: block; }
.artwork-mockup-side-controls {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 76px;
  text-align: left;
}
.artwork-mockup-side-label {
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.artwork-mockup-side-btn {
  min-width: 76px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--fg);
  cursor: pointer;
  font: 600 13px 'Muli', system-ui, sans-serif;
  text-align: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.artwork-mockup-side-btn:hover,
.artwork-mockup-side-btn[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--fg);
}
.artwork-mockup-side-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.artwork-mockup-print-area {
  position: absolute;
  top: 31%;
  left: 30%;
  width: 40%;
  height: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.artwork-mockup-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.artwork-mockup-image[hidden] { display: none; }
.artwork-mockup.has-artwork .artwork-mockup-image {
  animation: artworkMockupIn 0.25s ease both;
}
.artwork-mockup-empty {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80%, 220px);
  margin: 0;
  padding: 8px 12px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg-muted);
  font-size: 13px;
  line-height: 1.4;
}
.artwork-mockup-status {
  max-width: 440px;
  margin: 10px auto 0;
  color: var(--fg-muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
@keyframes artworkMockupIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
.artwork-upload-error {
  margin-top: 8px;
  color: #b42318;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ── Progress indicator ───────────────────────────────────────────────────── */
.quote-progress {
  margin-bottom: 36px;
}
.progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
}
.progress-step.active {
  opacity: 1;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  color: var(--fg-muted);
}
.progress-step.active .step-num {
  background: var(--accent);
  color: var(--bg-dark);
}
.step-label {
  font-size: 13px; font-weight: 600; color: var(--fg-muted);
}
.progress-step.active .step-label { color: var(--fg); }
.progress-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 16px;
  max-width: 80px;
}

/* ── Service selector grid ────────────────────────────────────────────────── */
.service-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 540px) {
  .service-selector-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}
.service-tab:hover { border-color: var(--accent); }
.service-tab input { display: none; }
.service-tab:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.service-tab .product-icon { color: var(--fg-muted); }
.service-tab:has(input:checked) .product-icon { color: var(--accent); }
.service-tab .product-name { font-size: 13px; font-weight: 600; color: var(--fg); }

/* ── Calculator section ───────────────────────────────────────────────────── */
.calc-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeSlideUp 0.25s ease;
}

/* ── Location chips (multi-select) ───────────────────────────────────────── */
.location-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  min-height: 44px;
  border: 2px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--white);
  transition: all 0.15s;
  user-select: none;
}
.location-chip:hover { border-color: var(--accent); color: var(--fg); }
.location-chip input { display: none; }
.location-chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bg-dark);
}
.location-chip.popular { border-color: var(--accent); }
.popular-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 1px 5px;
  border-radius: 3px;
}
.location-chip:has(input:checked) .popular-badge {
  background: var(--bg-dark);
  color: var(--accent);
}
.location-summary {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
  min-height: 1.2em;
}

/* ── Tier chips (stitch count, size, DTF size) ────────────────────────────── */
.tier-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tier-chip {
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--white);
  transition: all 0.15s;
  text-align: center;
  min-width: 80px;
}
.tier-chip input { display: none; }
.tier-chip:hover { border-color: var(--accent); color: var(--fg); }
.tier-chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--fg);
}
.tier-chip small { display: block; font-size: 11px; font-weight: 400; color: var(--fg-muted); margin-top: 2px; }

/* ── Large format custom size inputs ─────────────────────────────────────── */
.size-custom-inputs {
  display: none;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.size-custom-inputs.visible { display: flex; }
.size-custom-inputs input[type="number"] {
  width: 80px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Muli', system-ui, sans-serif;
  color: var(--fg);
  background: var(--white);
  outline: none;
  -moz-appearance: textfield;
}
.size-custom-inputs input[type="number"]::-webkit-outer-spin-button,
.size-custom-inputs input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.size-custom-inputs input[type="number"]:focus { border-color: var(--accent); }
.size-custom-label { font-size: 14px; color: var(--fg-muted); }

/* ── Estimate disclaimer ─────────────────────────────────────────────────── */
.estimate-disclaimer {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 28px;
}

/* ── Product grids that use more columns ─────────────────────────────────── */
.laser-product-grid,
.lf-product-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 540px) {
  .laser-product-grid,
  .lf-product-grid { grid-template-columns: repeat(2, 1fr); }
}

.emb-product-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 540px) {
  .emb-product-grid { grid-template-columns: repeat(2, 1fr); }
}

.uv-product-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 540px) {
  .uv-product-grid { grid-template-columns: repeat(2, 1fr); }
}

.dtf-product-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 540px) {
  .dtf-product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile adjustments ───────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .tier-options { gap: 8px; }
  .tier-chip { padding: 10px 14px; min-width: 60px; font-size: 13px; }
  .location-chip { padding: 8px 10px; font-size: 12px; }
  .artwork-mockup { padding: 10px; }
  .artwork-mockup-stage { width: min(100%, 240px); }
  .artwork-mockup-layout { grid-template-columns: 1fr; gap: 10px; }
  .artwork-mockup-side-controls {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .artwork-mockup-side-label { width: 100%; text-align: center; }
  .artwork-mockup-side-btn { flex: 1 1 100px; }
  .artwork-mockup-status { font-size: 12px; }
  .artwork-preview-controls { padding: 12px; }
  .artwork-preview-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
  .artwork-preview-status { text-align: left; }
  .artwork-preview-actions { gap: 6px; }
  .artwork-action-btn { padding: 8px 10px; }
}
