/* ===========================================================================
   CommunityDropWidget – „Local Drop Builder"
   - Desktop: vertikaler Tab rechts mittig (Zustaende) + Slide-in-Panel von rechts
   - Mobile : schwebende Pill unten rechts + Bottom-Sheet
   - Panel: markige Brand-Zone (Koordinatenraster + Map-Pin) + Conversational Stepper
   - z-index bewusst unter Cart-Sidebar (10000)/Produkt-Popup: stoert Kauf nie.
   =========================================================================== */

#community-drop-widget {
  --ldw-bg: #111111;
  --ldw-fg: #ffffff;
  --ldw-accent: #111111;
  --ldw-panel-bg: #ffffff;
  --ldw-panel-fg: #111111;
  --ldw-border: #e4e4e4;
  --ldw-muted: #6b6b6b;
  --ldw-radius: 14px;
  --ldw-z-trigger: 9990;
  /* Overlay/Panel über dem Support-Chat (z-index 9998), analog zum Warenkorb
     (Overlay 9999 / Sidebar 10000), damit das offene Panel den Chat verdeckt. */
  --ldw-z-overlay: 9999;
  --ldw-z-panel: 10000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#community-drop-widget[hidden] { display: none !important; }

/* Container mit eigenem display:flex sonst NICHT durch [hidden] versteckbar
   (display:flex schlaegt das schwaechere [hidden]{display:none}). Daher explizit:
   Success erscheint erst nach dem Absenden, Stepper/Nav verschwinden im Summary/Success. */
.ldw-success[hidden],
.ldw-stepper[hidden],
.ldw-nav[hidden] { display: none !important; }

.ldw-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

/* ========================== DESKTOP TAB (Zustaende) ===================== */
.ldw-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: var(--ldw-z-trigger);
  background: var(--ldw-bg);
  color: var(--ldw-fg);
  border: none;
  margin: 0;
  /* Groesse mit !important fixieren, da der Shop global
     `button { padding:12px 24px !important; font-size:16px !important }` setzt
     und den Tab sonst aufbläht (und Hover dadurch kleiner wirken lässt). */
  padding: 16px 11px !important;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, padding 0.25s ease;
}

/* Kein Label-Swap mehr: Text bleibt konstant „+ Local Drop". */
.ldw-tab__label--hover { display: none; }

/* Hover/Focus dezent: leichte Aufhellung + minimal expandieren + leicht herausgleiten.
   transform MIT !important, da der Shop global button:hover { transform: translateY(-1px)!important }
   setzt; sonst verliert der Tab seine -50%-Zentrierung und springt nach unten. */
