@import url('https://fonts.googleapis.com/css2?family=Niramit:wght@300;400;600;700&display=swap');

:root {
  --gc-navy: #001a3f;
  --gc-navy-soft: #0b2a55;
  --gc-green: #00af66;
  --gc-green-dark: #008055;
  --gc-green-soft: #e6f7f0;
  --gc-yellow: #ffaa00;
  --gc-yellow-soft: #fff4db;
  --gc-text: #1f2937;
  --gc-muted: #5b667a;
  --gc-border: #d9e2ec;
  --gc-bg: #f5f7fb;
  --gc-card: #ffffff;
  --gc-shadow: 0 10px 25px rgba(0, 26, 63, 0.08);
}

html body {
  font-family: 'Niramit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gc-text);
  background: var(--gc-bg);
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.heading-xl,
.heading-lg,
.heading-base,
.heading-sm {
  font-family: 'Niramit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body a {
  color: inherit;
}

.gutschein-shell {
  width: min(1144px, calc(100% - 1rem));
  margin-inline: auto;
}

.gutschein-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 26, 63, 0.08);
  backdrop-filter: blur(10px);
}

.gutschein-header__top {
  background: var(--gc-navy);
  color: #fff;
  font-size: 0.95rem;
}

.gutschein-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
}

.gutschein-header__tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.gutschein-header__tagline::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gc-yellow);
  box-shadow: 0 0 0 4px rgba(255, 170, 0, 0.18);
}

.gutschein-header__quicklinks {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: rgba(255,255,255,0.88);
}

.gutschein-header__quicklinks a:hover {
  color: #fff;
}

.gutschein-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.gutschein-header .logo {
  display: inline-flex;
  align-items: center;
}

.logo__placeholder {
  display: block;
  width: 160px;
  max-width: 40vw;
  height: 48px;
}

.logo__placeholder--light,
.logo__placeholder--dark {
  background: transparent;
}

.gutschein-header .logo svg {
  max-height: 42px;
  width: auto;
}

.gutschein-header .logo--dark {
  --logo-color: var(--gc-navy);
}

.gutschein-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
}

.gutschein-menu,
.gutschein-mobile-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gutschein-menu > li > a,
.gutschein-mobile-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-bottom: 3px solid transparent;
  color: var(--gc-navy);
  font-size: 1rem;
  font-weight: 600;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.gutschein-menu > li.current-menu-item > a,
.gutschein-menu > li > a:hover {
  border-bottom-color: var(--gc-yellow);
  color: var(--gc-green-dark);
}

.gutschein-mobile-panel {
  border-top: 1px solid rgba(0, 26, 63, 0.08);
  background: #fff;
}

.gutschein-mobile-panel .gutschein-mobile-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.5rem 0 1rem;
}

.gutschein-mobile-panel .gutschein-mobile-menu > li > a {
  width: 100%;
  border-bottom: 0;
  border-radius: 14px;
}

.gutschein-mobile-panel .gutschein-mobile-menu > li > a:hover {
  background: var(--gc-green-soft);
}

.gutschein-home {
  padding-bottom: 4rem;
}

.gutschein-hero {
  padding: 1.25rem 0 0;
}

.gutschein-hero__layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
}

.gutschein-hero__main {
  background: linear-gradient(135deg, var(--gc-navy) 0%, var(--gc-navy-soft) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--gc-shadow);
}

.gutschein-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gutschein-hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gc-yellow);
}

.gutschein-hero__title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gutschein-hero__intro {
  max-width: 48rem;
  margin-top: 1rem;
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
  line-height: 1.8;
}

.gutschein-hero__actions,
.gutschein-hero__tabs,
.gutschein-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gutschein-hero__actions {
  margin-top: 1.5rem;
}

.gutschein-btn,
.gutschein-hero__main .gutschein-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.gutschein-btn:hover {
  transform: translateY(-1px);
}

.gutschein-btn--primary {
  background: var(--gc-green);
  color: #fff;
}

.gutschein-btn--primary:hover {
  background: var(--gc-green-dark);
  color: #fff;
}

.gutschein-btn--secondary {
  background: #fff;
  border-color: rgba(255,255,255,0.24);
  color: var(--gc-navy);
}

.gutschein-btn--secondary:hover {
  border-color: var(--gc-yellow);
  color: var(--gc-green-dark);
}

.gutschein-hero__tabs {
  margin-top: 1.5rem;
}

.gutschein-tab {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--gc-border);
  color: var(--gc-navy);
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 26, 63, 0.04);
}

.gutschein-tab:hover,
.gutschein-chip:hover {
  border-color: var(--gc-yellow);
  color: var(--gc-green-dark);
}

.gutschein-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gutschein-hero__aside-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gc-navy);
}

.gutschein-panel {
  background: #fff;
  border: 1px solid var(--gc-border);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--gc-shadow);
}

.gutschein-panel--promos {
  padding: 1rem;
}

.gutschein-panel__stack {
  display: grid;
  gap: 0.9rem;
}

.gutschein-section {
  margin-top: 1.5rem;
}

.gutschein-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gutschein-section__eyebrow {
  color: var(--gc-green-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gutschein-section__title {
  margin-top: 0.25rem;
  color: var(--gc-navy);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 700;
}

.gutschein-section__link {
  color: var(--gc-green-dark);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
}

.gutschein-section__link:hover {
  color: var(--gc-navy);
}

.gutschein-brand-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gutschein-mini-brand-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gutschein-alpha,
.gutschein-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gutschein-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}

.gutschein-chip--muted {
  background: #fdfefe;
  font-weight: 600;
}

.gutschein-category-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gutschein-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: var(--gc-shadow);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.gutschein-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 170, 0, 0.8);
}

.gutschein-category-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edf2f7;
}

.gutschein-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gutschein-category-card__body {
  padding: 1rem;
}

.gutschein-category-card__title {
  margin: 0;
  color: var(--gc-navy);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
}

.gutschein-category-card__meta {
  margin-top: 0.35rem;
  color: var(--gc-muted);
  font-size: 0.92rem;
}

.gutschein-promo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gutschein-prose-wrap {
  border-radius: 24px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: var(--gc-shadow);
  padding: 1.5rem;
}

.gutschein-prose-wrap .coupon-prose {
  color: var(--gc-text);
}

.gutschein-prose-wrap .coupon-prose a {
  color: var(--gc-green-dark);
}

.coupon-card {
  display: block;
  border-radius: 22px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 26, 63, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.coupon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 170, 0, 0.85);
  box-shadow: 0 12px 26px rgba(0, 26, 63, 0.1);
}

.coupon-card__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 1rem;
  padding: 1.1rem;
}

.coupon-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.coupon-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coupon-card__badge--featured {
  background: var(--gc-yellow-soft);
  color: #9c6500;
}

.coupon-card__badge--coupon {
  background: var(--gc-navy);
  color: #fff;
}

.coupon-card__badge--deal {
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
}

.coupon-card__badge--soft-blue {
  background: #ebf3ff;
  color: #2a5aa8;
}

.coupon-card__badge--soft-red {
  background: #fff0ef;
  color: #ba4d39;
}

.coupon-card__badge--soft-purple {
  background: #f3eeff;
  color: #6d3cc8;
}

.coupon-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.coupon-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  min-width: 116px;
  min-height: 72px;
  padding: 0.75rem;
  border: 1px solid var(--gc-border);
  border-radius: 16px;
  background: #fff;
}

