:root {
  --amp-ink: #14161a; --amp-ink-soft: #4a4f57; --amp-line: #e7e8eb;
  --amp-bg: #f7f7f8; --amp-white: #ffffff; --amp-accent: #c8102e;
}

/* ---------- Teaser (homepage "Trusted Shops") ---------- */
.eurs-teaser-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.eurs-teaser-link { font-weight: 700; font-size: 14px; color: var(--amp-ink); text-decoration: none; white-space: nowrap; }
.eurs-teaser-link:hover { color: var(--amp-accent); }
.eurs-teaser-grid, .eurs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ---------- Cards ---------- */
.eurs-card {
  display: flex;
  background: var(--amp-white);
  border: 1px solid var(--amp-line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 24px rgba(20,22,26,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.eurs-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(20,22,26,0.12); }
.eurs-card-img { width: 130px; flex-shrink: 0; background-size: cover; background-position: center; background-color: #ececee; }
.eurs-card-body { padding: 14px 16px; flex: 1; min-width: 0; }
.eurs-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.eurs-card-top h3 { font-size: 15px; margin: 0; }
.eurs-rating { font-size: 13px; font-weight: 700; color: var(--amp-accent); white-space: nowrap; }
.eurs-location { font-size: 13px; color: var(--amp-ink-soft); margin-top: 4px; }
.eurs-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.eurs-tag { background: var(--amp-bg); font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 6px; color: var(--amp-ink-soft); }

/* ---------- Filters ---------- */
.eurs-marketplace { display: block; }
.eurs-filters {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: end;
  background: var(--amp-white); border: 1px solid var(--amp-line); border-radius: 14px;
  padding: 22px; margin: 28px 0;
}
.eurs-filters .amp-btn { align-self: flex-end; }

/* ---------- Single shop page ---------- */
.eurs-hero {
  height: 340px;
  background-size: cover;
  background-position: center;
  background-color: #2a2d33;
  background-image: linear-gradient(180deg, rgba(20,22,26,0.1) 0%, rgba(20,22,26,0.85) 100%);
  background-blend-mode: multiply;
  display: flex; align-items: flex-end;
  position: relative;
}
.eurs-hero-inner { padding: 32px clamp(16px, 4vw, 60px); max-width: 1200px; margin: 0 auto; width: 100%; color: #fff; position: relative; }
.eurs-hero-badges { display: flex; gap: 10px; margin-bottom: 10px; }
.eurs-badge-verified { background: var(--amp-accent); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.eurs-badge-rating { background: rgba(255,255,255,0.15); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.eurs-hero h1 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 6px; }
.eurs-hero-location { font-size: 15px; color: #d6d8dc; }
.eurs-hero-cta { position: absolute; right: clamp(16px, 4vw, 60px); bottom: 32px; }

.eurs-single { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; max-width: 1200px; margin: 40px auto; padding: 0 24px; align-items: start; }
.eurs-specialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.eurs-specialty-item { background: var(--amp-bg); border-radius: 10px; padding: 12px 14px; font-size: 14px; color: var(--amp-ink); }

.eurs-single-sidebar { display: flex; flex-direction: column; gap: 20px; }
.eurs-sidebar-box { border: 1px solid var(--amp-line); border-radius: 14px; padding: 20px; }
.eurs-sidebar-box h3 { font-size: 15px; margin: 0 0 14px; }
.eurs-contact-btn {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--amp-line); border-radius: 10px; padding: 12px 14px;
  margin-bottom: 10px; text-decoration: none; color: var(--amp-ink); font-weight: 600; font-size: 14px;
}
.eurs-contact-btn:hover { border-color: var(--amp-ink); }
.eurs-hours-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--amp-line); }
.eurs-hours-row:last-child { border-bottom: none; }
.eurs-closed { color: var(--amp-accent); }

@media (max-width: 900px) {
  .eurs-single { grid-template-columns: 1fr; }
  .eurs-specialty-grid { grid-template-columns: 1fr; }
  .eurs-hero-cta { position: static; display: inline-flex; margin-top: 14px; }
  .eurs-card { flex-direction: column; }
  .eurs-card-img { width: 100%; height: 160px; }

  /* Homepage "Trusted Shops" teaser: keep 2 cards per row on tablet + mobile
     instead of collapsing to 1, using a smaller/tighter card layout. */
  .eurs-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .eurs-teaser-grid .eurs-card-img { height: 100px; }
  .eurs-teaser-grid .eurs-card-body { padding: 10px 12px; }
  .eurs-teaser-grid .eurs-card-top h3 { font-size: 13px; line-height: 1.3; }
  .eurs-teaser-grid .eurs-rating { font-size: 11px; }
  .eurs-teaser-grid .eurs-location { font-size: 11px; margin-top: 3px; }
  .eurs-teaser-grid .eurs-tags { gap: 4px; margin-top: 6px; }
  .eurs-teaser-grid .eurs-tag { font-size: 10px; padding: 3px 7px; }
}

@media (max-width: 420px) {
  .eurs-teaser-grid .eurs-card-img { height: 80px; }
}
