:root {
  --cbo-blue-950: #071f3f;
  --cbo-blue-900: #082b5f;
  --cbo-blue-800: #073c86;
  --cbo-blue-700: #0757b8;
  --cbo-blue-600: #0a68d8;
  --cbo-blue-100: #eaf4ff;
  --cbo-blue-050: #f5f9ff;
  --cbo-ink: #13233a;
  --cbo-muted: #5e6d7f;
  --cbo-line: #dbe7f4;
  --cbo-surface: #ffffff;
  --cbo-warm: #f7f3ee;
  --cbo-coral: #ec6f61;
  --cbo-shadow: 0 22px 60px rgba(8, 43, 95, 0.10);
  --cbo-shadow-soft: 0 12px 34px rgba(8, 43, 95, 0.08);
}

body {
  background: #f7f9fc;
  color: var(--cbo-ink);
}

.cbo-home-page {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--cbo-ink);
  padding-bottom: 26px;
}

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

.cbo-home-page a,
.cbo-home-page a:hover,
.cbo-home-page a:focus {
  text-decoration: none;
}

.cbo-home-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.cbo-home-hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  min-height: 470px;
  margin: 18px 0 0;
  border: 1px solid var(--cbo-line);
  border-radius: 0 0 30px 30px;
  background: var(--cbo-surface);
  box-shadow: var(--cbo-shadow);
}

.cbo-home-hero__content {
  position: relative;
  z-index: 2;
  padding: 58px 54px 50px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 69%, rgba(255,255,255,.72) 100%);
}

.cbo-home-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--cbo-blue-100);
  color: var(--cbo-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cbo-home-hero h1 {
  margin: 0 0 18px;
  max-width: 600px;
  color: var(--cbo-blue-950);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.cbo-home-hero p {
  max-width: 600px;
  margin: 0 0 24px;
  color: #34445b;
  font-size: 16px;
  line-height: 1.68;
}

.cbo-home-search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 650px;
  gap: 10px;
  margin: 0 0 18px;
}

.cbo-home-search-field {
  position: relative;
}

.cbo-home-search-field:before {
  content: "\f002";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cbo-blue-700);
  font-family: FontAwesome;
  font-size: 16px;
  z-index: 2;
}

.cbo-home-search input[type="text"] {
  width: 100%;
  height: 56px;
  border: 1px solid #cfddec;
  border-radius: 13px;
  background: #fff;
  color: var(--cbo-ink);
  font-size: 15px;
  padding: 0 18px 0 49px;
  box-shadow: 0 12px 28px rgba(8, 43, 95, .06);
}

.cbo-home-search input[type="text"]:focus {
  border-color: var(--cbo-blue-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(10,104,216,.10), 0 16px 34px rgba(8, 43, 95, .08);
}

.cbo-home-search button,
.cbo-home-btn,
.cbo-home-card-link,
.cbo-assistant-promo__btn,
.cbo-assistant-promo__secondary {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.cbo-home-search button {
  height: 56px;
  border: 0;
  border-radius: 13px;
  background: var(--cbo-blue-700);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 0 24px;
  box-shadow: 0 15px 30px rgba(7, 87, 184, .22);
}

.cbo-home-search button:hover,
.cbo-home-search button:focus {
  background: var(--cbo-blue-800);
  transform: translateY(-1px);
}

.cbo-home-search-suggestions {
  position: absolute;
  left: 0;
  right: 106px;
  top: calc(100% + 8px);
  z-index: 30;
  display: none;
  max-height: 340px;
  overflow: auto;
  border: 1px solid #d9e4f1;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--cbo-shadow-soft);
}

.cbo-home-search-suggestions.is-visible {
  display: block;
}

.cbo-home-search-suggestions a,
.cbo-home-search-suggestions .autocomplete-suggestion {
  display: block;
  padding: 12px 15px;
  color: var(--cbo-ink) !important;
  border-bottom: 1px solid #edf2f8;
}

.cbo-home-search-suggestions a:hover,
.cbo-home-search-suggestions .autocomplete-suggestion:hover {
  background: var(--cbo-blue-050);
  color: var(--cbo-blue-800) !important;
}

.cbo-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.cbo-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
}

.cbo-home-btn--primary {
  background: var(--cbo-blue-700);
  color: #fff !important;
  box-shadow: 0 15px 30px rgba(7, 87, 184, .24);
}

.cbo-home-btn--primary:hover,
.cbo-home-btn--primary:focus {
  background: var(--cbo-blue-800);
  color: #fff !important;
  transform: translateY(-1px);
}

.cbo-home-btn--ghost {
  border: 1px solid #b8cde5;
  background: #fff;
  color: var(--cbo-blue-800) !important;
}

.cbo-home-btn--ghost:hover,
.cbo-home-btn--ghost:focus {
  border-color: var(--cbo-blue-600);
  background: var(--cbo-blue-050);
  color: var(--cbo-blue-900) !important;
}

.cbo-home-hero__visual {
  position: relative;
  min-height: 100%;
  background: #dbe7f4;
}

.cbo-home-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cbo-home-hero__visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.18) 28%, rgba(255,255,255,0) 55%);
  pointer-events: none;
}

.cbo-home-hero__photo-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: 280px;
  padding: 15px 17px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(8, 43, 95, .16);
  backdrop-filter: blur(8px);
}

.cbo-home-hero__photo-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cbo-blue-900);
  font-size: 15px;
}

.cbo-home-hero__photo-card span {
  color: var(--cbo-muted);
  font-size: 13px;
  line-height: 1.45;
}

.cbo-home-trust-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 34px;
  border: 1px solid var(--cbo-line);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 14px 35px rgba(8, 43, 95, .06);
}

.cbo-home-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px 18px;
  border-right: 1px solid #edf2f8;
}

.cbo-home-trust-item:last-child { border-right: 0; }

.cbo-home-trust-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cbo-blue-050);
  color: var(--cbo-blue-700);
  font-size: 15px;
}

.cbo-home-trust-item strong {
  display: block;
  color: var(--cbo-blue-950);
  font-size: 14px;
  line-height: 1.15;
}

.cbo-home-trust-item span {
  display: block;
  margin-top: 3px;
  color: var(--cbo-muted);
  font-size: 12px;
  line-height: 1.25;
}

.cbo-home-section,
.cbo-home-editorial,
.cbo-home-steps,
.cbo-home-content-card,
.cbo-home-bottom-cta {
  margin: 34px 0;
}

.cbo-home-section-head {
  margin-bottom: 18px;
}