.coupon-card__logo img,
.coupon-card__logo svg,
.coupon-card__logo .homepage__promo-logo-img {
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.coupon-card__brand {
  color: var(--gc-green-dark);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.coupon-card__brand:hover {
  color: var(--gc-navy);
}

.coupon-card__title {
  margin-top: 0.2rem;
  color: var(--gc-navy);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 700;
}

.coupon-card__description {
  margin-top: 0.85rem;
  color: var(--gc-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

.coupon-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin-top: 0.8rem;
  color: var(--gc-muted);
  font-size: 0.88rem;
}

.coupon-card__meta-link {
  color: var(--gc-green-dark);
  font-weight: 700;
}

.coupon-card__side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.coupon-card__code {
  display: grid;
  gap: 0.1rem;
  padding: 0.8rem;
  border: 1px dashed rgba(0, 26, 63, 0.24);
  border-radius: 16px;
  background: #f8fafc;
  text-align: center;
}

.coupon-card__code-label {
  color: var(--gc-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coupon-card__code-value {
  color: var(--gc-navy);
  font-size: 1.02rem;
  font-weight: 700;
  word-break: break-word;
}

.coupon-card__action {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: var(--gc-green);
  color: #fff !important;
  font-size: 0.97rem;
  font-weight: 700;
  text-decoration: none;
}

.coupon-card__action:hover {
  background: var(--gc-green-dark);
  color: #fff !important;
}

.brand-tile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 92px;
  border-radius: 20px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 26, 63, 0.05);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.brand-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 170, 0, 0.85);
}

.brand-tile__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  min-width: 96px;
  min-height: 62px;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--gc-border);
  background: #fff;
}

.brand-tile__logo img,
.brand-tile__logo svg,
.brand-tile__logo .homepage__shop-logo-img {
  max-width: 100%;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-tile__name {
  color: var(--gc-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.brand-tile__meta {
  margin-top: 0.2rem;
  color: var(--gc-muted);
  font-size: 0.9rem;
}

.gutschein-footer {
  margin-top: 3rem;
  background: var(--gc-navy);
  color: rgba(255,255,255,0.82);
}

.gutschein-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}

.gutschein-footer .logo--light {
  --logo-color: #fff;
}

.gutschein-footer__description {
  max-width: 34rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
}

.gutschein-footer__links,
.gutschein-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gutschein-footer__links a,
.gutschein-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
}

.gutschein-footer__links a:hover,
.gutschein-footer__social a:hover {
  border-color: var(--gc-yellow);
  color: #fff;
}

.gutschein-footer__bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.64);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .gutschein-hero__layout,
  .coupon-card__inner {
    grid-template-columns: 1fr;
  }

  .gutschein-brand-grid,
  .gutschein-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gutschein-mini-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gutschein-promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gutschein-header__top {
    display: none;
  }

  .gutschein-shell {
    width: min(100% - 1rem, 1144px);
  }

  .gutschein-hero {
    padding-top: 0.8rem;
  }

  .gutschein-hero__main {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .gutschein-panel,
  .gutschein-prose-wrap,
  .coupon-card,
  .brand-tile,
  .gutschein-category-card {
    border-radius: 18px;
  }

  .gutschein-brand-grid,
  .gutschein-category-grid,
  .gutschein-mini-brand-grid {
    grid-template-columns: 1fr;
  }

  .coupon-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .coupon-card__logo {
    width: 100%;
    min-width: 0;
  }

  .gutschein-section__header {
    flex-direction: column;
    align-items: flex-start;
  }
}


.brand-page {
  --brand-anchor-offset: 172px;
  padding: 2rem 0 4rem;
}

.brand-page__wrap {
  display: grid;
  gap: 1.5rem;
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 1.5rem;
  align-items: start;
}

.brand-layout__main {
  min-width: 0;
}

.brand-layout__sidebar {
  min-width: 0;
  position: relative;
  align-self: start;
  min-height: 1px;
}

.brand-layout__sidebar-inner {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.brand-page__breadcrumbs {
  font-size: 0.92rem;
  color: var(--gc-muted);
}

.brand-page__breadcrumbs a {
  color: var(--gc-green-dark);
  text-decoration: none;
}

.brand-page__crumb-sep {
  margin: 0 0.35rem;
  color: #a7b2c5;
}

.brand-hero {
  display: block;
}

.brand-hero__main,
.brand-side-card,
.brand-side-nav,
.brand-section {
  border-radius: 28px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: var(--gc-shadow);
}

.brand-hero__main {
  padding: 1.5rem;
}

.brand-hero__top {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.brand-hero__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid var(--gc-border);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.brand-page__hero-logo-img,
.brand-side-card__logo img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-hero__logo-fallback {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--gc-navy);
}

.brand-hero__eyebrow,
.brand-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gc-green-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-hero__eyebrow::before,
.brand-section__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gc-yellow);
}

.brand-hero__title,
.brand-section__title {
  margin-top: 0.35rem;
  color: var(--gc-navy);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
}

.brand-hero__intro {
  margin-top: 0.8rem;
  color: var(--gc-text);
}

.brand-hero__intro p:first-child {
  margin-top: 0;
}

.brand-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.brand-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #f4f7fb;
  color: var(--gc-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.brand-hero__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e9eef5;
}

.brand-hero__share-label {
  color: var(--gc-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.brand-hero__share-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-hero__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.brand-hero__share-link:hover {
  border-color: var(--gc-green);
  background: var(--gc-green);
  color: #fff;
}

.brand-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.brand-hero__stat {
  padding: 1rem;
  border-radius: 22px;
  background: #f7faff;
  border: 1px solid #e6edf6;
}

.brand-hero__stat--accent {
  background: linear-gradient(135deg, #fff6df 0%, #fffdf4 100%);
  border-color: rgba(255, 170, 0, 0.3);
}

.brand-hero__stat-label {
  color: var(--gc-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-hero__stat-value {
  margin-top: 0.3rem;
  color: var(--gc-navy);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}

.brand-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.brand-hero__tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s ease;
}

.brand-hero__tab:hover {
  border-color: rgba(0, 175, 102, 0.45);
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
}

.brand-side-card,
.brand-side-nav,
.brand-section {
  padding: 1.35rem;
}

.brand-side-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid var(--gc-border);
  background: #f8fbff;
}

.brand-side-card__title {
  margin-top: 1rem;
  color: var(--gc-navy);
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 700;
}

.brand-side-card__facts {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.brand-side-card__fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: #f7faff;
}

.brand-side-card__fact span {
  color: var(--gc-muted);
  font-size: 0.9rem;
}

.brand-side-card__fact strong {
  color: var(--gc-navy);
  font-size: 0.95rem;
  text-align: right;
}

.brand-side-nav {
  position: sticky;
  top: calc(var(--brand-anchor-offset, 172px) + 0.5rem);
  max-height: calc(100vh - var(--brand-anchor-offset, 172px) - 1.5rem);
  overflow: auto;
  align-self: start;
}

.brand-side-nav__title {
  color: var(--gc-navy);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-side-nav__link {
  display: block;
  margin-top: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: #f7faff;
  color: var(--gc-text);
  text-decoration: none;
  font-weight: 600;
  transition: all .2s ease;
}

.brand-side-nav__link:hover {
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
}

.brand-side-nav__link.is-active,
.brand-side-nav__link[aria-current="true"],
.brand-hero__tab.is-active,
.brand-hero__tab[aria-current="true"] {
  border-color: var(--gc-green);
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
  box-shadow: inset 0 0 0 1px rgba(0, 175, 102, 0.16);
}

.brand-side-nav__link.is-active {
  font-weight: 700;
}

.brand-section {
  margin-top: 1.25rem;
}

.brand-section[id],
.brand-hero[id] {
  scroll-margin-top: calc(var(--brand-anchor-offset, 172px) + 1.25rem);
}

.brand-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.brand-section__header--simple {
  align-items: start;
}

.brand-section__title {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.brand-section__subtitle {
  margin-top: 0.4rem;
  color: var(--gc-muted);
  font-size: 0.98rem;
}

.brand-page__filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.brand-page__filter-bar .brand-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: none;
}

.brand-page__filter-bar .brand-filter-btn.bg-slate-900,
.brand-page__filter-bar .brand-filter-btn.text-white {
  border-color: var(--gc-green);
  background: var(--gc-green);
  color: #fff;
}

.brand-page__promo-list,
.brand-page__brand-grid {
  display: grid;
  gap: 1rem;
}

.brand-page__brand-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.brand-section--prose .coupon-prose {
  color: var(--gc-text);
}

.brand-section--prose .coupon-prose a {
  color: var(--gc-green-dark);
}



.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--gc-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-item:hover {
  border-color: rgba(0, 175, 102, 0.28);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.08);
}

.faq-item[open] {
  border-color: rgba(0, 175, 102, 0.34);
  box-shadow: 0 20px 40px rgba(0, 89, 60, 0.08);
}

.faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.2rem;
}

.faq-item__summary::-webkit-details-marker {
  display: none;
}

.faq-item__question {
  color: var(--gc-navy);
  font-size: 1.03rem;
  line-height: 1.45;
  font-weight: 700;
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid #dbe5f0;
  background: #f7faff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.faq-item__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--gc-green-dark);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.faq-item__icon span:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon {
  border-color: rgba(0, 175, 102, 0.3);
  background: var(--gc-green-soft);
}

.faq-item[open] .faq-item__icon span:last-child {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-item__answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--gc-text);
}

.faq-item__answer > *:first-child {
  margin-top: 0;
}

.faq-item__answer > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .brand-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1rem;
  }
}