.ldw-tab:hover,
.ldw-tab:active {
  background: #262626 !important;
  border-color: transparent !important;
  box-shadow: -2px 0 16px rgba(0, 0, 0, 0.26) !important;
  /* etwas GRÖSSER als Basis (11px) -> dezentes Expandieren beim Hover */
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  padding-left: 14px !important;
  padding-right: 14px !important;
  transform: translateY(-50%) translateX(-3px) !important;
}
.ldw-tab:focus-visible { outline: 3px solid #4c9ffe; outline-offset: 2px; }

/* Peek-Zustand: Tab ragt weiter heraus + Bubble erscheint */
.ldw--state-peek .ldw-tab { transform: translateY(-50%) translateX(-6px); }
.ldw--state-peek .ldw-tab:hover,
.ldw--state-peek .ldw-tab:active { transform: translateY(-50%) translateX(-6px) !important; }

/* Open-Zustand: Tab als aktiv erkennbar (leicht verschoben/dunkler) */
.ldw--state-open .ldw-tab { background: #000; transform: translateY(-50%) translateX(-3px); }

.ldw-peek {
  position: fixed;
  top: 50%;
  right: 52px;
  transform: translateY(-50%) translateX(12px);
  z-index: var(--ldw-z-trigger);
  background: var(--ldw-bg);
  color: var(--ldw-fg);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  max-width: 240px;
  line-height: 1.3;
  box-shadow: -2px 4px 16px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.ldw-peek::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border-left: 7px solid var(--ldw-bg);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ldw--state-peek .ldw-peek {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
  cursor: pointer;
}

/* display:none MIT !important, da der Shop global `button { display:inline-block !important }`
   setzt; sonst erscheint die Pill auf Desktop (position:static) unten links im Fluss. */
.ldw-pill { display: none !important; }

/* ========================== OVERLAY ===================================== */
.ldw-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: var(--ldw-z-overlay);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ldw--state-open .ldw-overlay { opacity: 1; }

/* ========================== PANEL (Desktop Slide-in) ==================== */
.ldw-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 410px;
  max-width: 92vw;
  background: var(--ldw-panel-bg);
  color: var(--ldw-panel-fg);
  z-index: var(--ldw-z-panel);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ldw--state-open .ldw-panel { transform: translateX(0); }

.ldw-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  z-index: 3;
  width: 38px; height: 38px;
  border-radius: 50%;
}
.ldw-close:hover { background: rgba(255, 255, 255, 0.26) !important; color: #fff; transform: none !important; box-shadow: none !important; border-color: transparent !important; }
.ldw-close:focus-visible { outline: 3px solid #4c9ffe; outline-offset: 2px; }

/* ========================== BRAND-ZONE (Mini-Poster) =================== */
.ldw-brandzone {
  position: relative;
  flex: 0 0 auto;
  background: #0d0d0d;
  color: #fff;
  padding: 30px 26px 24px;
  overflow: hidden;
}
/* Feines Koordinaten-/Kartenraster */
.ldw-brandzone__bg {
  position: absolute;
  inset: 0;
  color: #ffffff;
  opacity: 0.10;
  background-image:
    repeating-linear-gradient(0deg, currentColor 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 28px);
  pointer-events: none;
}
.ldw-pin {
  position: absolute;
  right: -10px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  color: #ffffff;
  opacity: 0.14;
}
.ldw-brandzone__content { position: relative; z-index: 1; }

.ldw-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ldw-badge,
.ldw-city-badge {
  display: inline-block;
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.ldw-badge { background: #fff; color: #0d0d0d; }
.ldw-city-badge { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.5); }
.ldw-city-badge[hidden] { display: none; }

.ldw-headline {
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.ldw-intro {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 34ch;
}

/* ========================== STEPPER ==================================== */
.ldw-stepper {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 26px 26px;
  display: flex;
  flex-direction: column;
}

.ldw-progress {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ldw-muted);
  margin-bottom: 14px;
}

.ldw-steps { flex: 1 1 auto; }

.ldw-step { animation: ldw-fade 0.28s ease; }
.ldw-step[hidden] { display: none; }
@keyframes ldw-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ldw-step__q {
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 6px;
}
.ldw-step__help {
  font-size: 13px;
  color: var(--ldw-muted);
  margin: 0 0 14px;
}
.ldw-step__sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 16px 0 5px;
}

.ldw-step input[type="text"],
.ldw-step input[type="url"],
.ldw-step input[type="email"],
.ldw-step select,
.ldw-step textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 13px;
  border: 1px solid var(--ldw-border);
  border-radius: 10px;
  font-size: 16px; /* >=16px verhindert iOS-Zoom */
  font-family: inherit;
  background: #fafafa;
  color: var(--ldw-panel-fg);
}
.ldw-step textarea { resize: vertical; min-height: 76px; }
.ldw-step input:focus,
.ldw-step select:focus,
.ldw-step textarea:focus {
  outline: none;
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.ldw-step-error,
.ldw-error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid #f5c6c6;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13px;
  margin-top: 12px;
}

/* ========================== DATE-/TIME-PICKER ========================== */
.ldw-datepick { margin-bottom: 12px; }

.ldw-cal {
  border: 1px solid var(--ldw-border);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.ldw-cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.ldw-cal__title {
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
  font-weight: 700; font-size: 13px;
}
.ldw-cal__nav {
  width: 28px; height: 28px;
  border: none; background: #f1f1f1; color: #111;
  border-radius: 8px; font-size: 16px; line-height: 1; cursor: pointer;
}
.ldw-cal__nav:hover { background: #e6e6e6 !important; transform: none !important; box-shadow: none !important; }
.ldw-cal__nav:focus-visible { outline: 3px solid #4c9ffe; outline-offset: 2px; }

.ldw-cal__weekdays,
.ldw-cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; width: 100%; box-sizing: border-box; }
.ldw-cal__weekdays {
  margin-bottom: 4px;
  font-size: 11px; font-weight: 700; color: var(--ldw-muted); text-align: center;
}
/* Tag-Zellen sind <button> -> globale Shop-button-Styles (padding/border/min-*) mit !important
   neutralisieren, damit sie exakt die 1fr-Spalte fuellen und unter den Wochentagen sitzen. */
.ldw-day {
  height: 38px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: #f5f5f5 !important;
  color: var(--ldw-panel-fg) !important;
  border-radius: 4px !important;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s ease;
}
.ldw-day:hover { background: #e4e4e4 !important; transform: none !important; box-shadow: none !important; }
.ldw-day:focus-visible { outline: 2px solid #4c9ffe !important; outline-offset: 1px; }
.ldw-day--empty { visibility: hidden; cursor: default; background: transparent !important; }
.ldw-day--today { box-shadow: inset 0 0 0 2px #111 !important; font-weight: 700; }
.ldw-day--selected { background: #111 !important; color: #fff !important; font-weight: 700; }

.ldw-time-toggle {
  display: flex; align-items: center; gap: 8px;
  margin: 12px 0 0;
  font-size: 12px; font-weight: 600; cursor: pointer;
}
.ldw-timewheel { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.ldw-timewheel[hidden] { display: none !important; }
.ldw-wheel {
  display: flex; flex-direction: column; align-items: center;
  background: #fafafa; border: 1px solid var(--ldw-border); border-radius: 10px;
  padding: 2px 0; width: 56px;
}
.ldw-wheel__btn {
  width: 100%; border: none; background: transparent; color: #666;
  font-size: 13px; line-height: 1; padding: 4px 0; cursor: pointer;
}
.ldw-wheel__btn:hover { background: #efefef !important; color: #111; transform: none !important; box-shadow: none !important; }
.ldw-wheel__btn:focus-visible { outline: 2px solid #4c9ffe; outline-offset: -2px; }
.ldw-wheel__val {
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 700; padding: 1px 0; min-width: 2ch; text-align: center;
}
.ldw-wheel__sep { font-size: 17px; font-weight: 700; }

.ldw-freetext-label {
  display: block;
  margin: 14px 0 5px;
  font-size: 12px; font-weight: 600; color: var(--ldw-muted);
}

/* Navigation */
.ldw-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.ldw-btn {
  flex: 1 1 auto;
  padding: 13px 16px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.1s ease, background 0.2s ease;
}
.ldw-btn--primary { background: var(--ldw-accent); color: #fff; }
.ldw-btn--primary:hover { background: #000 !important; transform: none !important; box-shadow: none !important; opacity: 0.95; }
.ldw-btn--ghost {
  flex: 0 0 auto;
  background: #f1f1f1;
  color: #333;
}
.ldw-btn--ghost:hover { background: #e6e6e6 !important; transform: none !important; box-shadow: none !important; }
.ldw-btn:active { transform: translateY(1px) !important; }
.ldw-btn:focus-visible { outline: 3px solid #4c9ffe; outline-offset: 2px; }
.ldw-btn:disabled { opacity: 0.5; cursor: default; }

/* ========================== SUMMARY ==================================== */
.ldw-summary { padding-top: 4px; }
.ldw-summary__title {
  font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 14px;
}
.ldw-summary__list { margin: 0 0 18px; }
.ldw-summary__row {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.ldw-summary__row dt {
  flex: 0 0 64px;
  margin: 0;
  font-weight: 700;
  color: var(--ldw-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.ldw-summary__row dd { margin: 0; flex: 1 1 auto; word-break: break-word; }

.ldw-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ldw-muted);
  cursor: pointer;
  margin: 4px 0 6px;
}
.ldw-check input { margin-top: 2px; flex: 0 0 auto; }

/* ========================== SKIZZEN-UPLOAD ============================= */
.ldw-sketch { margin: 4px 0 14px; }
.ldw-sketch__input {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); border: 0; white-space: nowrap;
}
.ldw-sketch__btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px dashed var(--ldw-border);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 13px; font-weight: 600;
  color: var(--ldw-panel-fg);
  background: #fafafa;
  cursor: pointer;
}
.ldw-sketch__btn:hover { background: #f0f0f0; }
.ldw-sketch__input:focus-visible + .ldw-sketch__btn { outline: 3px solid #4c9ffe; outline-offset: 2px; }
.ldw-sketch__hint { margin: 6px 0 0; font-size: 11.5px; color: var(--ldw-muted); }
.ldw-sketch__preview[hidden] { display: none !important; }
.ldw-sketch__preview {
  display: flex; align-items: center; gap: 10px;
  margin-top: 10px;
  border: 1px solid var(--ldw-border);
  border-radius: 10px;
  padding: 8px;
}
.ldw-sketch__thumb {
  width: 64px; height: 64px; flex: 0 0 auto;
  object-fit: cover; border-radius: 6px;
  background: #f0f0f0;
}
.ldw-sketch__name {
  flex: 1 1 auto; font-size: 12.5px; color: var(--ldw-panel-fg);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ldw-sketch__remove {
  flex: 0 0 auto; border: none; background: none;
  color: #b3261e; font-size: 12.5px; font-weight: 600; cursor: pointer;
  padding: 4px 6px;
}
.ldw-sketch__remove:hover { text-decoration: underline; }
.ldw-sketch__error {
  background: #fdecec; color: #b3261e; border: 1px solid #f5c6c6;
  border-radius: 10px; padding: 9px 12px; font-size: 13px; margin-top: 10px;
}

/* ========================== SUCCESS ==================================== */
.ldw-success {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}
.ldw-success__check {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ========================== MOBILE ===================================== */
@media (max-width: 768px) {
  .ldw-tab, .ldw-peek { display: none !important; }

  /* Mobile: vertikaler Tab am LINKEN Rand (mittig) statt horizontaler Pille
     unten rechts -> keine Kollision mit dem Chat-Button. */
  .ldw-pill {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    right: auto;
    top: auto;
    bottom: 20px; /* gleiche Grundlinie wie der Chat-Button (bottom:20px) */
    transform: none;
    z-index: var(--ldw-z-trigger);
    background: var(--ldw-bg) !important;
    color: var(--ldw-fg) !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 12px 8px !important; /* ~25% kleiner */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 0 8px 8px 0 !important;
    font-family: 'Gotham Bold', 'Gotham', 'Montserrat', sans-serif;
    font-size: 10px !important; /* ~25% kleiner */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: padding 0.35s ease, font-size 0.35s ease,
                transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.35s ease;
  }
  .ldw-pill:hover,
  .ldw-pill:active { background: #262626 !important; transform: translateX(3px) !important; box-shadow: 2px 0 14px rgba(0, 0, 0, 0.24) !important; border-color: transparent !important; }
  .ldw-pill:focus-visible { outline: 3px solid #4c9ffe; outline-offset: 2px; }

  /* Erstbesuch-Peek: schmale vertikale Lasche wird kurz dicker/größer und
     schiebt sich etwas heraus, damit sie bewusster wahrgenommen wird. Fällt
     nach ~5 s (JS-Timer, Zustand ldw--state-peek) automatisch zurück. */
  .ldw--state-peek .ldw-pill {
    padding: 16px 12px !important;
    font-size: 13px !important;
    transform: translateX(5px) !important;
    box-shadow: 3px 0 18px rgba(0, 0, 0, 0.28) !important;
  }

  /* Mobile: Vollbild statt Bottom-Sheet */
  .ldw-panel {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    transform: translateY(100%);
    box-shadow: none;
  }
  .ldw--state-open .ldw-panel { transform: translateY(0); }
  .ldw-brandzone { padding: 26px 20px 18px; }
  .ldw-headline { font-size: 21px; }
  .ldw-stepper { padding: 18px 20px 24px; }

  /* Kein Drag-Handle im Vollbild-Modus */
  .ldw-panel::before { content: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ldw-tab, .ldw-peek, .ldw-pill, .ldw-overlay, .ldw-panel, .ldw-step { transition: none !important; animation: none !important; }
}

/* ===========================================================================
   Panel-Image (Hintergrund + stadtspezifisches Design-Overlay)
   Wird in die gewaehlte Panel-Seite injiziert (community_drop_widget.js).
   Fuellt die freie Flaeche; 3:4-Karte wie eine Collection Card, zentriert.
   =========================================================================== */
.ldw-panel-image {
  width: 100%;
  margin: 18px 0 6px;
}
.ldw-panel-image .collection-card {
  width: 100%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  /* Kein Rahmen/Schatten — das (transparente) PNG soll nahtlos mit dem
     Panel-Hintergrund verschmelzen ("aus einem Guss"). */
  border-radius: 0;
  box-shadow: none;
  cursor: default;
}
/* Shop-Hover-Effekte (Lift/Shadow/BG-Zoom) hier neutralisieren — das Bild im
   Drop-Panel ist nicht klickbar. */
.ldw-panel-image .collection-card:hover {
  transform: none;
  box-shadow: none;
}
.ldw-panel-image .collection-card:hover .collection-card-bg {
  transform: none;
}
.ldw-panel-image .card-overlay-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