.cbo-home-section-head span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--cbo-blue-700);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.cbo-home-section-head h2 {
  margin: 0;
  color: var(--cbo-blue-950);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.12;
  letter-spacing: -.03em;
  font-weight: 800;
}

.cbo-home-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.cbo-home-section-head--row > a,
.cbo-home-all-link {
  color: var(--cbo-blue-700) !important;
  font-weight: 800;
  white-space: nowrap;
}

.cbo-home-section-head--row > a:hover,
.cbo-home-all-link:hover { color: var(--cbo-blue-900) !important; }

.cbo-home-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.cbo-home-shop-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 198px;
  padding: 18px;
  border: 1px solid #dce7f4;
  border-radius: 18px;
  background: #fff;
  color: var(--cbo-ink) !important;
  box-shadow: 0 10px 28px rgba(8, 43, 95, .06);
}

.cbo-home-shop-card:hover,
.cbo-home-shop-card:focus {
  border-color: #b6d2f3;
  box-shadow: 0 18px 42px rgba(8, 43, 95, .12);
  transform: translateY(-2px);
}

.cbo-home-shop-card__badge {
  align-self: flex-start;
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 6px 8px;
  border-radius: 9px;
  background: #edf5ff;
  color: var(--cbo-blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.cbo-home-shop-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 60px;
}

.cbo-home-shop-card__logo img {
  max-width: 145px;
  max-height: 54px;
  width: auto;
  height: auto;
}

.cbo-home-shop-card__meta {
  display: block;
  margin-top: 16px;
  text-align: center;
}

.cbo-home-shop-card__meta strong {
  display: block;
  color: var(--cbo-blue-950);
  font-size: 15px;
  line-height: 1.25;
}

.cbo-home-shop-card__meta em {
  display: block;
  margin-top: 6px;
  color: var(--cbo-blue-700);
  font-size: 15px;
  font-style: normal;
  font-weight: 850;
}

.cbo-home-shop-card__meta small {
  display: block;
  margin-top: 8px;
  color: var(--cbo-muted);
  font-size: 12px;
}

.cbo-home-editorial {
  padding: 30px 0 6px;
}

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

.cbo-home-highlight-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  border: 1px solid #dce7f4;
  border-radius: 20px;
  background: #fff;
  color: var(--cbo-ink) !important;
  box-shadow: 0 12px 32px rgba(8, 43, 95, .08);
}

.cbo-home-highlight-card:hover,
.cbo-home-highlight-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(8, 43, 95, .13);
}

.cbo-home-highlight-card__image {
  position: relative;
  height: 178px;
  overflow: hidden;
  background: #dbe7f4;
}

.cbo-home-highlight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.cbo-home-highlight-card:hover img { transform: scale(1.035); }

.cbo-home-highlight-card__tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 9px;
  background: rgba(255,255,255,.94);
  color: var(--cbo-blue-800);
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(8, 43, 95, .12);
}

.cbo-home-highlight-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 17px 18px 18px;
}

.cbo-home-highlight-card__body span {
  color: var(--cbo-blue-700);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cbo-home-highlight-card__body h3 {
  margin: 8px 0 8px;
  color: var(--cbo-blue-950);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.cbo-home-highlight-card__body p {
  margin: 0 0 16px;
  color: var(--cbo-muted);
  font-size: 14px;
  line-height: 1.5;
}

.cbo-home-card-link {
  margin-top: auto;
  color: var(--cbo-blue-700) !important;
  font-size: 14px;
  font-weight: 850;
}

.cbo-home-steps {
  padding: 34px 30px;
  border: 1px solid #d9e8f7;
  border-radius: 24px;
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
  box-shadow: 0 14px 34px rgba(8, 43, 95, .05);
}

.cbo-home-step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.cbo-home-step-grid:before {
  content: "";
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 54px;
  border-top: 2px dashed #bed5ed;
}

.cbo-home-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cbo-home-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--cbo-blue-700);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 87, 184, .25);
}

.cbo-home-step i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 13px;
  border: 1px solid #cfe1f4;
  border-radius: 50%;
  background: #fff;
  color: var(--cbo-blue-700);
  font-size: 25px;
}

.cbo-home-step h3 {
  margin: 0 0 7px;
  color: var(--cbo-blue-950);
  font-size: 16px;
  font-weight: 850;
}

.cbo-home-step p {
  margin: 0 auto;
  max-width: 220px;
  color: var(--cbo-muted);
  font-size: 13px;
  line-height: 1.55;
}

.cbo-home-content-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid #d9e7f5;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 43, 95, .06);
}

.cbo-home-content-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--cbo-blue-100);
  color: var(--cbo-blue-700);
  font-size: 20px;
}

.cbo-home-content-card__body,
.cbo-home-content-card__body p,
.cbo-home-content-card__body li {
  color: #43556b;
  font-size: 15px;
  line-height: 1.65;
}

.cbo-home-coupon-grid,
.cbo-home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cbo-home-coupon-card,
.cbo-home-review-card {
  padding: 20px;
  border: 1px solid #dce7f4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 43, 95, .06);
}

.cbo-home-coupon-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: var(--cbo-blue-050);
}

.cbo-home-coupon-card__logo img {
  max-width: 140px;
  max-height: 58px;
}

.cbo-home-coupon-card h3,
.cbo-home-review-card strong {
  display: block;
  margin: 0 0 8px;
  color: var(--cbo-blue-950);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 850;
}

.cbo-home-coupon-card p,
.cbo-home-review-card p {
  color: var(--cbo-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cbo-home-review-card__top,
.cbo-home-review-card__store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.cbo-home-review-card__top {
  color: var(--cbo-muted);
  font-size: 13px;
}

.cbo-home-review-card__store a {
  color: var(--cbo-blue-700) !important;
  font-weight: 850;
}

.cbo-home-review-card__store img { max-height: 18px; }

.cbo-home-bottom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cbo-blue-900) 0%, var(--cbo-blue-700) 100%);
  color: #fff;
  box-shadow: 0 22px 55px rgba(8, 43, 95, .20);
}

.cbo-home-bottom-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 800;
}

.cbo-home-bottom-cta p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 15px;
}

.cbo-home-bottom-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
}

.cbo-home-bottom-cta__actions .cbo-home-btn--ghost {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.34);
  color: #fff !important;
}

.cbo-home-stats {
  margin-bottom: 34px;
}

.cbo-home-stat {
  min-height: 118px;
  padding: 20px 15px;
  border: 1px solid #dce7f4;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 43, 95, .06);
}