@media (max-width: 980px) {
  .brand-layout {
    grid-template-columns: 1fr;
  }

  .brand-layout__sidebar {
    position: static;
  }

  .brand-layout__sidebar-inner {
    display: grid;
  }

  .brand-side-nav {
    position: static;
    top: auto;
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 900px) {
  .brand-hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-page__brand-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .brand-page {
    padding-top: 1rem;
  }

  .brand-hero__main,
  .brand-side-card,
  .brand-side-nav,
  .brand-section {
    border-radius: 22px;
    padding: 1rem;
  }

  .brand-hero__top {
    grid-template-columns: 1fr;
  }

  .brand-hero__logo {
    min-height: 92px;
  }

  .brand-hero__share,
  .brand-section__header {
    flex-direction: column;
    align-items: start;
  }

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

.brand-usage-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-usage-list__item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border: 1px solid var(--gc-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.brand-usage-list__bullet {
  width: 14px;
  height: 14px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gc-green) 0%, var(--gc-green-dark) 100%);
  box-shadow: 0 0 0 5px rgba(0, 175, 102, 0.12);
}

.brand-usage-list__title {
  margin: 0;
  color: var(--gc-navy);
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 700;
}

.brand-usage-list__text {
  margin-top: 0.4rem;
  color: var(--gc-text);
}

.brand-usage-list__text > *:first-child {
  margin-top: 0;
}

.brand-usage-list__text > *:last-child {
  margin-bottom: 0;
}


.stores-brands-page {
  padding: 1rem 0 4rem;
}

.stores-brands-page__shell {
  display: block;
}

.stores-brands-page__hero {
  margin-bottom: 1rem;
}

.stores-brands-page__title {
  margin: 0;
  color: var(--gc-navy);
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.15;
}

.stores-brands-page__intro {
  max-width: 52rem;
  margin-top: 0.75rem;
  color: var(--gc-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.stores-brands-page__intro p {
  margin: 0.5rem 0 0;
}

.stores-brands-page__az {
  position: sticky;
  top: calc(var(--brand-anchor-offset, 82px) - 18px);
  z-index: 15;
  margin-bottom: 1rem;
}

.stores-brands-page__az-desktop,
.stores-brands-page__select {
  border: 1px solid rgba(0, 26, 63, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(0, 26, 63, 0.06);
}

.stores-brands-page__az-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  backdrop-filter: blur(12px);
}

.stores-brands-page__az-mobile {
  display: none;
}

.stores-brands-page__az-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2.5rem;
  padding: 0 0.4rem;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--gc-navy);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.stores-brands-page__az-link:hover,
.stores-brands-page__az-link.is-active {
  background: rgba(0, 175, 102, 0.16);
  border-color: rgba(0, 175, 102, 0.26);
  box-shadow: 0 8px 18px rgba(0, 175, 102, 0.14);
  color: var(--gc-green-dark);
  transform: translateY(-1px);
}

.stores-brands-page__az-link.is-disabled {
  opacity: 0.34;
  cursor: default;
}

.stores-brands-page__select {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  color: var(--gc-navy);
  font: inherit;
}

.stores-brands-page__sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stores-brands-page__section {
  scroll-margin-top: calc(var(--brand-anchor-offset, 82px) + 24px);
}

.stores-brands-page__section-head {
  margin-bottom: 0.45rem;
}

.stores-brands-page__section-title {
  margin: 0;
  color: var(--gc-navy);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
}

.stores-brands-page__section-subtitle {
  margin: 0.15rem 0 0;
  color: var(--gc-muted);
  font-size: 0.98rem;
}

.stores-brands-page__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stores-brands-page__more {
  margin-top: 0.75rem;
}

.stores-brands-page__more .stores-brands-page__grid + .stores-brands-page__grid {
  margin-top: 0.75rem;
}

.stores-brands-page__column {
  display: flex;
  flex-direction: column;
}

.stores-brands-page__item {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(0, 26, 63, 0.06);
  border-left: 3px solid transparent;
  border-radius: 12px;
  background: var(--gc-card);
  color: var(--gc-text);
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.stores-brands-page__column .stores-brands-page__item:first-child {
  border-top: 0;
}

.stores-brands-page__item:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f2fbf7 100%);
  border-left-color: var(--gc-green);
  box-shadow: 0 14px 28px rgba(0, 26, 63, 0.12);
  transform: translateX(6px);
}

.stores-brands-page__item:hover .stores-brands-page__item-title {
  color: var(--gc-green-dark);
}

.stores-brands-page__item:hover .stores-brands-page__item-logo-image,
.stores-brands-page__item:hover .stores-brands-page__item-logo img,
.stores-brands-page__item:hover .stores-brands-page__item-logo-placeholder {
  transform: scale(1.05);
}

.stores-brands-page__item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
}

.stores-brands-page__item-logo-image,
.stores-brands-page__item-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 2.35rem;
  object-fit: contain;
  transition: transform .22s ease;
}

.stores-brands-page__item-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.1rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
  font-weight: 700;
  transition: transform .22s ease, background-color .22s ease;
}

.stores-brands-page__item-body {
  min-width: 0;
}

.stores-brands-page__item-title {
  display: block;
  color: var(--gc-text);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.35;
  transition: color .2s ease;
}

.stores-brands-page__item-meta {
  display: block;
  margin-top: 0.15rem;
  color: var(--gc-muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.stores-brands-page__section-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.6rem;
}

.stores-brands-page__more-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--gc-green-dark);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.stores-brands-page__more-button:hover {
  background: rgba(0, 175, 102, 0.12);
  border-color: rgba(0, 175, 102, 0.22);
  transform: translateY(-1px);
}

.stores-brands-page__more-button svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

@media (max-width: 1023px) {
  .stores-brands-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .stores-brands-page {
    padding-top: 0.75rem;
  }

  .stores-brands-page__az {
    position: static;
  }

  .stores-brands-page__az-desktop {
    display: none;
  }

  .stores-brands-page__az-mobile {
    display: block;
  }

  .stores-brands-page__title {
    font-size: 1.85rem;
  }

  .stores-brands-page__item {
    grid-template-columns: 4.4rem minmax(0, 1fr);
    padding: 0.75rem 0.9rem;
  }
}


