:root {
  --ink: #1c1c1c;
  --ink-soft: #4a4a48;
  --line: #e7e4df;
  --bg: #faf9f7;
  --card: #ffffff;
  --accent: #6f7a5a;       /* gedämpftes Salbeigrün – passend zur Classic-Sports-Palette */
  --accent-dark: #586049;
  --sale: #a4493d;
  --radius: 14px;
  --shadow: 0 1px 3px rgba(28,28,28,.06), 0 8px 24px rgba(28,28,28,.05);
  --bar-h: 76px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom));
}
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.01em; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.header-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; pointer-events: none; }
.logo-img { height: 25px; width: auto; display: block; pointer-events: none; }
.brand-sub {
  font-size: 13px; color: var(--ink-soft); white-space: nowrap;
  padding-left: 11px; border-left: 1px solid var(--line); align-self: center;
}
/* Galerie-Teaser */
.gallery-teaser {
  margin: 1.5rem 0 2rem;
  padding: 1rem 0;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-teaser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
}
.gallery-teaser-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}
.gallery-teaser-link {
  font-size: 0.8125rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.gallery-teaser-link:hover {
  color: var(--accent-dark);
}
.gallery-teaser-grid {
  display: flex;
  gap: 0.625rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.gallery-teaser-grid::-webkit-scrollbar {
  display: none;
}
.gallery-teaser-item {
  position: relative;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  scroll-snap-align: start;
}
.gallery-teaser-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.gallery-teaser-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-teaser-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-teaser-item:hover::after {
  opacity: 1;
}

/* Desktop: etwas größere Thumbnails */
@media (min-width: 620px) {
  .gallery-teaser-item {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
  }
}
.collection-tag {
  font-size: 12px; color: var(--accent-dark); font-weight: 600;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .collection-tag { display: none; }
  .brand-sub { font-size: 12px; }
}

/* Layout */
.container { max-width: 1080px; margin: 0 auto; padding: 22px 18px 8px; }
.intro h1 { font-size: clamp(24px, 6vw, 34px); line-height: 1.15; }
.intro p { color: var(--ink-soft); max-width: 60ch; margin: 10px 0 4px; }

.step { margin-top: 30px; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step-num {
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  display: grid; place-items: center;
}
.step-head h2 { font-size: 19px; }

/* Dropzone */
.dropzone {
  display: block; border: 1.5px dashed #cfcabf; border-radius: var(--radius);
  background: var(--card); cursor: pointer; overflow: hidden;
  transition: border-color .15s, background .15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.dropzone.dragover { border-color: var(--accent); background: #f4f6ef; }
.preview-wrap { touch-action: none; }
.dropzone-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 40px 20px; text-align: center; color: var(--ink-soft);
}
.dropzone-inner strong { color: var(--ink); font-size: 16px; }
.dropzone-inner span { font-size: 13px; }
.ico { width: 34px; height: 34px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.preview-wrap { position: relative; background: #f0eee9; }
.preview-wrap img { width: 100%; max-height: 56vh; object-fit: contain; }
.chip-remove {
  position: absolute; top: 12px; right: 12px;
  background: rgba(28,28,28,.82); color: #fff; border: 0; cursor: pointer;
  font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}

/* Filter */
.filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.filter-section-header {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: -8px;
}
.filter-chips-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -18px;
  padding-left: 18px;
  padding-right: 18px;
  -webkit-overflow-scrolling: touch;
}
.filter-chips-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex: none; border: 1px solid var(--line); background: var(--card); color: var(--ink-soft);
  font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 999px; cursor: pointer;
  white-space: nowrap; transition: all .15s;
}
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filter-chip.has-selection {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}
.filter-chip.incompatible {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.filter-chip:disabled {
  pointer-events: none;
}

/* Farbfilter mit Thumbnails */
.color-filter-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -18px;
  padding-left: 18px;
  padding-right: 18px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.color-filter-grid::-webkit-scrollbar { display: none; }
.color-filter-item {
  flex: none;
  width: 90px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: center;
  transition: transform .15s;
  scroll-snap-align: start;
}
.color-filter-item:active {
  transform: scale(0.95);
}
.color-filter-thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #f3f1ec;
  margin-bottom: 6px;
  transition: border-color .15s, box-shadow .15s;
}
.color-filter-item.active .color-filter-thumb {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
.color-filter-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color-filter-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.color-filter-item.active .color-filter-name {
  color: var(--ink);
  font-weight: 600;
}

/* "Alle Farben" Button */
.color-filter-item.all-colors .color-filter-thumb.all-colors-thumb {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.all-colors-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.color-filter-item.all-colors.active .color-filter-thumb {
  box-shadow: 0 0 0 3px var(--accent);
}

@media (min-width: 620px) {
  .color-filter-item {
    width: 100px;
  }
  .color-filter-thumb {
    width: 100px;
    height: 100px;
  }
}

/* Produktraster */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 620px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .grid { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; position: relative;
  transition: border-color .15s, box-shadow .15s, transform .12s, opacity .15s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.card:active { transform: scale(.985); }
.card.selected { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent) inset; }
.card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.card-incompatible {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(28, 28, 28, 0.85);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}
.card-img { aspect-ratio: 1; background: #f3f1ec; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-check {
  position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--line); display: grid; place-items: center;
  font-size: 15px; color: #fff; transition: all .15s;
}
.card.selected .card-check { background: var(--accent); border-color: var(--accent); }
.card.selected .card-check::after { content: "✓"; }
.card-body { padding: 10px 12px 13px; }
.card-type { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }
.card-name { font-size: 13.5px; line-height: 1.35; margin: 3px 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.card-color-name { font-size: 12px; color: var(--ink-soft); margin-bottom: 6px; font-weight: 500; }
.card-price { font-size: 14px; font-weight: 600; }
.card-price .old { font-weight: 400; color: #9a958c; text-decoration: line-through; font-size: 12.5px; margin-left: 6px; }
.card-price.is-sale { color: var(--sale); }
.swatches { display: flex; gap: 6px; margin-top: 9px; flex-wrap: wrap; }
.swatch {
  width: 22px; height: 22px; border-radius: 50%; padding: 0; cursor: pointer;
  border: 1px solid rgba(0,0,0,.12); background-size: cover; background-position: center;
  outline: 2px solid transparent; outline-offset: 1px;
}
.swatch.active { outline-color: var(--accent); }

/* Sticky Aktionsleiste */
.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(0); transition: transform .25s;
}
.actionbar-inner {
  max-width: 1080px; margin: 0 auto; min-height: var(--bar-h);
  padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.selection-display { flex: 1; min-width: 0; }
.selection-header { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.selection-header strong { color: var(--ink); font-size: 16px; }
.selected-products {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
}
.selected-products::-webkit-scrollbar { height: 3px; }
.selected-products::-webkit-scrollbar-track { background: transparent; }
.selected-products::-webkit-scrollbar-thumb { background: var(--line); border-radius: 999px; }
.selected-product-item {
  flex: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px 8px 8px;
  min-width: 220px;
  transition: border-color .15s, box-shadow .15s;
}
.selected-product-item:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.selected-product-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f1ec;
  flex-shrink: 0;
}
.selected-product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.selected-product-type {
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}
.selected-product-color {
  font-size: 12px;
  color: var(--ink-soft);
}
.selected-product-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: 2px solid rgba(255,255,255,.94);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background .15s, transform .12s;
  padding: 0;
  font-weight: 600;
}
.selected-product-remove:hover {
  background: #000;
  transform: scale(1.1);
}

/* Buttons */
.btn-primary {
  background: var(--ink); color: #fff; border: 0; cursor: pointer;
  font-size: 15px; font-weight: 600; padding: 14px 22px; border-radius: 999px;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, opacity .15s; white-space: nowrap;
}
.btn-primary:hover { background: #000; }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line); cursor: pointer;
  font-size: 15px; font-weight: 600; padding: 13px 22px; border-radius: 999px;
}

/* Overlay / Modal */
.overlay[hidden] { display: none; }
.overlay {
  position: fixed; inset: 0; z-index: 60; background: rgba(28,28,28,.55);
  display: grid; place-items: center; padding: 16px;
  padding-top: max(16px, env(safe-area-inset-top));
  -webkit-overflow-scrolling: touch; overflow-y: auto;
}
.modal {
  background: var(--card); border-radius: 18px; width: 100%; max-width: 560px;
  padding: 28px 22px; position: relative; box-shadow: var(--shadow); margin: auto;
}
.modal-close {
  position: absolute; top: 12px; right: 14px; background: none; border: 0; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--ink-soft);
}
.modal h3 { font-size: 20px; text-align: center; margin-bottom: 16px; }

.loading-view { text-align: center; padding: 24px 8px; }
.loading-view p { color: var(--ink-soft); font-size: 14px; max-width: 36ch; margin: 8px auto 0; }
.spinner {
  width: 46px; height: 46px; margin: 0 auto 18px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--accent); animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Vorher / Nachher als zwei Bilder */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ba-grid figure { margin: 0; }
.ba-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 14px; background: #f0eee9;
}
.ba-grid figcaption {
  text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent-dark); margin-top: 7px;
}

/* Style-Meter */
.stylemeter { margin-top: 18px; }
.sm-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.sm-head #lookName { font-weight: 600; }
.sm-head strong { font-size: 18px; color: var(--accent-dark); }
.sm-track { height: 9px; background: #ece9e3; border-radius: 999px; margin-top: 7px; overflow: hidden; }
.sm-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--accent), #9aa782); transition: width .9s cubic-bezier(.22,1,.36,1); }
.sm-hint { font-size: 12.5px; color: var(--ink-soft); margin: 8px 0 0; }

/* Teilen */
.share-main { width: 100%; margin-top: 18px; font-size: 16px; padding: 15px; }
.share-row { display: flex; gap: 8px; margin-top: 8px; }

/* Galerie-Option */
.gallery-option {
  margin-top: 18px;
  padding: 14px;
  background: #f8f7f5;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.gallery-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.gallery-checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.gallery-checkbox-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.gallery-checkbox-label strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.gallery-checkbox-label small {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.share-row .btn-ghost { flex: 1; padding: 11px 8px; font-size: 14px; }

.shop-head { display: flex; justify-content: space-between; align-items: baseline; margin-top: 24px; padding-bottom: 6px; border-bottom: 2px solid var(--ink); }
.shop-head span { font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.shop-head strong { font-size: 16px; }
.full-w { width: 100%; margin-top: 16px; }

.result-products { margin-top: 4px; display: flex; flex-direction: column; gap: 8px; }
.result-products .rp {
  display: flex; align-items: center; gap: 10px; font-size: 13px;
  border-top: 1px solid var(--line); padding-top: 8px;
}
.result-products img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; }
.result-products a { color: var(--ink); text-decoration: none; font-weight: 500; }
.result-products .rp-price { margin-left: auto; font-weight: 600; white-space: nowrap; }

.error-view { text-align: center; padding: 12px 4px; }
.error-view p { color: var(--ink-soft); font-size: 14px; margin: 8px 0 18px; word-break: break-word; }

.site-footer { text-align: center; padding: 26px 18px; color: #9a958c; font-size: 12px; }

/* Confetti */
#confetti { position: fixed; inset: 0; z-index: 80; pointer-events: none; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom)); transform: translate(-50%, 20px);
  z-index: 90; background: var(--ink); color: #fff; font-size: 14px; font-weight: 500;
  padding: 13px 20px; border-radius: 999px; box-shadow: var(--shadow);
  opacity: 0; transition: opacity .25s, transform .25s; max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast[hidden] { display: none; }

/* Lightbox für Bildvergrößerung */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1c1c1c;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover {
  background: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.lightbox-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1c1c1c;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-btn:hover {
  background: #fff;
}

.lightbox-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Bilder klickbar machen */
.ba-grid figure {
  cursor: pointer;
  transition: opacity 0.2s;
}

.ba-grid figure:hover {
  opacity: 0.9;
}

.ba-grid figure img {
  transition: transform 0.2s;
}

.ba-grid figure:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .lightbox-close,
  .lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-nav {
    padding: 0 10px;
  }
}

/* Look-Name Input */
.look-name-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px solid #e7e4df;
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.look-name-input:focus {
  border-color: #6f7a5a;
  box-shadow: 0 0 0 3px rgba(111, 122, 90, 0.1);
}

.look-name-input::placeholder {
  color: #9a958c;
}