.cbo-home-stat strong {
  display: block;
  color: var(--cbo-blue-900);
  font-size: 28px;
  font-weight: 900;
}

.cbo-home-stat span {
  display: block;
  margin-top: 7px;
  color: var(--cbo-muted);
  font-size: 13px;
  font-weight: 750;
}

/* Assistant module */
.cbo-assistant-promo {
  margin: 34px 0;
}

.cbo-assistant-promo__box {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.14fr);
  gap: 30px;
  align-items: center;
  padding: 32px;
  border: 1px solid #d7e8f7;
  border-radius: 24px;
  background: linear-gradient(135deg, #f3f9ff 0%, #ffffff 52%, #edf6ff 100%);
  box-shadow: 0 18px 46px rgba(8, 43, 95, .08);
}

.cbo-assistant-promo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--cbo-blue-700);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(8, 43, 95, .08);
}

.cbo-assistant-promo h2 {
  margin: 0 0 12px;
  color: var(--cbo-blue-950);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 800;
}

.cbo-assistant-promo p {
  margin: 0 0 15px;
  color: #40536a;
  font-size: 15px;
  line-height: 1.65;
}

.cbo-assistant-promo__facts {
  display: grid;
  gap: 8px;
  margin: 14px 0 20px;
}

.cbo-assistant-promo__fact {
  color: var(--cbo-ink);
  font-size: 14px;
  font-weight: 750;
}

.cbo-assistant-promo__fact i {
  margin-right: 8px;
  color: var(--cbo-blue-700);
}

.cbo-assistant-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cbo-assistant-promo__btn,
.cbo-assistant-promo__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 850;
}

.cbo-assistant-promo__btn {
  background: var(--cbo-blue-700);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(7, 87, 184, .22);
}

.cbo-assistant-promo__secondary {
  border: 1px solid #b8cde5;
  background: #fff;
  color: var(--cbo-blue-800) !important;
}

.cbo-assistant-promo__mockup {
  position: relative;
  min-height: 305px;
}

.cbo-assistant-promo__mockup:before {
  content: "";
  position: absolute;
  inset: 28px 0 0 42px;
  border-radius: 24px;
  background: url('../images/cbo-premium/assistant-feature.jpg') center/cover no-repeat;
  opacity: .18;
}

.cbo-browser-card {
  position: relative;
  z-index: 1;
  margin: 10px 0 0 auto;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid #cfdeee;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 54px rgba(8, 43, 95, .14);
}

.cbo-browser-card__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #e6eef7;
  background: #f8fbff;
}

.cbo-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfdaea;
}

.cbo-browser-url {
  flex: 1 1 auto;
  height: 28px;
  padding: 7px 12px;
  border: 1px solid #d8e4f1;
  border-radius: 999px;
  color: #7a8795;
  font-size: 12px;
  background: #fff;
}

.cbo-extension-popup {
  width: 330px;
  margin: 34px auto 36px;
  padding: 18px;
  border: 1px solid #d8e4f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(8, 43, 95, .12);
}

.cbo-extension-popup strong,
.cbo-extension-popup b {
  display: block;
  color: var(--cbo-blue-950);
}

.cbo-extension-popup strong { margin-bottom: 13px; }
.cbo-extension-popup b { margin-bottom: 4px; }
.cbo-extension-popup p { margin: 0 0 14px; font-size: 13px; }

.cbo-extension-popup__button {
  display: block;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  background: var(--cbo-blue-700);
  color: #fff !important;
  text-align: center;
  font-weight: 850;
}

@media (max-width: 1199px) {
  .cbo-home-hero { grid-template-columns: 1fr; }
  .cbo-home-hero__visual { min-height: 360px; }
  .cbo-home-hero__visual img { min-height: 360px; }
  .cbo-home-hero__visual:after { background: linear-gradient(0deg, rgba(255,255,255,.85), rgba(255,255,255,0)); }
  .cbo-home-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cbo-home-highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .cbo-home-trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--cbo-line); }
  .cbo-home-trust-item { border-top: 1px solid #edf2f8; }
  .cbo-home-step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cbo-home-step-grid:before { display: none; }
  .cbo-assistant-promo__box { grid-template-columns: 1fr; }
  .cbo-home-coupon-grid, .cbo-home-review-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .cbo-home-page { padding-left: 0; padding-right: 0; }
  .cbo-home-hero { margin-top: 10px; border-radius: 18px; }
  .cbo-home-hero__content { padding: 32px 20px 26px; }
  .cbo-home-hero h1 { font-size: 38px; }
  .cbo-home-search { grid-template-columns: 1fr; }
  .cbo-home-search button { width: 100%; }
  .cbo-home-search-suggestions { right: 0; }
  .cbo-home-hero__photo-card { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .cbo-home-trust-strip { grid-template-columns: 1fr; border-radius: 18px; margin-top: 15px; }
  .cbo-home-trust-item { border-right: 0; }
  .cbo-home-section-head--row { display: block; }
  .cbo-home-section-head--row > a { display: inline-block; margin-top: 10px; }
  .cbo-home-shop-grid, .cbo-home-highlight-grid, .cbo-home-coupon-grid, .cbo-home-review-grid, .cbo-home-step-grid { grid-template-columns: 1fr; }
  .cbo-home-steps, .cbo-assistant-promo__box, .cbo-home-bottom-cta, .cbo-home-content-card { border-radius: 18px; padding: 22px 18px; }
  .cbo-home-bottom-cta { grid-template-columns: 1fr; }
  .cbo-home-bottom-cta__actions { min-width: 0; }
  .cbo-browser-card { margin: 0; }
  .cbo-extension-popup { width: calc(100% - 30px); }
}

/* ACP-managed Startseite content block
   The homepage text is maintained in the CashbackEngine admin panel under Content -> Startseite.
   These rules intentionally style the existing HTML snippet instead of requiring a manual template import. */
.cbo-home-content-card__body .cbo-acp-home-copy {
  max-width: 860px;
}

.cbo-home-content-card__body .cbo-acp-home-copy p {
  margin: 0 0 12px;
}

.cbo-home-content-card__body .cbo-acp-home-copy p:first-child strong {
  display: block;
  color: var(--cbo-blue-950);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.cbo-home-content-card__body .cbo-acp-home-copy ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.cbo-home-content-card__body .cbo-acp-home-copy li {
  position: relative;
  padding-left: 28px;
}

.cbo-home-content-card__body .cbo-acp-home-copy li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cbo-blue-100);
  color: var(--cbo-blue-700);
  font-family: FontAwesome;
  font-size: 10px;
  line-height: 1;
}