.gutschein-categories-page {
  padding: 1rem 0 4rem;
}

.gutschein-categories-hero {
  margin-bottom: 1.25rem;
}

.gutschein-categories-hero__breadcrumbs {
  margin-bottom: 0.85rem;
  color: var(--gc-muted);
  font-size: 0.92rem;
}

.gutschein-categories-hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 170, 0, 0.35);
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,244,219,0.72));
  box-shadow: var(--gc-shadow);
  padding: 1.65rem;
}

.gutschein-categories-hero__panel::after {
  content: '';
  position: absolute;
  inset: auto -80px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,170,0,0.18), rgba(255,170,0,0));
  pointer-events: none;
}

.gutschein-categories-hero__title {
  margin: 0.35rem 0 0;
  color: var(--gc-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
}

.gutschein-categories-hero__intro {
  margin-top: 0.9rem;
  max-width: 760px;
  color: var(--gc-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.gutschein-categories-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.gutschein-categories-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--gc-navy);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.gutschein-categories-hero__meta-pill.is-soft {
  background: #fff;
  color: var(--gc-green-dark);
  border: 1px solid rgba(0, 128, 85, 0.14);
}

.gutschein-categories-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gutschein-categories-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 26, 63, 0.08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.gutschein-categories-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 170, 0, 0.72);
  box-shadow: 0 18px 34px rgba(0, 26, 63, 0.14);
}

.gutschein-categories-card__media-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #dff5ec, #edf2f7);
}

.gutschein-categories-card__image,
.gutschein-categories-card__image-placeholder {
  width: 100%;
  height: 100%;
}

.gutschein-categories-card__image {
  object-fit: cover;
  transition: transform .28s ease;
}

.gutschein-categories-card:hover .gutschein-categories-card__image {
  transform: scale(1.05);
}

.gutschein-categories-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 26, 63, 0.96), rgba(0, 128, 85, 0.92));
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}

.gutschein-categories-card__count {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 26, 63, 0.88);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.gutschein-categories-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.gutschein-categories-card__title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 700;
}

.gutschein-categories-card__title a {
  color: var(--gc-navy);
  text-decoration: none;
}

.gutschein-categories-card:hover .gutschein-categories-card__title a {
  color: var(--gc-green-dark);
}

.gutschein-categories-card__list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.95rem;
}

.gutschein-categories-card__list-item {
  list-style: none;
}

.gutschein-categories-card__list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: #f9fbfd;
  color: var(--gc-text);
  font-size: 0.94rem;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.gutschein-categories-card__list-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex-shrink: 0;
}

.gutschein-categories-card__list-link:hover {
  background: #ecf9f3;
  color: var(--gc-green-dark);
  transform: translateX(3px);
}

.gutschein-categories-card__footer {
  margin-top: auto;
  padding-top: 1rem;
}

.gutschein-categories-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gc-green-dark);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.gutschein-categories-card__cta svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.gutschein-categories-card__cta:hover {
  color: var(--gc-navy);
}

.gutschein-categories-seo {
  margin-top: 1.5rem;
}

