/* CashbackOase Phase F3 - Shop-Empfehlungen modernisieren
   Scope: featured.php only. No redirect, coupon reveal, database or go2store logic changes. */

.cbo-featured-page,
.cbo-featured-page * {
  box-sizing: border-box;
}

.cbo-featured-page {
  --cbo-featured-ink: #071f45;
  --cbo-featured-muted: #5b6b82;
  --cbo-featured-line: #dfe9f4;
  --cbo-featured-soft: #f7fbff;
  --cbo-featured-blue: #075bbb;
  --cbo-featured-green: #128047;
  --cbo-featured-green-soft: #eaf7f1;
  --cbo-featured-gold: #b7791f;
  --cbo-featured-gold-soft: #fff7e8;
  width: 100%;
  margin: 0 auto 46px;
  color: var(--cbo-featured-ink);
}

.cbo-featured-page a {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.cbo-featured-hero {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  margin: 20px 0 18px;
  padding: 26px 30px;
  border: 1px solid #d8e8f7;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 16%, rgba(18, 128, 71, .10), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #f3f8fc 100%);
  box-shadow: 0 20px 55px rgba(7, 54, 110, .08);
}

.cbo-featured-hero__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.cbo-featured-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eef7f2;
  color: var(--cbo-featured-green);
  font-weight: 850;
  font-size: 13px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.cbo-featured-hero h1 {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  color: var(--cbo-featured-ink);
  font-size: 38px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.03em;
}

.cbo-featured-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--cbo-featured-muted);
  font-size: 17px;
  line-height: 1.58;
}

.cbo-featured-hero__stats {
  flex: 0 0 250px;
  display: grid;
  gap: 12px;
}

.cbo-featured-hero__stats span {
  display: block;
  padding: 16px 18px;
  border: 1px solid #d5e6f6;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  color: var(--cbo-featured-muted);
  font-weight: 750;
  box-shadow: 0 12px 30px rgba(7,54,110,.06);
}

.cbo-featured-hero__stats strong {
  display: block;
  margin-bottom: 3px;
  color: var(--cbo-featured-green);
  font-size: 26px;
  line-height: 1;
  font-weight: 850;
}

.cbo-featured-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.cbo-featured-guide__item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--cbo-featured-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8,34,71,.06);
}

.cbo-featured-guide__item i {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #eef7f2;
  color: var(--cbo-featured-green);
  font-size: 17px;
}

.cbo-featured-guide__item strong {
  display: block;
  color: var(--cbo-featured-ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 820;
}

.cbo-featured-guide__item span {
  display: block;
  margin-top: 3px;
  color: var(--cbo-featured-muted);
  font-size: 13px;
  line-height: 1.45;
}

.cbo-featured-login-hint {
  border: 1px solid #cfe5f9;
  border-radius: 18px;
  background: #edf7ff;
  color: #285980;
  font-weight: 700;
}

.cbo-featured-login-hint a {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  color: var(--cbo-featured-blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cbo-featured-toolbar {
  margin: 0 0 22px;
  padding: 16px 16px;
  border: 1px solid var(--cbo-featured-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8,34,71,.06);
}

.cbo-featured-sort form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cbo-featured-sort span {
  margin-right: 0;
  color: var(--cbo-featured-ink);
  font-weight: 820;
}

.cbo-featured-sort .form-control {
  min-width: 124px;
  height: 38px;
  border: 1px solid #cedded;
  border-radius: 12px;
  background: #f8fbff;
  color: #26354a;
  box-shadow: none;
}

.cbo-featured-results {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 38px;
  color: var(--cbo-featured-muted);
  font-weight: 700;
}

.cbo-featured-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}

.cbo-featured-card-col {
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

.cbo-featured-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 388px;
  padding: 16px;
  border: 1px solid #e1ebf6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(8,34,71,.08);
  overflow: hidden;
}

.cbo-featured-card:hover {
  border-color: #bfd9f3;
  box-shadow: 0 22px 46px rgba(8,34,71,.12);
  transform: translateY(-2px);
}

.cbo-featured-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  margin-bottom: 12px;
}

.cbo-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #f0ddbb;
  background: var(--cbo-featured-gold-soft);
  color: var(--cbo-featured-gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  text-decoration: none;
}

.cbo-featured-badge--coupon {
  border-color: #d7eaf7;
  background: #f4f9ff;
  color: var(--cbo-featured-blue);
}

.cbo-featured-badge--coupon:hover {
  border-color: #b9d6ef;
  color: #084fa6;
}

.cbo-featured-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 118px;
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid #edf3f9;
  border-radius: 18px;
  background: #fbfdff;
}

.cbo-featured-card__logo img {
  max-width: 170px;
  max-height: 78px;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.cbo-featured-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.cbo-featured-card__title {
  display: block;
  min-height: 42px;
  margin: 0 0 12px;
  text-decoration: none;
}

.cbo-featured-card__title h3 {
  margin: 0;
  padding: 0;
  color: #24324a;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 760;
  letter-spacing: -.01em;
}

.cbo-featured-card__title:hover h3 {
  color: var(--cbo-featured-blue);
}

.cbo-featured-card__benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid #cfead9;
  border-radius: 16px;
  background: var(--cbo-featured-green-soft);
  color: var(--cbo-featured-green);
  text-align: center;
}