.cbo-home-content-card__body .cbo-acp-home-copy .start_link,
.cbo-home-content-card__body .cbo-acp-home-copy a.start_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--cbo-blue-700);
  color: #fff !important;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(9, 79, 181, .20);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.cbo-home-content-card__body .cbo-acp-home-copy .start_link:hover,
.cbo-home-content-card__body .cbo-acp-home-copy a.start_link:hover {
  background: var(--cbo-blue-800);
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(9, 79, 181, .24);
}

/* CashbackOase R3 Live-Feinschliff 2026-05-06
   Ziel: weniger Websitebaukasten-Look, hochwertigere Proportionen, bessere Desktop-Grid-Nutzung. */
body { background: #fbfcff; }
.cbo-home-shell { max-width: 1260px; }
.cbo-home-hero {
  grid-template-columns: minmax(520px, 1.08fr) minmax(430px, .92fr);
  min-height: 500px;
  margin-top: 22px;
  border-radius: 22px 22px 30px 30px;
  box-shadow: 0 24px 64px rgba(8,43,95,.105);
}
.cbo-home-hero__content {
  padding: 56px 58px 52px;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 78%, rgba(255,255,255,.76) 100%);
}
.cbo-home-hero h1 {
  max-width: 680px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 3.45vw, 52px);
  line-height: 1.025;
  letter-spacing: -.06em;
  font-weight: 900;
}
.cbo-home-hero p {
  max-width: 660px;
  font-size: 16px;
  line-height: 1.7;
}
.cbo-home-search { max-width: 680px; }
.cbo-home-hero__visual img {
  min-height: 500px;
  object-position: center right;
}
.cbo-home-hero__photo-card {
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(255,255,255,.7);
}
.cbo-home-trust-strip {
  border-radius: 0 0 26px 26px;
  box-shadow: 0 16px 38px rgba(8,43,95,.055);
}
.cbo-home-trust-item { padding: 16px 20px; }
.cbo-home-section,
.cbo-home-editorial,
.cbo-home-steps,
.cbo-home-content-card,
.cbo-home-bottom-cta { margin: 42px 0; }
.cbo-home-section-head h2 {
  font-size: clamp(27px, 2.4vw, 34px);
  letter-spacing: -.035em;
}
.cbo-home-shop-grid {
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 16px;
}
.cbo-home-shop-card {
  min-height: 184px;
  padding: 17px 15px 16px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(8,43,95,.052);
}
.cbo-home-shop-card__badge {
  margin-bottom: 14px;
  border-radius: 7px;
  background: #e9f3ff;
}
.cbo-home-shop-card__logo img {
  max-width: 132px;
  max-height: 48px;
}
.cbo-home-shop-card__meta { margin-top: 13px; }
.cbo-home-highlight-grid { gap: 22px; }
.cbo-home-highlight-card {
  border-radius: 17px;
  min-height: 360px;
  box-shadow: 0 10px 30px rgba(8,43,95,.065);
}
.cbo-home-highlight-card__image { height: 204px; }
.cbo-home-highlight-card__body { padding: 18px 18px 20px; }
.cbo-home-highlight-card__body h3 { font-size: 19px; line-height: 1.22; }
.cbo-home-highlight-card__body p { font-size: 14px; line-height: 1.55; }
.cbo-home-steps {
  padding: 38px 34px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.cbo-home-content-card {
  border-radius: 22px;
  box-shadow: 0 12px 32px rgba(8,43,95,.055);
}
.cbo-home-content-card .cbo-acp-home-copy p,
.cbo-home-content-card .cbo-acp-home-copy li {
  font-size: 15px;
  line-height: 1.72;
}
.cbo-home-bottom-cta {
  border-radius: 18px;
  background: linear-gradient(135deg, #073c86 0%, #0757b8 100%);
}
@media (min-width: 1200px) {
  .cbo-home-featured .cbo-home-shop-grid:has(.cbo-home-shop-card:nth-child(6)) {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .cbo-home-hero { grid-template-columns: 1fr; }
  .cbo-home-hero__visual { min-height: 360px; }
  .cbo-home-hero__visual img { min-height: 360px; }
}
@media (max-width: 767px) {
  .cbo-home-hero {
    margin-top: 14px;
    border-radius: 18px;
    min-height: 0;
  }
  .cbo-home-hero__content { padding: 32px 22px 28px; }
  .cbo-home-hero h1 {
    font-size: clamp(31px, 9.5vw, 42px);
    line-height: 1.04;
  }
  .cbo-home-search { grid-template-columns: 1fr; }
  .cbo-home-search-suggestions { right: 0; }
  .cbo-home-trust-strip { grid-template-columns: 1fr; border-radius: 16px; }
  .cbo-home-trust-item { border-right: 0; border-bottom: 1px solid #edf2f8; }
  .cbo-home-highlight-grid { grid-template-columns: 1fr; }
}


/* R4 final polish from live screenshot: calm hero/photo rhythm and keep cards professional. */
.cbo-home-hero {
  border-radius: 22px;
}
.cbo-home-hero__visual img {
  filter: saturate(.96) contrast(1.02);
}
.cbo-home-shop-card,
.cbo-home-highlight-card,
.cbo-home-review-card,
.cbo-acp-home-copy,
.cbo-home-assistant,
.cbo-home-steps {
  box-shadow: 0 16px 40px rgba(8, 43, 95, .075);
}
.cbo-home-shop-card:hover,
.cbo-home-highlight-card:hover {
  box-shadow: 0 20px 46px rgba(8, 43, 95, .12);
}


/* R5 Home-Polish: markiertes Technikbild ersetzt und Cards etwas edler zugeschnitten. */
.cbo-home-highlight-card__image img {
  object-position: center center;
}
.cbo-home-highlight-card:nth-child(4) .cbo-home-highlight-card__image img {
  object-position: center 44%;
  filter: saturate(.94) contrast(1.02) brightness(1.03);
}
.cbo-home-highlight-card:nth-child(4) .cbo-home-highlight-card__tag {
  background: rgba(255,255,255,.96);
  color: #073c86;
}
@media (min-width: 1200px) {
  .cbo-home-editorial {
    padding-top: 26px;
  }
  .cbo-home-highlight-grid {
    gap: 24px;
  }
  .cbo-home-highlight-card {
    min-height: 350px;
  }
  .cbo-home-highlight-card__image {
    height: 198px;
  }
}

/* CashbackOase R6 Quality Pass - gebuendelter Home-Feinschliff, 2026-05-06
   Ziel: dichteres Portalgefuehl, ruhigerer ACP-Block, weniger Baukasten-Abstaende. */
body {
  background: #fbfcff !important;
}
#body-ctnr {
  padding-top: 0 !important;
}
.cbo-home-page {
  padding-top: 0 !important;
}
.cbo-home-shell {
  max-width: 1140px !important;
}
.cbo-home-hero {
  margin-top: 14px !important;
  min-height: 430px !important;
  grid-template-columns: minmax(455px, .98fr) minmax(410px, 1.02fr) !important;
  border-radius: 20px !important;
  box-shadow: 0 18px 48px rgba(8,43,95,.085) !important;
}
.cbo-home-hero__content {
  padding: 44px 44px 42px !important;
}
.cbo-home-hero h1 {
  max-width: 560px !important;
  font-size: clamp(34px, 3.1vw, 46px) !important;
  line-height: 1.045 !important;
  letter-spacing: -.055em !important;
}
.cbo-home-hero p {
  max-width: 540px !important;
  margin-bottom: 20px !important;
  font-size: 15px !important;
  line-height: 1.62 !important;
}
.cbo-home-eyebrow {
  margin-bottom: 14px !important;
  padding: 6px 11px !important;
  font-size: 11px !important;
}
.cbo-home-search {
  max-width: 520px !important;
  gap: 8px !important;
  margin-bottom: 13px !important;
}
.cbo-home-search input[type="text"],
.cbo-home-search button {
  height: 46px !important;
  border-radius: 12px !important;
}
.cbo-home-search input[type="text"] {
  font-size: 14px !important;
  padding-left: 45px !important;
  box-shadow: 0 8px 20px rgba(8,43,95,.05) !important;
}
.cbo-home-search button {
  padding: 0 18px !important;
  font-size: 13px !important;
  box-shadow: 0 10px 24px rgba(7,87,184,.18) !important;
}
.cbo-home-hero__actions {
  gap: 9px !important;
}
.cbo-home-btn {
  min-height: 42px !important;
  padding: 10px 17px !important;
  border-radius: 11px !important;
  font-size: 13px !important;
}
.cbo-home-hero__visual img {
  min-height: 430px !important;
  object-position: center right !important;
}
.cbo-home-hero__photo-card {
  right: 20px !important;
  bottom: 20px !important;
  max-width: 250px !important;
  padding: 13px 15px !important;
  border-radius: 15px !important;
}
.cbo-home-trust-strip {
  margin-bottom: 28px !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: 0 10px 28px rgba(8,43,95,.045) !important;
}
.cbo-home-trust-item {
  min-height: 62px !important;
  padding: 11px 13px !important;
  gap: 9px !important;
}
.cbo-home-trust-item i {
  flex-basis: 28px !important;
  width: 28px !important;
  height: 28px !important;
  font-size: 13px !important;
}
.cbo-home-trust-item strong {
  font-size: 12.5px !important;
}
.cbo-home-trust-item span {
  font-size: 11px !important;
}
.cbo-home-section,
.cbo-home-editorial,
.cbo-home-steps,
.cbo-home-content-card,
.cbo-home-bottom-cta {
  margin: 34px 0 !important;
}
.cbo-home-section-head {
  margin-bottom: 15px !important;
}
.cbo-home-section-head span {
  font-size: 11px !important;
  letter-spacing: .105em !important;
}
.cbo-home-section-head h2 {
  font-size: clamp(25px, 2.25vw, 32px) !important;
  line-height: 1.13 !important;
}
.cbo-home-shop-grid {
  gap: 14px !important;
}
.cbo-home-shop-card {
  min-height: 168px !important;
  padding: 14px 13px !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 22px rgba(8,43,95,.05) !important;
}
.cbo-home-shop-card__badge {
  margin-bottom: 10px !important;
  font-size: 10px !important;
}
.cbo-home-shop-card__logo {
  min-height: 54px !important;
}
.cbo-home-shop-card__logo img {
  max-width: 118px !important;
  max-height: 42px !important;
}
.cbo-home-shop-card__meta strong {
  font-size: 13px !important;
}
.cbo-home-shop-card__meta em {
  font-size: 13px !important;
}
.cbo-home-shop-card__meta small {
  font-size: 11px !important;
}
.cbo-home-highlight-grid {
  gap: 18px !important;
}
.cbo-home-highlight-card {
  min-height: 330px !important;
  border-radius: 16px !important;
  box-shadow: 0 9px 26px rgba(8,43,95,.055) !important;
}
.cbo-home-highlight-card__image {
  height: 180px !important;
}
.cbo-home-highlight-card__tag {
  left: 16px !important;
  bottom: 14px !important;
  padding: 7px 12px !important;
  font-size: 12px !important;
}
.cbo-home-highlight-card__body {
  padding: 16px 16px 18px !important;
}
.cbo-home-highlight-card__body span {
  font-size: 11px !important;
}
.cbo-home-highlight-card__body h3 {
  font-size: 18px !important;
  line-height: 1.23 !important;
}
.cbo-home-highlight-card__body p {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}
.cbo-home-steps {
  padding: 30px 30px !important;
  border-radius: 18px !important;
  box-shadow: 0 9px 26px rgba(8,43,95,.045) !important;
}
.cbo-home-step-grid {
  gap: 18px !important;
}
.cbo-home-step h3 {
  font-size: 13.5px !important;
}
.cbo-home-step p {
  font-size: 12.2px !important;
  line-height: 1.45 !important;
}
.cbo-home-content-card {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 30px 34px !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(10,104,216,.055) 0, rgba(10,104,216,0) 32%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 10px 34px rgba(8,43,95,.055) !important;
}
.cbo-home-content-card__icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 13px !important;
  font-size: 17px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy {
  max-width: none !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy p:first-child strong {
  font-size: 20px !important;
  line-height: 1.3 !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy p,
.cbo-home-content-card__body .cbo-acp-home-copy li {
  max-width: 940px !important;
  font-size: 14.5px !important;
  line-height: 1.68 !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy ul {
  margin: 15px 0 15px !important;
  gap: 7px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy .start_link,
.cbo-home-content-card__body .cbo-acp-home-copy a.start_link {
  min-height: 42px !important;
  padding: 0 20px !important;
  font-size: 13px !important;
  box-shadow: 0 10px 24px rgba(7,87,184,.18) !important;
}
.cbo-home-bottom-cta {
  max-width: 1080px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 28px 32px !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 38px rgba(7,87,184,.16) !important;
}
.cbo-home-bottom-cta h2 {
  font-size: clamp(27px, 2.4vw, 34px) !important;
}
.cbo-home-review-grid {
  gap: 18px !important;
}
.cbo-home-review-card {
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(8,43,95,.05) !important;
}

@media (min-width: 1200px) {
  .cbo-home-featured .cbo-home-shop-grid:has(.cbo-home-shop-card:nth-child(6)) {
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 1199px) {
  .cbo-home-shell {
    max-width: 940px !important;
  }
  .cbo-home-hero {
    grid-template-columns: 1fr !important;
  }
  .cbo-home-hero__visual,
  .cbo-home-hero__visual img {
    min-height: 340px !important;
  }
}

@media (max-width: 767px) {
  .cbo-home-shell {
    max-width: none !important;
  }
  .cbo-home-hero {
    margin-top: 10px !important;
    border-radius: 17px !important;
  }
  .cbo-home-hero__content {
    padding: 30px 20px 26px !important;
  }
  .cbo-home-hero h1 {
    font-size: clamp(30px, 9vw, 39px) !important;
  }
  .cbo-home-content-card,
  .cbo-home-bottom-cta {
    max-width: none !important;
    padding: 22px 18px !important;
  }
}

/* CashbackOase R7 Final Quality Pass - ACP-Startseitenblock hochwertiger und ohne leere Flaechen
   Der Inhalt bleibt weiterhin aus dem ACP; nur die Darstellung wird beruhigt. */
.cbo-home-content-card {
  position: relative !important;
  display: block !important;
  max-width: 1040px !important;
  padding: 28px 34px 30px 82px !important;
  border-radius: 18px !important;
  border-color: #dce8f5 !important;
  background:
    radial-gradient(circle at 94% 8%, rgba(10,104,216,.035) 0, rgba(10,104,216,0) 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: 0 12px 34px rgba(8,43,95,.055) !important;
}
.cbo-home-content-card__icon {
  position: absolute !important;
  left: 28px !important;
  top: 30px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  font-size: 16px !important;
}
.cbo-home-content-card__body {
  max-width: 900px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy {
  max-width: 900px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy p:first-child strong {
  font-size: 19px !important;
  line-height: 1.28 !important;
  letter-spacing: -.015em !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy p,
.cbo-home-content-card__body .cbo-acp-home-copy li {
  max-width: 860px !important;
  font-size: 14.2px !important;
  line-height: 1.62 !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy ul {
  margin: 14px 0 14px !important;
  gap: 6px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy li {
  padding-left: 25px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy li::before {
  width: 17px !important;
  height: 17px !important;
  font-size: 9px !important;
}
.cbo-home-content-card__body .cbo-acp-home-copy .start_link,
.cbo-home-content-card__body .cbo-acp-home-copy a.start_link {
  min-height: 39px !important;
  margin-top: 8px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  font-size: 12.6px !important;
  box-shadow: 0 8px 20px rgba(7,87,184,.17) !important;
}
@media (max-width: 767px) {
  .cbo-home-content-card {
    padding: 22px 18px !important;
  }
  .cbo-home-content-card__icon {
    position: static !important;
    margin-bottom: 12px !important;
  }
  .cbo-home-content-card__body,
  .cbo-home-content-card__body .cbo-acp-home-copy,
  .cbo-home-content-card__body .cbo-acp-home-copy p,
  .cbo-home-content-card__body .cbo-acp-home-copy li {
    max-width: none !important;
  }
}

/* CashbackOase R14 Clean Surface Pass - 2026-05-07
   Entfernt sichtbare Card-in-Card-/Wrapper-Flaechen im ACP-Startseitenblock. */
.cbo-home-page .cbo-home-content-card {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 18px !important;
  max-width: 1040px !important;
  padding: 30px 34px !important;
  border: 1px solid #dce8f5 !important;
  border-radius: 20px !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(8,43,95,.045) !important;
}

.cbo-home-page .cbo-home-content-card__icon {
  position: static !important;
  width: 34px !important;
  height: 34px !important;
  margin: 2px 0 0 !important;
  border-radius: 11px !important;
  background: #edf5ff !important;
  color: #0757b8 !important;
  font-size: 15px !important;
  box-shadow: none !important;
}

.cbo-home-page .cbo-home-content-card__body,
.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy {
  width: 100% !important;
  max-width: 900px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy p:first-child strong {
  display: block !important;
  margin: 0 0 12px !important;
  color: #08264c !important;
  font-size: 20px !important;
  line-height: 1.28 !important;
  letter-spacing: -.015em !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy p,
.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy li {
  max-width: 880px !important;
  color: #43556b !important;
  font-size: 14.5px !important;
  line-height: 1.66 !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy ul {
  display: grid !important;
  gap: 7px !important;
  margin: 14px 0 15px !important;
  padding: 0 !important;
  list-style: none !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy li {
  position: relative !important;
  padding-left: 26px !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy li::before {
  content: "\f00c" !important;
  position: absolute !important;
  left: 0 !important;
  top: .22em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 17px !important;
  height: 17px !important;
  border-radius: 50% !important;
  background: #edf5ff !important;
  color: #0757b8 !important;
  font-family: FontAwesome !important;
  font-size: 9px !important;
  line-height: 1 !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy .start_link,
.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy a.start_link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  margin-top: 8px !important;
  padding: 0 18px !important;
  border-radius: 16px !important;
  background: #0757b8 !important;
  color: #ffffff !important;
  font-size: 12.8px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(7,87,184,.13) !important;
}

.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy .start_link:hover,
.cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy a.start_link:hover {
  background: #074f9f !important;
  color: #ffffff !important;
}

@media (max-width: 767px) {
  .cbo-home-page .cbo-home-content-card {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 22px 18px !important;
  }

  .cbo-home-page .cbo-home-content-card__body,
  .cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy,
  .cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy p,
  .cbo-home-page .cbo-home-content-card__body .cbo-acp-home-copy li {
    max-width: none !important;
  }
}

/* CashbackOase R8 Mobile Hero Typography Polish 2026-05-08
   Ziel: mobile Hero-Headline ruhiger/kompakter, ohne Header, Footer oder Desktop zu veraendern. */
@media (max-width: 767px) {
  .cbo-home-page .cbo-home-hero {
    margin-top: 8px !important;
    border-radius: 16px !important;
  }

  .cbo-home-page .cbo-home-hero__content {
    padding: 26px 18px 24px !important;
  }

  .cbo-home-page .cbo-home-eyebrow {
    margin-bottom: 12px !important;
    padding: 6px 10px !important;
    font-size: 10.5px !important;
    letter-spacing: .075em !important;
  }

  .cbo-home-page .cbo-home-hero h1 {
    max-width: 100% !important;
    margin-bottom: 14px !important;
    font-size: clamp(28px, 8.15vw, 35px) !important;
    line-height: 1.075 !important;
    letter-spacing: -.048em !important;
  }

  .cbo-home-page .cbo-home-hero p {
    margin-bottom: 20px !important;
    font-size: 14.5px !important;
    line-height: 1.58 !important;
  }

  .cbo-home-page .cbo-home-search {
    margin-bottom: 15px !important;
  }
}

@media (max-width: 380px) {
  .cbo-home-page .cbo-home-hero h1 {
    font-size: clamp(27px, 7.8vw, 32px) !important;
    line-height: 1.08 !important;
  }
}


/* R12 Hero final polish: tighter subject crop, calmer/lower fade, unchanged structure. */
.cbo-home-page .cbo-home-hero__visual img {
  object-position: center center !important;
  filter: saturate(1.015) contrast(1.02);
}
.cbo-home-page .cbo-home-hero__visual:after {
  background: linear-gradient(90deg, rgba(255,255,255,.34) 0%, rgba(255,255,255,.055) 18%, rgba(255,255,255,0) 36%);
}
.cbo-home-page .cbo-home-hero__photo-card {
  right: 24px !important;
  bottom: 24px !important;
}
@media (max-width: 991px) {
  .cbo-home-page .cbo-home-hero__visual:after {
    background: linear-gradient(0deg, rgba(255,255,255,.54), rgba(255,255,255,0) 46%);
  }
  .cbo-home-page .cbo-home-hero__photo-card {
    right: 18px !important;
    bottom: 18px !important;
  }
}

/* CashbackOase R19 Colour Accent Balance - 2026-05-13
   Mehr semantische Akzente: Cashback/Vorteil = Gruen, Hinweise/Gutscheine = warmes Amber, CTA bleibt Blau. */
:root {
  --cbo-cash-green: #4f8f2c;
  --cbo-cash-green-2: #63ad38;
  --cbo-cash-green-soft: #eef8e9;
  --cbo-amber: #d9941e;
  --cbo-amber-soft: #fff6e5;
  --cbo-rose: #d85b72;
  --cbo-teal: #3e9f98;
}
.cbo-home-trust-item:nth-child(1) i,
.cbo-home-trust-item:nth-child(2) i,
.cbo-home-trust-item:nth-child(5) i {
  background: var(--cbo-cash-green-soft) !important;
  color: var(--cbo-cash-green) !important;
}
.cbo-home-trust-item:nth-child(4) i {
  background: var(--cbo-amber-soft) !important;
  color: var(--cbo-amber) !important;
}
.cbo-home-shop-card__badge {
  background: var(--cbo-cash-green-soft) !important;
  color: var(--cbo-cash-green) !important;
}
.cbo-home-shop-card__meta em,
.cbo-home-stat strong {
  color: var(--cbo-cash-green) !important;
}
.cbo-home-editorial-card:nth-child(1) .cbo-home-editorial-card__tag,
.cbo-home-editorial-card:nth-child(3) .cbo-home-editorial-card__tag {
  background: var(--cbo-cash-green-soft) !important;
  color: var(--cbo-cash-green) !important;
}
.cbo-home-editorial-card:nth-child(2) .cbo-home-editorial-card__tag,
.cbo-home-editorial-card:nth-child(4) .cbo-home-editorial-card__tag {
  background: var(--cbo-amber-soft) !important;
  color: var(--cbo-amber) !important;
}
.cbo-home-steps {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcf4 100%) !important;
}
.cbo-home-step__icon,
.cbo-home-step-icon {
  background: var(--cbo-cash-green-soft) !important;
  color: var(--cbo-cash-green) !important;
  border-color: #d6eccb !important;
}
.cbo-assistant-promo__box {
  border-color: #d8ebcf !important;
  background: linear-gradient(135deg, #f7fcf4 0%, #ffffff 52%, #f5f9ff 100%) !important;
}
.cbo-assistant-promo__eyebrow,
.cbo-home-content-card > i,
.cbo-home-content-card .cbo-home-content-icon {
  background: var(--cbo-cash-green-soft) !important;
  color: var(--cbo-cash-green) !important;
}
.cbo-assistant-promo__fact i {
  color: var(--cbo-cash-green) !important;
}
.cbo-home-bottom-cta {
  background: linear-gradient(135deg, #0757b8 0%, #0a68d8 64%, #4f8f2c 100%) !important;
}
.cbo-home-review-card .fa-star,
.cbo-home-review-card .glyphicon-star,
.cbo-home-stars i {
  color: #f2b23a !important;
}

/* CashbackOase E1 Competition Upgrade - 2026-05-23
   Ziel: Startseite staerker als Cashback-Einstieg positionieren, ohne ACP-Content zu ueberschreiben. */
.cbo-home-page .cbo-home-hero {
  border-radius: 24px !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 45%, #f4fbf1 100%) !important;
}

.cbo-home-page .cbo-home-hero__content {
  padding-top: 64px !important;
  background:
    radial-gradient(circle at 12% 14%, rgba(79,143,44,.12), transparent 26%),
    linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.96) 68%, rgba(255,255,255,.76) 100%) !important;
}

.cbo-home-page .cbo-home-eyebrow {
  background: #eef8e9 !important;
  color: #4f8f2c !important;
}

.cbo-home-page .cbo-home-hero h1 {
  max-width: 650px !important;
}

.cbo-home-page .cbo-home-hero p {
  max-width: 640px !important;
  color: #2f4158 !important;
}

.cbo-home-page .cbo-home-search input[type="text"] {
  border-color: #bfd2e7 !important;
}

.cbo-home-page .cbo-home-search button {
  background: linear-gradient(135deg, #0757b8 0%, #0a68d8 100%) !important;
}

.cbo-home-page .cbo-home-hero__microtrust {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 16px !important;
}

.cbo-home-page .cbo-home-hero__microtrust span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 32px !important;
  padding: 6px 11px !important;
  border: 1px solid #dce9d4 !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.82) !important;
  color: #42556d !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 18px rgba(8,43,95,.045) !important;
}

.cbo-home-page .cbo-home-hero__microtrust i {
  color: #4f8f2c !important;
}

.cbo-home-page .cbo-home-hero__photo-card {
  max-width: 300px !important;
  border: 1px solid rgba(255,255,255,.84) !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 18px 46px rgba(7,31,63,.16) !important;
}

.cbo-home-page .cbo-home-trust-strip {
  align-items: stretch !important;
  margin-top: 18px !important;
}

.cbo-home-page .cbo-home-trust-item {
  background: #ffffff !important;
  border-color: #dce8f5 !important;
}

.cbo-home-page .cbo-home-advantage-panel {
  display: grid !important;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr) !important;
  gap: 26px !important;
  margin: 22px 0 24px !important;
  padding: 30px !important;
  border: 1px solid #dce8f5 !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, #ffffff 0%, #fbfdff 56%, #f6fbf2 100%) !important;
  box-shadow: 0 16px 38px rgba(8,43,95,.07) !important;
}

.cbo-home-page .cbo-home-kicker {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 12px !important;
  padding: 6px 11px !important;
  border-radius: 999px !important;
  background: #eef8e9 !important;
  color: #4f8f2c !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.cbo-home-page .cbo-home-advantage-panel__copy h2 {
  margin: 0 0 12px !important;
  max-width: 520px !important;
  color: #08264c !important;
  font-family: Georgia, 'Times New Roman', serif !important;
  font-size: clamp(27px, 3vw, 40px) !important;
  line-height: 1.06 !important;
  letter-spacing: -.035em !important;
}

.cbo-home-page .cbo-home-advantage-panel__copy p {
  max-width: 560px !important;
  margin: 0 !important;
  color: #44566d !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.cbo-home-page .cbo-home-advantage-panel__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.cbo-home-page .cbo-home-advantage-card {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) !important;
  column-gap: 13px !important;
  row-gap: 3px !important;
  align-items: start !important;
  min-height: 112px !important;
  padding: 17px !important;
  border: 1px solid #dce8f5 !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  color: #13233a !important;
  box-shadow: 0 10px 24px rgba(8,43,95,.045) !important;
}

.cbo-home-page .cbo-home-advantage-card:hover,
.cbo-home-page .cbo-home-advantage-card:focus {
  border-color: #c9e6ba !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 32px rgba(8,43,95,.08) !important;
}

.cbo-home-page .cbo-home-advantage-card i {
  grid-row: 1 / span 2 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  background: #eef8e9 !important;
  color: #4f8f2c !important;
  font-size: 17px !important;
}

.cbo-home-page .cbo-home-advantage-card strong {
  align-self: end !important;
  color: #08264c !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
}

.cbo-home-page .cbo-home-advantage-card span {
  color: #5a6d83 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.cbo-home-page .cbo-home-section,
.cbo-home-page .cbo-home-editorial,
.cbo-home-page .cbo-home-steps,
.cbo-home-page .cbo-home-content-card,
.cbo-home-page .cbo-home-bottom-cta,
.cbo-home-page .cbo-home-reviews {
  border-radius: 24px !important;
}

.cbo-home-page .cbo-home-section-head span {
  color: #4f8f2c !important;
}

.cbo-home-page .cbo-home-shop-card,
.cbo-home-page .cbo-home-highlight-card,
.cbo-home-page .cbo-home-coupon-card,
.cbo-home-page .cbo-home-review-card,
.cbo-home-page .cbo-home-step {
  border-color: #dce8f5 !important;
}

.cbo-home-page .cbo-home-shop-card:hover,
.cbo-home-page .cbo-home-highlight-card:hover,
.cbo-home-page .cbo-home-coupon-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 38px rgba(8,43,95,.08) !important;
}

.cbo-home-page .cbo-home-content-card--editorial {
  position: relative !important;
  overflow: hidden !important;
}

.cbo-home-page .cbo-home-content-card--editorial:after {
  content: "" !important;
  position: absolute !important;
  right: -70px !important;
  bottom: -88px !important;
  width: 220px !important;
  height: 220px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(79,143,44,.12), rgba(79,143,44,0) 68%) !important;
  pointer-events: none !important;
}

.cbo-home-page .cbo-home-content-card--editorial .cbo-home-content-card__body {
  position: relative !important;
  z-index: 1 !important;
}

.cbo-home-page .cbo-home-bottom-cta {
  border: 0 !important;
  box-shadow: 0 20px 48px rgba(7,87,184,.16) !important;
}

@media (max-width: 991px) {
  .cbo-home-page .cbo-home-advantage-panel {
    grid-template-columns: 1fr !important;
    padding: 24px !important;
  }

  .cbo-home-page .cbo-home-advantage-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .cbo-home-page .cbo-home-hero {
    border-radius: 18px !important;
  }

  .cbo-home-page .cbo-home-hero__microtrust {
    gap: 7px !important;
  }

  .cbo-home-page .cbo-home-hero__microtrust span {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .cbo-home-page .cbo-home-advantage-panel {
    margin: 16px 0 20px !important;
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  .cbo-home-page .cbo-home-advantage-panel__copy h2 {
    font-size: 28px !important;
    line-height: 1.12 !important;
  }

  .cbo-home-page .cbo-home-advantage-panel__grid {
    grid-template-columns: 1fr !important;
  }

  .cbo-home-page .cbo-home-advantage-card {
    min-height: 0 !important;
    padding: 15px !important;
  }
}


/* 2026-05-23 Phase E3: Coupon-Bereich bei wenigen Gutscheinen ruhiger darstellen. */
.cbo-home-page .cbo-home-coupon-grid {
  align-items:stretch;
}
.cbo-home-page .cbo-home-coupon-grid:has(.cbo-home-coupon-card:only-child) {
  grid-template-columns:minmax(260px, 420px) minmax(0, 1fr);
}
.cbo-home-page .cbo-home-coupon-grid:has(.cbo-home-coupon-card:only-child)::after {
  content:"Mehr Gutscheine und Angebote erscheinen hier, sobald weitere Vorteile freigegeben sind. Bis dahin lohnt sich der Blick in die Shop-Suche.";
  display:flex;
  align-items:center;
  min-height:170px;
  padding:24px;
  border:1px dashed #cfe3f4;
  border-radius:18px;
  background:linear-gradient(135deg,#f8fbff,#f4fbef);
  color:#50627a;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}
@media (max-width: 767px) {
  .cbo-home-page .cbo-home-coupon-grid:has(.cbo-home-coupon-card:only-child) {
    grid-template-columns:1fr;
  }
  .cbo-home-page .cbo-home-coupon-grid:has(.cbo-home-coupon-card:only-child)::after {
    min-height:0;
    padding:16px;
    font-size:13px;
  }
}
@supports not selector(:has(*)) {
  .cbo-home-page .cbo-home-coupon-grid {
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  }
}