@media (max-width: 1200px) {
  .gutschein-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .gutschein-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gutschein-categories-page {
    padding-top: 0.75rem;
  }

  .gutschein-categories-hero__panel {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .gutschein-categories-grid {
    grid-template-columns: 1fr;
  }

  .gutschein-categories-card,
  .gutschein-categories-card__media-link {
    border-radius: 18px;
  }

  .gutschein-categories-card {
    border-radius: 18px;
  }
}

/* Coupons & deals page inspired by neue-gutscheine */
.gc-latest-page {
  padding: 1rem 0 4rem;
}

.gc-latest-page__breadcrumbs {
  margin-bottom: 0.9rem;
  color: var(--gc-muted);
  font-size: 0.92rem;
}

.gc-latest-page__inner {
  width: min(1144px, calc(100% - 1rem));
}

.gc-latest-hero {
  margin-bottom: 1rem;
}

.gc-latest-hero__title {
  margin: 0;
  color: var(--gc-navy);
  font-size: clamp(1.9rem, 2.6vw, 2.65rem);
  line-height: 1.12;
  font-weight: 700;
}

.gc-latest-hero__month {
  margin-top: 0.18rem;
  color: var(--gc-navy);
  font-size: clamp(1.2rem, 1.6vw, 1.7rem);
  line-height: 1.2;
  font-weight: 600;
}

.gc-latest-layout {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.gc-latest-list {
  display: grid;
  gap: 0.9rem;
}

.gc-empty-state {
  padding: 2rem;
  border: 1px dashed var(--gc-border);
  border-radius: 18px;
  background: #fff;
  color: var(--gc-muted);
  text-align: center;
}

.gc-latest-more {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.gc-latest-card {
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 26, 63, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gc-latest-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 175, 102, 0.28);
  box-shadow: 0 14px 28px rgba(0, 26, 63, 0.1);
}

.gc-latest-card__content {
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.gc-latest-card__media {
  width: 28%;
  min-width: 116px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-latest-card__label {
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0.2rem 0.5rem;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gc-latest-card__label--coupon {
  background: var(--gc-green-dark);
}

.gc-latest-card__label--offer {
  background: #a11500;
}

.gc-latest-card__logo {
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-latest-card__logo img,
.gc-latest-card__logo svg,
.gc-latest-card__logo .homepage__promo-logo-img {
  max-width: 100%;
  max-height: 62px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gc-latest-card__fallback {
  color: var(--gc-green-dark);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.gc-latest-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.gc-latest-card__copy {
  min-width: 0;
  flex: 1 1 auto;
}

.gc-latest-card__brand {
  color: var(--gc-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.gc-latest-card__title {
  margin: 0;
  color: var(--gc-navy);
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 600;
}

.gc-latest-card__title strong {
  color: var(--gc-green-dark);
}

.gc-latest-card__discount {
  margin-top: 0.35rem;
  color: var(--gc-green-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.gc-latest-card__code-box {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.7rem;
  border-radius: 12px;
  border: 1px dashed rgba(0, 26, 63, 0.2);
  background: #f8fafc;
}

.gc-latest-card__code-label {
  color: var(--gc-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gc-latest-card__code-value {
  color: var(--gc-navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.gc-latest-card__cta {
  width: min(100%, 248px);
  min-width: 210px;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.gc-ticket-btn,
.gc-offer-btn {
  width: 100%;
  min-height: 48px;
  text-decoration: none;
}

.gc-ticket-btn {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  background: #47cca0;
  color: #002c1d !important;
  box-shadow: inset 0 0 0 1px rgba(0, 89, 60, 0.18);
}

.gc-ticket-btn__lead,
.gc-ticket-btn__stub {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}

.gc-ticket-btn__lead {
  flex: 1 1 auto;
  padding: 0.75rem 0.95rem;
  background: var(--gc-green-dark);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  transition: width .2s ease, background-color .2s ease;
}

.gc-ticket-btn__stub {
  width: 43%;
  padding: 0.6rem 0.75rem;
  border-left: 1px dashed rgba(0, 71, 48, 0.65);
  color: #004730;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.gc-ticket-btn:hover .gc-ticket-btn__lead {
  background: var(--gc-green);
}

.gc-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: #a11500;
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}

.gc-offer-btn:hover {
  background: #bd1f00;
}

.gc-latest-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.42rem 0.9rem;
  background: #f3f4f6;
  color: #475569;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gc-latest-card__details {
  margin-left: auto;
}

.gc-latest-sidebar {
  display: grid;
  gap: 1rem;
}

.gc-sidebar-card {
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 26, 63, 0.05);
  overflow: hidden;
}

.gc-sidebar-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem 0.55rem;
}

.gc-sidebar-card__head h2 {
  margin: 0;
  color: var(--gc-navy);
  font-size: 1.22rem;
  font-weight: 600;
}

.gc-sidebar-card__head a {
  color: var(--gc-green-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.gc-sidebar-card__head a:hover {
  color: var(--gc-navy);
}

.gc-sidebar-card__list {
  display: flex;
  flex-direction: column;
}

.gc-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid #e6ebf2;
  background: #fff;
  text-decoration: none;
  transition: background-color .2s ease;
}

.gc-sidebar-item:hover {
  background: #f9fafb;
}

.gc-sidebar-item__logo {
  width: 26%;
  min-width: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gc-sidebar-item__logo img,
.gc-sidebar-item__logo svg,
.gc-sidebar-item__logo .homepage__shop-logo-img,
.gc-sidebar-item__logo .homepage__promo-logo-img {
  max-width: 100%;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gc-sidebar-item__body {
  min-width: 0;
  flex: 1 1 auto;
}

.gc-sidebar-item__eyebrow {
  display: block;
  color: var(--gc-green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gc-sidebar-item__title {
  display: block;
  color: var(--gc-text);
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 500;
}

.gc-sidebar-item__meta {
  display: block;
  color: var(--gc-muted);
  font-size: 0.78rem;
}

.gc-sidebar-item__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
  font-size: 1rem;
  font-weight: 700;
}

.gc-sidebar-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.3rem 1rem 1rem;
}

.gc-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  background: #f0fdf4;
  color: var(--gc-green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}

.gc-category-pill:hover {
  background: #daf2ea;
  color: var(--gc-navy);
}

@media (min-width: 1024px) {
  .gc-latest-layout {
    grid-template-columns: minmax(0, 2fr) minmax(290px, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .gc-latest-card__body {
    flex-direction: column;
    align-items: stretch;
  }

  .gc-latest-card__cta {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  .gc-latest-card__content {
    flex-direction: column;
  }

  .gc-latest-card__media {
    width: 100%;
    padding-top: 0.3rem;
  }

  .gc-latest-card__logo {
    min-height: 64px;
  }

  .gc-latest-card__title {
    font-size: 1.02rem;
  }

  .gc-latest-card__meta {
    flex-wrap: wrap;
  }

  .gc-latest-card__details {
    margin-left: 0;
  }
}

.gutschein-taxonomy-page {
  position: relative;
}

.gutschein-taxonomy-page__breadcrumbs {
  color: var(--gc-muted);
}

.gutschein-taxonomy-page__breadcrumbs a {
  color: var(--gc-green-dark);
}

.gutschein-taxonomy-page__breadcrumbs a:hover {
  color: var(--gc-navy);
}

.gutschein-taxonomy-hero {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr);
}

.gutschein-taxonomy-hero__main,
.gutschein-taxonomy-side-card,
.gutschein-taxonomy-sidebar__card,
.gutschein-taxonomy-empty {
  border-radius: 28px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: var(--gc-shadow);
}

.gutschein-taxonomy-hero__main {
  padding: 2rem;
}

.gutschein-taxonomy-hero__eyebrow,
.gutschein-section-heading__eyebrow,
.gutschein-taxonomy-sidebar__heading span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gutschein-taxonomy-hero__title {
  margin: 0.8rem 0 0;
  color: var(--gc-navy);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.06;
  font-weight: 800;
}

.gutschein-taxonomy-hero__intro {
  margin-top: 1rem;
  max-width: 54rem;
  color: var(--gc-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.gutschein-taxonomy-hero__intro a {
  color: var(--gc-green-dark);
}

.gutschein-taxonomy-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.gutschein-taxonomy-stat {
  min-width: 180px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.gutschein-taxonomy-stat strong {
  display: block;
  color: var(--gc-navy);
  font-size: 1.05rem;
  font-weight: 800;
}

.gutschein-taxonomy-stat span {
  display: block;
  margin-top: 0.2rem;
  color: var(--gc-muted);
  font-size: 0.9rem;
}

.gutschein-taxonomy-side-card {
  padding: 1.4rem;
}

.gutschein-taxonomy-side-card h2,
.gutschein-taxonomy-sidebar__heading h3,
.gutschein-section-heading h2 {
  margin: 0.55rem 0 0;
  color: var(--gc-navy);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.35;
}

.gutschein-taxonomy-side-card p,
.gutschein-section-heading p {
  margin: 0.85rem 0 0;
  color: var(--gc-muted);
  line-height: 1.7;
}

.gutschein-taxonomy-side-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.gutschein-taxonomy-side-card__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, color .2s ease;
}

.gutschein-taxonomy-side-card__chips a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 170, 0, 0.85);
  color: var(--gc-green-dark);
}

.gutschein-taxonomy-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
}

.gutschein-section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.gutschein-taxonomy-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gutschein-taxonomy-sidebar__card {
  padding: 1.25rem;
}

.gutschein-taxonomy-sidebar__heading {
  margin-bottom: 1rem;
}

.gutschein-taxonomy-sidebar__stack {
  display: grid;
  gap: 0.85rem;
}

.gutschein-taxonomy-sidebar__stack .brand-tile {
  min-height: 84px;
  padding: 0.9rem;
  box-shadow: none;
}

.gutschein-taxonomy-sidebar__stack .brand-tile:hover {
  box-shadow: 0 10px 24px rgba(0, 26, 63, 0.08);
}

.gutschein-taxonomy-links {
  display: grid;
  gap: 0.85rem;
}

.gutschein-taxonomy-links__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--gc-border);
  background: #f8fafc;
  color: var(--gc-navy);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.gutschein-taxonomy-links__item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 170, 0, 0.85);
  box-shadow: 0 10px 22px rgba(0, 26, 63, 0.08);
}

.gutschein-taxonomy-links__item span {
  font-weight: 700;
  line-height: 1.4;
}

.gutschein-taxonomy-links__item strong {
  color: var(--gc-muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
}

.gutschein-taxonomy-empty {
  padding: 2rem;
  color: var(--gc-muted);
  text-align: center;
}

@media (min-width: 1024px) {
  .gutschein-taxonomy-hero {
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
    align-items: stretch;
  }

  .gutschein-taxonomy-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.8fr);
    align-items: start;
  }

  .gutschein-taxonomy-sidebar {
    position: sticky;
    top: 110px;
  }

  .gutschein-section-heading {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .gutschein-section-heading p {
    max-width: 22rem;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .gutschein-taxonomy-hero__main,
  .gutschein-taxonomy-side-card,
  .gutschein-taxonomy-sidebar__card,
  .gutschein-taxonomy-empty {
    border-radius: 22px;
  }

  .gutschein-taxonomy-hero__main {
    padding: 1.35rem;
  }

  .gutschein-taxonomy-sidebar__card {
    padding: 1rem;
  }
}

.gutschein-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gutschein-header__search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
}

.gutschein-header__search-trigger:hover {
  transform: translateY(-1px);
  color: var(--gc-green-dark);
  border-color: rgba(0, 175, 102, 0.45);
  box-shadow: 0 10px 18px rgba(0, 26, 63, 0.08);
}

.gutschein-header__search-trigger svg,
.gutschein-search-form__icon svg {
  width: 20px;
  height: 20px;
}

.gutschein-search-panel {
  border-top: 1px solid rgba(0, 26, 63, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,247,251,0.94) 100%);
}

.gutschein-search-panel__inner {
  padding: 1rem 0 1.1rem;
}

.gutschein-mobile-panel__search {
  padding: 0.25rem 0 0.85rem;
}

.gutschein-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.75rem 0.7rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--gc-border);
  background: #fff;
  box-shadow: 0 14px 28px rgba(0, 26, 63, 0.06);
}

.gutschein-search-form__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gc-green-dark);
  flex: 0 0 auto;
}

.gutschein-search-form__field {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gc-navy);
  font-size: 1rem;
  line-height: 1.4;
}

.gutschein-search-form__field::placeholder {
  color: #7b8798;
}

.gutschein-search-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.2rem;
  border: 0;
  border-radius: 14px;
  background: var(--gc-green);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color .2s ease, transform .2s ease;
}

.gutschein-search-form__button:hover {
  background: var(--gc-green-dark);
  transform: translateY(-1px);
}

.gutschein-search-form--page {
  padding: 0.8rem 0.9rem 0.8rem 1rem;
  border-radius: 22px;
}

.search-page {
  padding: 1.25rem 0 4rem;
}

.search-page__hero {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gc-navy) 0%, var(--gc-navy-soft) 100%);
  color: #fff;
  box-shadow: var(--gc-shadow);
}

.search-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-page__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gc-yellow);
}

.search-page__title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  font-weight: 700;
}

.search-page__intro {
  max-width: 720px;
  color: rgba(255,255,255,0.86);
  font-size: 1.02rem;
  line-height: 1.7;
}

.search-page__form-wrap {
  margin-top: 1.5rem;
}

.search-page__form-wrap .gutschein-search-form {
  background: rgba(255,255,255,0.98);
}

.search-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.search-page__stat-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.search-page__stat-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
}

.search-page__stat-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.84);
}