.cbo-featured-card__benefit span {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  line-height: 1;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cbo-featured-card__benefit strong {
  display: block;
  color: var(--cbo-featured-green);
  font-size: 23px;
  line-height: 1;
  font-weight: 820;
}

.cbo-featured-card__benefit--muted {
  border-color: #dce8f4;
  background: #f7fbff;
  color: var(--cbo-featured-muted);
}

.cbo-featured-card__benefit--muted strong {
  color: var(--cbo-featured-ink);
  font-size: 18px;
}

.cbo-featured-card__body p {
  margin: 0 0 16px;
  color: var(--cbo-featured-muted);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 520;
}

.cbo-featured-card__actions {
  display: grid;
  grid-template-columns: minmax(86px, .72fr) minmax(120px, 1.08fr);
  gap: 10px;
  margin-top: auto;
}

.cbo-featured-card__details,
.cbo-featured-card__cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 12px;
  font-weight: 780;
  text-decoration: none !important;
  white-space: nowrap;
}

.cbo-featured-card__details {
  border: 1px solid #dbe9f8;
  background: #fff;
  color: var(--cbo-featured-blue) !important;
}

.cbo-featured-card__details:hover {
  border-color: #b9d6ef;
  background: #f5faff;
}

.cbo-featured-card__cta {
  gap: 7px;
  border: 0;
  background: var(--cbo-featured-blue) !important;
  color: #fff !important;
  box-shadow: 0 10px 18px rgba(11,99,206,.18);
}

.cbo-featured-card__cta:hover {
  background: #084fa6 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.cbo-featured-page .pagination,
.cbo-featured-page ul.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 12px 0 26px;
}

.cbo-featured-page .pagination > li > a,
.cbo-featured-page .pagination > li > span,
.cbo-featured-page .paging a,
.cbo-featured-page .paging span {
  border-radius: 10px !important;
  border: 1px solid #d7e5f4;
  color: #0a3c77;
  font-weight: 780;
}

.cbo-featured-page .pagination > .active > a,
.cbo-featured-page .pagination > .active > span,
.cbo-featured-page .paging .active {
  background: var(--cbo-featured-blue) !important;
  border-color: var(--cbo-featured-blue) !important;
  color: #fff !important;
}

.cbo-featured-empty {
  margin: 18px 0 34px;
  padding: 34px 28px;
  border: 1px solid var(--cbo-featured-line);
  border-radius: 24px;
  background: #fff;
  color: var(--cbo-featured-muted);
  text-align: center;
  box-shadow: 0 18px 42px rgba(8,34,71,.07);
}

.cbo-featured-empty > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: #f4f9ff;
  color: var(--cbo-featured-blue);
  font-size: 24px;
}

.cbo-featured-empty h2 {
  margin: 0 0 8px;
  color: var(--cbo-featured-ink);
  font-size: 24px;
  font-weight: 820;
}

.cbo-featured-empty p {
  margin: 0 auto 16px;
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
}

.cbo-featured-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 12px;
  background: var(--cbo-featured-blue);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 991px) {
  .cbo-featured-hero {
    flex-direction: column;
  }

  .cbo-featured-hero__stats {
    flex-basis: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cbo-featured-guide {
    grid-template-columns: 1fr;
  }

  .cbo-featured-results {
    justify-content: flex-start;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .cbo-featured-page {
    margin-bottom: 28px;
  }

  .cbo-featured-hero {
    margin-top: 14px;
    padding: 22px 20px;
    border-radius: 24px;
  }

  .cbo-featured-eyebrow {
    font-size: 11px;
  }

  .cbo-featured-hero h1 {
    font-size: 31px;
  }

  .cbo-featured-hero p {
    font-size: 15px;
  }

  .cbo-featured-hero__stats {
    grid-template-columns: 1fr;
  }

  .cbo-featured-guide__item {
    padding: 14px 15px;
  }

  .cbo-featured-login-hint {
    padding: 13px 15px;
    line-height: 1.45;
  }

  .cbo-featured-login-hint a {
    display: inline;
    margin-left: 0;
  }

  .cbo-featured-toolbar {
    padding: 14px;
    border-radius: 20px;
  }

  .cbo-featured-sort form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cbo-featured-sort .form-control {
    width: 100%;
    min-width: 0;
    height: 46px;
    font-size: 16px;
  }

  .cbo-featured-results {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    font-size: 14px;
  }

  .cbo-featured-card-col {
    margin-bottom: 14px;
  }

  .cbo-featured-card {
    min-height: 0;
    padding: 14px;
    border-radius: 22px;
  }

  .cbo-featured-card__logo {
    min-height: 98px;
    margin-bottom: 12px;
  }

  .cbo-featured-card__logo img {
    max-height: 64px;
  }

  .cbo-featured-card__title {
    min-height: 0;
    margin-bottom: 10px;
  }

  .cbo-featured-card__title h3 {
    font-size: 18px;
  }

  .cbo-featured-card__benefit {
    min-height: 60px;
    margin-bottom: 10px;
  }

  .cbo-featured-card__benefit strong {
    font-size: 21px;
  }

  .cbo-featured-card__body p {
    margin-bottom: 13px;
  }

  .cbo-featured-card__actions {
    grid-template-columns: 1fr 1.25fr;
  }
}

@media (max-width: 420px) {
  .cbo-featured-hero h1 {
    font-size: 28px;
  }

  .cbo-featured-card__actions {
    grid-template-columns: 1fr;
  }

  .cbo-featured-card__details,
  .cbo-featured-card__cta {
    min-height: 42px;
  }
}
