/* Omnigo – Design-Mockup v6 "Apple-Stil + Mobile-Fixes" */

:root {
  --ink: #1D1D1F;       /* fast Schwarz, Systemtext-Farbe */
  --ink-soft: #6E6E73;  /* gedecktes Grau fuer Nebentext (neutral, keine Farbe) */
  --white: #FFFFFF;
  --gray-bg: #F5F5F7;   /* helles Neutralgrau fuer Kachel-Wechsel, wie auf apple.com */
  --line: #D2D2D7;      /* Trennlinie, neutral */
  --mint: #1FD8A4;
  --mint-dark: #0FAE84;
  --mint-tint: #E4FBF4;
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .logo, .brand-font {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

a { text-decoration: none; color: inherit; }

.badge-mockup {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0.85;
  z-index: 999;
}

/* Header */
header.topbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 22px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--ink);
}
.logo .go { color: var(--mint); }

/* Big logo that hangs into the hero / logo-banner on every page */
.mega-logo {
  position: absolute;
  top: 6px;
  left: 24px;
  z-index: 20;
  font-size: clamp(48px, 8vw, 108px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  pointer-events: none;
}
.mega-logo .go { color: var(--mint); }

/* Compact hanging-logo banner used on inner pages (same treatment as homepage hero) */
.logo-banner {
  position: relative;
  background: var(--white);
  min-height: 128px;
}

.search-bar {
  flex: 1 1 240px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  transition: border-color .15s;
  background: var(--white);
  order: 2;
  min-width: 0;
}
.search-bar:focus-within { border-color: var(--ink); }
.search-bar input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 9px 18px;
  font-size: 13px;
  outline: none;
  font-family: inherit;
  background: transparent;
}
.search-bar button {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
  font-size: 12px;
  flex-shrink: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  white-space: nowrap;
  font-weight: 400;
  color: var(--ink);
  order: 3;
  margin-left: auto;
}
.btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  border: 1.5px solid transparent;
  display: inline-block;
  font-family: inherit;
  transition: all .15s;
}
.btn-primary {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}
.btn-primary:hover { background: var(--mint-dark); border-color: var(--mint-dark); }
.btn-gold {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}
.btn-gold:hover { background: var(--mint-dark); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  border-color: var(--line);
  color: var(--ink-soft);
  background: transparent;
}
.btn-link {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  border-radius: 0;
}

/* Category nav */
nav.categories {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.categories-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  gap: 26px;
  overflow-x: auto;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-soft);
  -webkit-overflow-scrolling: touch;
}
.categories-inner a { flex-shrink: 0; }
.categories-inner a:hover { color: var(--ink); }