.search-page__sections {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.search-page__section,
.search-page__empty,
.search-page__section-empty {
  padding: 1.5rem;
  border: 1px solid var(--gc-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 26, 63, 0.05);
}

.search-page__section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.search-page__section-kicker {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--gc-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-page__section-title {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.15;
  color: var(--gc-navy);
}

.search-page__section-count {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
  font-weight: 700;
  white-space: nowrap;
}

.search-page__brands-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.search-page__promos-list {
  display: grid;
  gap: 1rem;
}

.search-page__promo-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--gc-border);
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.search-page__promo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 175, 102, 0.3);
  box-shadow: 0 16px 28px rgba(0, 26, 63, 0.07);
}

.search-page__promo-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-page__promo-logo-image,
.search-page__promo-logo img,
.search-page__promo-logo-fallback {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--gc-border);
  background: #fff;
}

.search-page__promo-logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gc-navy);
  background: #f8fafc;
}

.search-page__promo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.search-page__promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.search-page__promo-badge--type {
  background: var(--gc-yellow-soft);
  color: #9a6200;
}

.search-page__promo-badge--brand {
  background: var(--gc-green-soft);
  color: var(--gc-green-dark);
}

.search-page__promo-title {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  line-height: 1.25;
}

.search-page__promo-title a {
  color: var(--gc-navy);
  text-decoration: none;
}

.search-page__promo-title a:hover {
  color: var(--gc-green-dark);
}

.search-page__promo-excerpt {
  margin: 0 0 0.9rem;
  color: var(--gc-muted);
  line-height: 1.7;
}

.search-page__promo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  border-radius: 12px;
  background: var(--gc-green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.search-page__promo-link:hover {
  background: var(--gc-green-dark);
  color: #fff;
  transform: translateY(-1px);
}

.search-page__empty,
.search-page__section-empty {
  margin-top: 1.5rem;
}

.search-page__empty h2,
.search-page__section-empty p {
  margin: 0;
}

.search-page__empty h2 {
  margin-bottom: 0.6rem;
  font-size: 1.65rem;
  color: var(--gc-navy);
}

.search-page__empty p,
.search-page__section-empty p {
  color: var(--gc-muted);
  line-height: 1.7;
}

@media (max-width: 1279px) {
  .gutschein-search-panel {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .search-page__stats,
  .search-page__brands-grid {
    grid-template-columns: 1fr;
  }

  .search-page__section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .search-page__promo-card {
    grid-template-columns: 1fr;
  }

  .search-page__promo-logo {
    max-width: 180px;
  }
}

@media (max-width: 767px) {
  .gutschein-search-form {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .gutschein-search-form__field {
    width: calc(100% - 2rem);
  }

  .gutschein-search-form__button {
    width: 100%;
  }

  .search-page__hero {
    padding: 1.5rem;
  }
}

/* Logo image support */
.gutschein-header .logo img,
.gutschein-footer .logo img,
.logo__image {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

.gutschein-header .logo img,
.gutschein-header .logo svg {
  max-height: 48px;
}

.gutschein-footer .logo img,
.gutschein-footer .logo svg {
  max-height: 44px;
}

/* Running ticker */
.gutschein-marquee {
  border-top: 1px solid rgba(0, 26, 63, 0.06);
  border-bottom: 1px solid rgba(0, 26, 63, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gutschein-marquee__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 54px;
}

.gutschein-marquee__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  white-space: nowrap;
  color: var(--gc-navy);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gutschein-marquee__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gc-green);
  box-shadow: 0 0 0 4px rgba(0, 175, 102, .12);
}

.gutschein-marquee__viewport {
  overflow: hidden;
  min-width: 0;
}

.gutschein-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: .75rem;
  animation: gcTicker 32s linear infinite;
}

.gutschein-marquee:hover .gutschein-marquee__track {
  animation-play-state: paused;
}

.gutschein-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 38px;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 26, 63, .08);
  background: #fff;
  color: var(--gc-navy);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 26, 63, .05);
}

.gutschein-marquee__item:hover {
  border-color: rgba(0, 175, 102, .35);
  color: var(--gc-green-dark);
}

.gutschein-marquee__brand {
  font-weight: 800;
}

.gutschein-marquee__text {
  color: var(--gc-text);
  font-weight: 700;
}

.gutschein-marquee__meta {
  padding: .2rem .45rem;
  border-radius: 999px;
  background: var(--gc-yellow-soft);
  color: #8a5a00;
  font-size: .8rem;
  font-weight: 700;
}

@keyframes gcTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero slider */
.gutschein-hero-slider {
  position: relative;
  min-height: 100%;
  padding: 0;
}

.gutschein-hero-slider__viewport {
  position: relative;
  min-height: 100%;
}

.gutschein-hero-slide {
  position: relative;
  display: none;
  min-height: 430px;
  overflow: hidden;
  border-radius: 28px;
  background: #dbeafe;
  box-shadow: var(--gc-shadow);
  text-decoration: none;
}

.gutschein-hero-slide.is-active {
  display: block;
}

.gutschein-hero-slide__media,
.gutschein-hero-slide__media img {
  width: 100%;
  height: 100%;
}

.gutschein-hero-slide__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #123a7a 0%, #1f5db8 42%, #35b4a0 100%);
}

.gutschein-hero-slide__media img {
  object-fit: cover;
}

.gutschein-hero-slide__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 26, 63, .1) 0%, rgba(0, 26, 63, .72) 100%);
}

.gutschein-hero-slide__media.is-placeholder::after {
  background: linear-gradient(180deg, rgba(0, 26, 63, .05) 0%, rgba(0, 26, 63, .78) 100%);
}

.gutschein-hero-slide__placeholder-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .22), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(255, 170, 0, .26), transparent 30%),
    radial-gradient(circle at 70% 82%, rgba(0, 175, 102, .18), transparent 24%);
}

.gutschein-hero-slide__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 1rem;
}

.gutschein-hero-slide__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .85rem;
}

.gutschein-hero-slide__type,
.gutschein-hero-slide__discount {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .32rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
}

.gutschein-hero-slide__type {
  background: rgba(255,255,255,.18);
  color: #fff;
  backdrop-filter: blur(6px);
}

.gutschein-hero-slide__discount {
  background: rgba(255, 170, 0, .18);
  color: #fff4db;
  border: 1px solid rgba(255, 170, 0, .35);
}

.gutschein-hero-slide__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1rem;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 26, 63, .16);
}

.gutschein-hero-slide__brandbox {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.gutschein-hero-slide__brandlogo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  min-width: 84px;
  height: 56px;
  padding: .55rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 26, 63, .08);
}

.gutschein-hero-slide__brandlogo img,
.gutschein-hero-slide__brandlogo svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gutschein-hero-slide__brandlogo span {
  color: var(--gc-navy);
  font-size: 1.3rem;
  font-weight: 800;
}

.gutschein-hero-slide__text {
  min-width: 0;
}

.gutschein-hero-slide__brand {
  color: var(--gc-green-dark);
  font-size: .88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gutschein-hero-slide__title {
  margin-top: .22rem;
  color: var(--gc-navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.gutschein-hero-slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .75rem .95rem;
  border-radius: 14px;
  background: var(--gc-green);
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
}

.gutschein-hero-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  margin-top: .9rem;
}

.gutschein-hero-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(0, 26, 63, .06);
}

.gutschein-hero-slider__arrow:hover {
  border-color: var(--gc-yellow);
  color: var(--gc-green-dark);
}

.gutschein-hero-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex: 1;
}

.gutschein-hero-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 26, 63, .16);
  transition: transform .2s ease, background-color .2s ease;
}

.gutschein-hero-slider__dot.is-active {
  transform: scale(1.15);
  background: var(--gc-green);
}

/* Footer newsletter */
.gutschein-footer__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: start;
}

.gutschein-footer__about {
  min-width: 0;
}

.gutschein-footer__links {
  margin-top: 1rem;
}

.gutschein-footer__newsletter-card {
  padding: 1.15rem;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 34px rgba(0,0,0,.16);
}

.gutschein-footer__newsletter-eyebrow {
  color: var(--gc-yellow);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gutschein-footer__newsletter-title {
  margin-top: .45rem;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.1;
  font-weight: 700;
}

.gutschein-footer__newsletter-text {
  margin-top: .7rem;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}

.gutschein-footer__newsletter-form {
  margin-top: 1rem;
}

.gutschein-footer__newsletter-empty {
  color: rgba(255,255,255,.68);
}

.gutschein-footer__newsletter-form .wpcf7 form,
.gutschein-footer__newsletter-form .wpcf7-form {
  display: grid;
  gap: .8rem;
}

.gutschein-footer__newsletter-form .wpcf7-form p {
  margin: 0;
}

.gutschein-footer__newsletter-form .wpcf7-form-control-wrap {
  display: block;
}

.gutschein-footer__newsletter-form input[type="email"],
.gutschein-footer__newsletter-form input[type="text"],
.gutschein-footer__newsletter-form input[type="search"] {
  width: 100%;
  min-height: 48px;
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.98);
  color: var(--gc-navy);
}

.gutschein-footer__newsletter-form input[type="submit"],
.gutschein-footer__newsletter-form button[type="submit"],
.gutschein-footer__newsletter-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1rem;
  width: 100%;
  border-radius: 14px;
  border: 0;
  background: var(--gc-green);
  color: #fff;
  font-weight: 800;
}

.gutschein-footer__newsletter-form input[type="submit"]:hover,
.gutschein-footer__newsletter-form button[type="submit"]:hover,
.gutschein-footer__newsletter-form .wpcf7-submit:hover {
  background: var(--gc-green-dark);
}

.gutschein-footer__newsletter-form .wpcf7-response-output {
  margin: .6rem 0 0;
  color: #fff;
}

@media (max-width: 1024px) {
  .gutschein-marquee__inner,
  .gutschein-footer__grid {
    grid-template-columns: 1fr;
  }

  .gutschein-marquee__label {
    display: none;
  }
}

@media (max-width: 767px) {
  .gutschein-marquee__item {
    padding: .42rem .7rem;
  }

  .gutschein-hero-slide,
  .gutschein-hero-slide__overlay {
    min-height: 360px;
  }

  .gutschein-hero-slide__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .gutschein-hero-slide__brandbox {
    width: 100%;
  }

  .gutschein-hero-slide__cta {
    width: 100%;
  }
}


/* Homepage hero refresh */
.gutschein-hero {
  padding: 1.1rem 0 0;
}

.gutschein-home-h1 {
  margin: 0 0 1rem;
  color: var(--gc-navy);
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.03em;
}

.gutschein-hero-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.gutschein-hero-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.gutschein-hero-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding: 0 14vw;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.gutschein-hero-carousel__slide {
  position: relative;
  flex: 0 0 clamp(320px, 72vw, 1160px);
  min-height: clamp(460px, 78vh, 780px);
  overflow: hidden;
  border-radius: 32px;
  background: #dbeafe;
  box-shadow: 0 26px 60px rgba(0, 26, 63, .16);
  text-decoration: none;
  opacity: .58;
  transform: scale(.94);
  filter: saturate(.72);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease, box-shadow .45s ease;
}

.gutschein-hero-carousel__slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
  box-shadow: 0 34px 78px rgba(0, 26, 63, .22);
}

.gutschein-hero-carousel__media,
.gutschein-hero-carousel__media img {
  width: 100%;
  height: 100%;
}

.gutschein-hero-carousel__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #123a7a 0%, #1f5db8 42%, #35b4a0 100%);
}

.gutschein-hero-carousel__media img {
  object-fit: cover;
}

.gutschein-hero-carousel__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 26, 63, .05) 0%, rgba(0, 26, 63, .52) 50%, rgba(0, 26, 63, .82) 100%);
}

.gutschein-hero-carousel__media.is-placeholder::after {
  background: linear-gradient(180deg, rgba(0, 26, 63, .04) 0%, rgba(0, 26, 63, .76) 100%);
}

.gutschein-hero-carousel__placeholder-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(255,170,0,.26), transparent 30%),
    radial-gradient(circle at 70% 82%, rgba(0,175,102,.18), transparent 24%);
}

.gutschein-hero-carousel__overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 1.15rem;
}

.gutschein-hero-carousel__content {
  width: 100%;
}

.gutschein-hero-carousel__discount {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 1rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(255, 170, 0, .18);
  border: 1px solid rgba(255, 170, 0, .35);
  color: #fff6df;
  font-size: .82rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.gutschein-hero-carousel__footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(0, 26, 63, .16);
}

.gutschein-hero-carousel__brandbox {
  display: flex;
  align-items: center;
  gap: .95rem;
  min-width: 0;
}

.gutschein-hero-carousel__brandlogo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  min-width: 100px;
  height: 64px;
  padding: .6rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 26, 63, .08);
}

.gutschein-hero-carousel__brandlogo img,
.gutschein-hero-carousel__brandlogo svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gutschein-hero-carousel__brandlogo span {
  color: var(--gc-navy);
  font-size: 1.4rem;
  font-weight: 800;
}

.gutschein-hero-carousel__text {
  min-width: 0;
}

.gutschein-hero-carousel__brand {
  color: var(--gc-green-dark);
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.gutschein-hero-carousel__title {
  margin-top: .25rem;
  color: var(--gc-navy);
  font-size: clamp(1.05rem, 1.35vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
}

.gutschein-hero-carousel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1rem;
  border-radius: 16px;
  background: var(--gc-green);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  white-space: nowrap;
}

.gutschein-hero-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  margin-top: 1rem;
}

.gutschein-hero-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--gc-border);
  background: #fff;
  color: var(--gc-navy);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 26, 63, .08);
}

.gutschein-hero-carousel__arrow:hover {
  border-color: var(--gc-yellow);
  color: var(--gc-green-dark);
}

.gutschein-hero-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
}