/* ===== Apple-style tiles ===== */
.tile {
  padding: 100px 22px;
  text-align: center;
}
.tile.gray { background: var(--gray-bg); }
.tile.white { background: var(--white); }
.tile-inner {
  max-width: 720px;
  margin: 0 auto;
}
.tile-eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.tile h1, .tile h2 {
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--ink);
}
.tile p.sub {
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 auto 28px;
  max-width: 560px;
  font-weight: 400;
}
.tile-cta {
  display: flex;
  gap: 26px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.tile-cta .btn-link::after { content: " \203A"; }

/* Hero (first tile, contains mega-logo) */
.hero {
  position: relative;
  background: var(--white);
  padding: 190px 22px 90px;
  text-align: center;
  overflow: hidden;
}
.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.hero-rule { display: none; }
.hero-inner h1 {
  font-size: clamp(32px, 8vw, 64px);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 700;
  color: var(--ink);
}
.hero-inner h1 em { color: var(--ink); font-style: normal; }
.hero-inner p.sub {
  margin: 0 auto 32px;
  color: var(--ink-soft);
  font-size: clamp(16px, 3vw, 19px);
  max-width: 520px;
  line-height: 1.5;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.hero-modules {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
  justify-content: center;
}
.hero-module-pill {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
}

/* Tile visual placeholder (image mock) */
.tile-visual {
  margin-top: 46px;
  height: 300px;
  background: linear-gradient(180deg, #ECECEE, var(--gray-bg));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7B7BC;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}

.ai-promo { display: none; }

/* Content */
.content {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 22px 70px;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-title h2 { font-size: 24px; margin: 0; font-weight: 700; }
.section-title a { font-size: 13px; color: var(--ink); font-weight: 500; }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .15s, transform .15s;
  position: relative;
  text-align: left;
}
.card:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.card-img {
  height: 148px;
  background: var(--gray-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7B7BC;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.card-body { padding: 14px 16px; }
.card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 7px;
  line-height: 1.35;
  min-height: 38px;
  color: var(--ink);
}
.card-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.card-meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}
.tag-auction {
  display: inline-block;
  margin-top: 9px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--gray-bg);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Status chips */
.trophy-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.trophy-chip {
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}
.trophy-chip.gold { background: var(--white); color: var(--ink); border-color: var(--ink); }
.trophy-chip.violet { background: var(--gray-bg); color: var(--ink); border-color: var(--line); }
.trophy-chip.lime { background: var(--mint-tint); color: var(--mint-dark); border-color: var(--mint); }
.trophy-chip.coral { background: var(--white); color: var(--ink-soft); border-color: var(--line); }

/* Footer */
footer {
  background: var(--gray-bg);
  color: var(--ink-soft);
  padding: 40px 22px;
  font-size: 12px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-inner div strong { color: var(--ink); display: block; margin-bottom: 10px; font-weight: 600; font-size: 13px; }

/* Detail page */
.breadcrumb {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 34px;
}
.gallery-main {
  height: 380px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7B7BC;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.gallery-thumbs div {
  width: 70px;
  height: 54px;
  background: var(--gray-bg);
  border-radius: 8px;
  border: 2px solid transparent;
}
.gallery-thumbs div.active { border-color: var(--ink); }

.description-box {
  margin-top: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.description-box h3 { margin-top: 0; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-soft); }
.description-box p { font-size: 15px; line-height: 1.7; color: var(--ink); margin-top: 8px; }

.buy-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  height: fit-content;
  position: sticky;
  top: 96px;
}
.buy-box h1 { font-size: 21px; margin: 0 0 10px; font-weight: 700; }
.buy-box .price-now {
  font-size: 34px;
  font-weight: 700;
  margin: 12px 0 2px;
}
.buy-box .price-sub { font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; }
.countdown {
  background: var(--gray-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.buy-box .btn { width: 100%; text-align: center; margin-bottom: 10px; box-sizing: border-box; }
.buyer-protection {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.buyer-protection::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  display: inline-block;
}
.seller-box {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.seller-box .seller-name { font-weight: 700; margin-bottom: 8px; }
.stars { color: var(--ink); font-size: 13px; }

/* Stepper */
.stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.step .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.step.active { color: var(--ink); }
.step.active .num { background: var(--ink); color: #fff; border-color: var(--ink); }
.step.done .num { background: var(--mint); color: var(--ink); border-color: var(--mint); }
.step-line { flex: 1; height: 1.5px; background: var(--line); max-width: 60px; min-width: 16px; }

.upload-zone {
  border: 1.5px dashed var(--line);
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 50px 20px;
  text-align: center;
  color: var(--ink-soft);
}
.upload-zone .icon { font-size: 13px; margin-bottom: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); font-weight: 700; }

.ai-result {
  background: var(--white);
  border: 1.5px solid var(--mint);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 22px;
}
.ai-result-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
  font-size: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--gray-bg);
}
.field textarea { resize: vertical; min-height: 74px; }
.time-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--mint-tint);
  color: var(--mint-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* Profile page */
.profile-head {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  border: 3px solid var(--mint);
}
.profile-stats {
  display: flex;
  gap: 34px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.profile-stats div strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.profile-stats div span { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.03em; }

.trophy-shelf {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trophy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.trophy-card .emoji {
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--gray-bg);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.trophy-card strong { display: block; font-size: 13px; margin-bottom: 4px; font-weight: 600; }
.trophy-card span { font-size: 11px; color: var(--ink-soft); }
.trophy-card.locked { opacity: 0.4; }
.trophy-card.locked .emoji { background: var(--white); border: 1px solid var(--line); color: var(--ink-soft); }

/* Stats-Strip unter dem Hero */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 22px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  text-align: center;
}
.stats-strip-inner div strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.stats-strip-inner div span {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* So funktioniert's */
.howitworks-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}
.howitworks-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.howitworks-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.howitworks-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.howitworks-card p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Vertrauen & Sicherheit */
.feature-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.feature-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.feature-card p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Nachhaltigkeit */
.eco-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.eco-stats div { text-align: center; max-width: 180px; }
.eco-stats strong { display: block; font-size: 24px; font-weight: 700; color: var(--ink); }
.eco-stats span { font-size: 12px; color: var(--ink-soft); }

/* ===================== Mobile ===================== */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .trophy-shelf { grid-template-columns: repeat(2, 1fr); }

  .topbar-inner { gap: 10px 14px; padding: 12px 16px; }
  .logo { order: 1; font-size: 19px; }
  .search-bar { order: 3; flex: 1 1 100%; }
  .topbar-actions { order: 2; margin-left: auto; gap: 12px; }

  .hero { padding: 128px 18px 64px; }
  .mega-logo { font-size: 40px; top: 10px; left: 16px; }
  .logo-banner { min-height: 78px; }

  .tile { padding: 56px 18px; }
  .tile-cta { gap: 16px; }

  .buy-box { position: static; margin-top: 10px; }

  .profile-head { flex-direction: column; text-align: center; padding: 26px 20px; }
  .profile-stats { justify-content: center; gap: 22px; }

  .stats-strip-inner { gap: 30px; padding: 26px 18px; }
  .howitworks-grid { grid-template-columns: 1fr; gap: 18px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .grid { grid-template-columns: 1fr; }
  .trophy-shelf { grid-template-columns: repeat(2, 1fr); }
  .topbar-actions a:not(.btn) { display: none; }
  .mega-logo { font-size: 32px; top: 8px; left: 14px; }
  .logo-banner { min-height: 62px; }
  .hero { padding-top: 104px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-strip-inner { gap: 22px; }
  .tile h1, .tile h2, .hero-inner h1 { letter-spacing: -0.02em; }
}