.gutschein-hero-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 26, 63, .16);
  transition: transform .2s ease, background-color .2s ease;
}

.gutschein-hero-carousel__dot.is-active {
  transform: scale(1.15);
  background: var(--gc-green);
}

/* Running ticker refreshed */
.gutschein-marquee {
  border-top: 1px solid rgba(0, 26, 63, .05);
  border-bottom: 1px solid rgba(0, 26, 63, .08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.gutschein-marquee__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: .9rem;
  min-height: 72px;
}

.gutschein-marquee__viewport {
  overflow: hidden;
  min-width: 0;
}

.gutschein-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: gcTicker 42s linear infinite;
}

.gutschein-marquee__item {
  display: flex;
  align-items: center;
  gap: .85rem;
  width: clamp(280px, 24vw, 360px);
  min-height: 72px;
  padding: .7rem .9rem;
  border-left: 1px solid rgba(0, 26, 63, .08);
  background: #fff;
  color: var(--gc-navy);
  text-decoration: none;
  box-shadow: inset 0 0 2px rgba(0,0,0,.08);
}

.gutschein-marquee__item:hover {
  background: #f9fcff;
  color: var(--gc-green-dark);
}

.gutschein-marquee__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  min-width: 74px;
  height: 42px;
}

.gutschein-marquee__logo img,
.gutschein-marquee__logo svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gutschein-marquee__logo-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: #eef5fb;
  color: var(--gc-navy);
  font-weight: 800;
}

.gutschein-marquee__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gutschein-marquee__brand {
  color: var(--gc-green-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.gutschein-marquee__text {
  display: -webkit-box;
  margin-top: .12rem;
  overflow: hidden;
  color: var(--gc-navy);
  font-size: .96rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1024px) {
  .gutschein-hero-carousel__track {
    padding: 0 1rem;
    gap: .9rem;
  }

  .gutschein-hero-carousel__slide {
    flex-basis: 88vw;
    min-height: clamp(420px, 62vh, 680px);
  }

  .gutschein-marquee__inner {
    grid-template-columns: 1fr;
  }

  .gutschein-marquee__label {
    display: none;
  }
}

@media (max-width: 767px) {
  .gutschein-hero {
    padding-top: .8rem;
  }

  .gutschein-home-h1 {
    margin-bottom: .8rem;
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  .gutschein-hero-carousel__track {
    padding: 0 .75rem;
    gap: .75rem;
  }

  .gutschein-hero-carousel__slide {
    flex-basis: 92vw;
    min-height: 440px;
  }

  .gutschein-hero-carousel__overlay {
    padding: .85rem;
  }

  .gutschein-hero-carousel__footer-card {
    align-items: stretch;
    flex-direction: column;
  }

  .gutschein-hero-carousel__brandbox {
    width: 100%;
  }

  .gutschein-hero-carousel__brandlogo {
    width: 88px;
    min-width: 88px;
    height: 58px;
  }

  .gutschein-hero-carousel__cta {
    width: 100%;
  }

  .gutschein-marquee__item {
    width: min(92vw, 340px);
  }
}


/* --- Final polish overrides --- */
:root {
  --gc-navy: #082447;
  --gc-navy-soft: #113560;
  --gc-green: #0f9b6c;
  --gc-green-dark: #0a7c56;
  --gc-green-soft: #e8f6f0;
  --gc-yellow: #f2b134;
  --gc-yellow-soft: #fff3da;
}

.gc-logo-placeholder,
.gutschein-marquee__logo-fallback,
.brand-tile__placeholder,
.gc-latest-card__fallback,
.stores-brands-page__item-logo-placeholder,
.search-page__promo-logo-fallback,
.blog-mini-card__placeholder,
.brand-hero__logo-fallback,
.brand-side-card__logo .brand-hero__logo-fallback,
.gutschein-categories-card__image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(8,36,71,.12), rgba(15,155,108,.16));
  color: var(--gc-navy);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(8,36,71,.08);
}
.gc-logo-placeholder > span { line-height: 1; }

.gutschein-header__inner { min-height: 76px; }
.gutschein-header__brand {
  display: flex;
  align-items: center;
  min-width: 0;
}
.gutschein-header__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-left: auto;
}
.gutschein-header__search-trigger,
.gutschein-header__toggle,
.gutschein-search-panel__close {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.gutschein-header__search-trigger,
.gutschein-header__toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--gc-navy);
}
.gutschein-header__search-trigger:hover,
.gutschein-header__toggle:hover,
.gutschein-search-panel__close:hover {
  background: var(--gc-green-soft) !important;
  color: var(--gc-green-dark);
}
.gutschein-search-panel__inner {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.gutschein-search-panel__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--gc-navy);
  flex: 0 0 auto;
}
.gutschein-header__mobile-search {
  border-top: 1px solid rgba(0, 26, 63, 0.08);
  border-bottom: 1px solid rgba(0, 26, 63, 0.08);
  background: rgba(255,255,255,.96);
}
.gutschein-header__mobile-search .gutschein-shell {
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.gutschein-mobile-panel .gutschein-mobile-menu {
  padding-top: .75rem;
}
@media (min-width: 1280px) {
  .gutschein-header__mobile-search { display: none; }
}
@media (max-width: 1279px) {
  .gutschein-header__search-trigger { display: none !important; }
}

.gutschein-search-form { position: relative; }
.gutschein-search-form__field { padding-right: 1rem; }
.gutschein-search-form--mobile .gutschein-search-form__button { min-width: 112px; }

.gutschein-hero-carousel__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gutschein-hero-carousel__arrow svg,
.gutschein-hero-carousel__arrow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gutschein-hero-carousel__slide { cursor: pointer; }
.gutschein-hero-carousel__slide.is-active { pointer-events: auto; }

.gutschein-category-card__count {
  left: 1.35rem;
  right: auto;
  text-align: left;
}

.gc-sidebar-item--promo {
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.gc-sidebar-item--promo:hover { transform: translateY(-1px); }

.standard-page__hero,
.standard-page__hero-card,
.standard-page__hero-card--fallback,
.standard-page__panel {
  display: none !important;
}
.standard-page__layout--simple { padding-top: 2rem; }
.standard-page__sidebar-static { position: static; }
.standard-page__best-shops .brand-tile { background: #fff; }

.blog-sidebar__sticky,
.blog-sidebar__static {
  position: static !important;
  top: auto !important;
}
.blog-panel--shops .brand-tile { background: #fff; }

.brand-hero__tabs { display: none !important; }
.brand-side-card--shops { margin-top: 1rem; }
.brand-side-card--shops .brand-tile { background: #fff; }

.gc-latest-card__content { align-items: stretch; }
.gc-latest-card__media { justify-content: center; }
.gc-latest-card__logo { min-height: 86px; }
.gc-latest-card__logo img,
.gc-latest-card__logo svg,
.gc-latest-card__logo .homepage__promo-logo-img { max-height: 54px; }
.gc-latest-card__fallback { padding: 0 1rem; }
.gc-latest-card__title {
  font-size: 1.32rem;
  line-height: 1.3;
}
.gc-latest-card__meta { gap: 1rem; }
.gc-ticket-btn,
.gc-offer-btn { min-height: 52px; }
.gc-ticket-btn__lead,
.gc-ticket-btn__stub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-page__promos-list .gc-latest-card + .gc-latest-card { margin-top: 1rem; }

.gutschein-marquee__logo img,
.gutschein-marquee__logo svg,
.gutschein-marquee__logo-fallback {
  width: 100%;
  height: 100%;
}
.gutschein-marquee__logo-fallback { min-height: 44px; }

@media (max-width: 767px) {
  .gc-latest-card__content { flex-direction: column; }
  .gc-latest-card__media { width: 100%; }
}
