/* ================================================
   Homepage — Hero slider, trust bar, categories,
              shop slider, category section, voucher cards
   ================================================ */

/* ================================================
   Hero Slider (Fade transition)
   ================================================ */

.gc-hero-slider-wrapper {
  padding: 12px 0 0;
}

.gc-hero-slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.gc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.gc-hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.gc-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.45) 40%, transparent 70%);
}

.gc-hero-slide-content {
  position: relative;
  z-index: 3;
  padding: 24px 20px;
  max-width: 500px;
  color: var(--gc-white);
}

.gc-hero-slide-title {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.gc-hero-slide-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  background: var(--gc-primary);
  color: var(--gc-text);
  font-weight: var(--font-bold);
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  text-decoration: none;
}

.gc-hero-slide-btn:hover {
  background: var(--gc-primary-strong);
  color: var(--gc-text);
}

.gc-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.gc-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}

.gc-slider-dot.is-active {
  background: var(--gc-primary);
}

/* ================================================
   Deal des Tages
   ================================================ */

.gc-dotd {
  padding: 40px 0 0;
}

.gc-dotd-card {
  background: var(--gc-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
}

.gc-dotd-logo-area {
  width: 100%;
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: var(--gc-surface);
}

.gc-dotd-logo-area img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.gc-dotd-discount {
  position: absolute;
  top: 0;
  right: 0;
  background: #F97316;
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  padding: 14px 18px;
  border-radius: 0 0 0 14px;
  line-height: 1;
  letter-spacing: -0.5px;
  box-shadow: -2px 2px 12px rgba(249, 115, 22, 0.2);
  z-index: 2;
}

.gc-dotd-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.gc-dotd-label {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #F97316;
  margin-bottom: 10px;
}

.gc-dotd-shop {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--gc-text);
}

.gc-dotd-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.gc-dotd-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-dotd-proof {
  flex: 1;
  min-width: 0;
}

.gc-dotd-uses {
  font-size: 15px;
  font-weight: 700;
  color: var(--gc-text);
}

.gc-dotd-expiry {
  font-size: 13px;
  color: #999;
  margin-top: 3px;
}

.gc-dotd-cta {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  background: var(--gc-primary);
  color: var(--gc-text);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}

.gc-dotd-cta:hover {
  background: var(--gc-primary-strong);
}

/* Deal des Tages — tablet+ */
@media (min-width: 641px) {
  .gc-dotd-card {
    flex-direction: row;
  }

  .gc-dotd-logo-area {
    width: 260px;
    height: auto;
  }

  .gc-dotd-discount {
    font-size: 28px;
    padding: 16px 22px;
  }

  .gc-dotd-body {
    padding: 28px 32px;
  }

  .gc-dotd-label {
    font-size: 18px;
  }

  .gc-dotd-shop {
    font-size: 26px;
  }

  .gc-dotd-bottom {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .gc-dotd-cta {
    flex-shrink: 0;
  }

  .gc-cm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================
   Voucher Cards (Dummy-Style)
   ================================================ */

.gc-vc-section {
  padding: 40px 0 0;
}

.gc-vc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.gc-vc-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.gc-vc-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.gc-vc-logo-area {
  height: 140px;
  background: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 12px 12px;
  position: relative;
}

.gc-vc-logo-area img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.gc-vc-initial {
  font-size: 48px;
  font-weight: 800;
  color: #ccc;
}

.gc-vc-discount {
  position: absolute;
  top: 0;
  right: 0;
  background: #F97316;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 0 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  box-shadow: -2px 2px 10px rgba(249, 115, 22, 0.25);
  max-width: 120px;
  text-align: center;
}

.gc-vc-discount--short {
  font-size: 20px;
  padding: 12px 16px;
}

.gc-vc-body {
  padding: 18px 18px 16px;
}

.gc-vc-shop {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.gc-vc-deal {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gc-vc-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gc-vc-proof {
  flex: 1;
  min-width: 0;
}

.gc-vc-uses {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.gc-vc-expiry {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.gc-vc-cta {
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--gc-primary);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

.gc-vc-card:hover .gc-vc-cta {
  background: var(--gc-primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 225, 77, 0.4);
}

/* ================================================
   Trust Bar
   ================================================ */

.gc-trust-bar {
  background: transparent;
  padding: var(--space-7) 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.gc-trust-items {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.gc-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--gc-text);
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--radius-xl);
  padding: var(--space-3) 14px;
}

.gc-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--gc-success);
  flex-shrink: 0;
}

/* ================================================
   Section Headers
   ================================================ */

.gc-home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gc-home-section-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--gc-text);
}

.gc-home-section-header h2 a {
  color: inherit;
  text-decoration: none;
}

.gc-home-section-header h2 a:hover {
  text-decoration: underline;
}

.gc-section-link {
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--gc-text);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.gc-section-link:hover {
  text-decoration: underline;
}

/* ================================================
   Beliebte Kategorien (Button Row)
   ================================================ */

.gc-categories-section {
  padding: 40px 0 0;
  background: #f2f2f2;
}

.gc-categories-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gc-cat-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-cat-btn {
  flex: 0 0 auto;
  min-width: 160px;
  background: #FFD600;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.gc-cat-btn:hover {
  background: #F0C800;
  color: #1a1a1a;
}

/* ================================================
   Category Merchant Cards
   ================================================ */

.gc-cat-merchants {
  background: #f2f2f2;
  padding: 0;
}

.gc-cat-merchants-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gc-cat-merchants-inner .gc-home-section-header {
  margin-bottom: 0;
}

.gc-cm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

.gc-cm-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.gc-cm-card:hover {
  transform: translateY(-3px);
}

.gc-cm-logo-area {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px;
  background: #fff;
}

.gc-cm-logo-area img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
}

.gc-cm-vip {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FFD600;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.gc-cm-body {
  padding: 14px 16px;
}

.gc-cm-merchant {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.gc-cm-deal {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 6px;
}

.gc-cm-excl-badge {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  line-height: 1.4;
}

.gc-cm-deal-text {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================
   Shop Slider
   ================================================ */

.gc-shop-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.gc-shop-slider-track {
  display: flex;
  gap: var(--space-6);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-3) 0;
}

.gc-shop-slider-track::-webkit-scrollbar {
  display: none;
}

.gc-shop-slide {
  flex: 0 0 140px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--gc-text);
  transition: transform 0.2s ease;
}

.gc-shop-slide:hover {
  transform: translateY(-2px);
}

.gc-shop-slide-logo {
  width: 140px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--radius);
  padding: var(--space-5);
  transition: box-shadow 0.2s ease;
}

.gc-shop-slide:hover .gc-shop-slide-logo {
  box-shadow: var(--shadow);
}

.gc-shop-slide-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gc-shop-slide-initial {
  font-size: 36px;
  font-weight: var(--font-bold);
  color: var(--gc-muted);
}

.gc-shop-slide-count {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--gc-muted);
  white-space: nowrap;
}

.gc-shop-slider-btn {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--gc-surface);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: var(--gc-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  z-index: 2;
}

.gc-shop-slider-btn:hover {
  background: var(--gc-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ================================================
   Category Section
   ================================================ */

.gc-home-category-section {
  background: var(--gc-surface);
}

/* ================================================
   Category Page: Voucher Columns
   ================================================ */

.gc-category-columns {
  padding: var(--space-9) 0;
}

.gc-category-columns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.gc-cat-column {
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gc-cat-column-title {
  margin: 0;
  padding: var(--space-6);
  font-size: 16px;
  font-weight: var(--font-bold);
  color: var(--gc-text);
  border-bottom: 1px solid var(--gc-border);
}

.gc-cat-column-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-cat-voucher-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: var(--space-5) var(--space-6);
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--gc-border);
  transition: background 0.15s ease;
}

.gc-cat-voucher-row:last-child {
  border-bottom: none;
}

.gc-cat-voucher-row:hover {
  background: var(--gc-bg-hover);
}

.gc-cat-voucher-logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gc-border);
  border-radius: var(--radius-md);
  background: var(--gc-surface);
  overflow: hidden;
}

.gc-cat-voucher-logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
}

.gc-cat-voucher-initial {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gc-border);
  border-radius: var(--radius-md);
  background: var(--gc-bg-alt);
  font-size: 22px;
  font-weight: var(--font-bold);
  color: var(--gc-muted);
}

.gc-cat-voucher-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gc-cat-voucher-merchant {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gc-success);
}

.gc-cat-voucher-title {
  font-size: 14px;
  font-weight: var(--font-normal);
  color: var(--gc-text);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gc-cat-column-more {
  display: block;
  padding: 14px var(--space-6);
  text-align: center;
  font-size: 14px;
  font-weight: var(--font-semibold);
  color: var(--gc-success);
  text-decoration: none;
  border-top: 1px solid var(--gc-border);
  transition: background 0.15s ease;
}

.gc-cat-column-more:hover {
  background: var(--gc-bg-success);
}

/* ==========================================================================
   Voucher Cards Component — Large Merchant Logo Grid
   ========================================================================== */

.gc-voucher-cards-section {
  margin-bottom: var(--space-9);
}

.gc-voucher-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.gc-voucher-card {
  display: flex;
  flex-direction: column;
  background: var(--gc-surface);
  border: 1px solid var(--gc-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gc-voucher-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.gc-voucher-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background: var(--gc-bg-card);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gc-voucher-card-logo img {
  max-height: 56px;
  max-width: 80%;
  object-fit: contain;
}

.gc-voucher-card-initial {
  font-size: 48px;
  font-weight: var(--font-bold);
  color: var(--gc-muted, #9ca3af);
  line-height: 1;
  text-transform: uppercase;
}

.gc-voucher-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-5);
}

.gc-voucher-card-merchant {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gc-muted, #9ca3af);
  margin-bottom: var(--space-1);
}

.gc-voucher-card-title {
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  color: var(--gc-text, #1f2937);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ================================================
   Exklusiv-Deals Banner (dark strip)
   ================================================ */

.gc-excl-banner {
  background: #1a1a1a;
  padding: 36px 0;
}

.gc-excl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.gc-excl-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-excl-badge-main {
  font-size: 11px;
  font-weight: 700;
  background: var(--gc-primary);
  color: #1a1a1a;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gc-excl-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gc-excl-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s;
}

.gc-excl-item:hover {
  border-color: var(--gc-primary);
}

.gc-excl-logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.gc-excl-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.gc-excl-info {
  flex: 1;
  min-width: 0;
}

.gc-excl-shop {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.gc-excl-deal-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gc-excl-cta {
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--gc-primary);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background 0.2s;
  text-decoration: none;
}

.gc-excl-cta:hover {
  background: var(--gc-primary-strong);
}

/* ================================================
   Partner-Logos (Logo Cloud)
   ================================================ */

.gc-partners-section {
  padding: 40px 0;
  text-align: center;
}

.gc-partners-title {
  font-size: 16px;
  font-weight: 600;
  color: #888;
  margin-bottom: 24px;
}

.gc-logo-cloud {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gc-logo-cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.gc-logo-cloud-item img {
  height: 36px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.gc-logo-cloud-item:hover img {
  opacity: 1;
}

/* ================================================
   Ratgeber + Newsletter
   ================================================ */

.gc-ratgeber-nl {
  padding: 40px 0;
  background: #fff;
}

.gc-ratgeber-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.gc-blog-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gc-blog-card-hz {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
  flex-direction: column;
}

.gc-blog-card-hz:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.gc-blog-img-hz {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.gc-blog-img-hz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-blog-body-hz {
  flex: 1;
  min-width: 0;
}

.gc-blog-cat-hz {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFB800;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.gc-blog-body-hz h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  line-height: 1.3;
}

.gc-blog-body-hz h3 a {
  color: inherit;
  text-decoration: none;
}

.gc-blog-body-hz h3 a:hover {
  text-decoration: underline;
}

.gc-blog-meta-hz {
  font-size: 12px;
  color: #999;
}

.gc-nl-sidebar {
  background: #f9f9f5;
  border-radius: 10px;
  padding: 28px 24px;
}

.gc-nl-sidebar h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}

.gc-nl-sidebar p {
  font-size: 14px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.5;
}

.gc-nl-form input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1.5px solid #e0e0e0;
  font-size: 14px;
  margin-bottom: 10px;
  background: #fff;
  font-family: inherit;
}

.gc-nl-form input::placeholder {
  color: #aaa;
}

.gc-nl-form input:focus {
  border-color: var(--gc-primary);
  outline: none;
}

.gc-nl-form button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  background: var(--gc-primary);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  font-family: inherit;
}

.gc-nl-form button:hover {
  background: var(--gc-primary-strong);
}

.gc-nl-disclaimer {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* --- ≥481px --- */
@media (min-width: 481px) {
  .gc-hero-slider-wrapper {
    padding: 20px 0 0;
  }

  .gc-hero-slider {
    height: 300px;
    border-radius: var(--radius-lg);
  }

  .gc-hero-slide-content {
    padding: 32px 36px;
  }

  .gc-hero-slide-title {
    font-size: clamp(24px, 3.5vw, 34px);
  }

  .gc-hero-slide-btn {
    padding: 12px 28px;
    font-size: 15px;
  }

  .gc-vc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gc-trust-items {
    flex-direction: row;
    gap: var(--space-4);
  }

  .gc-trust-item {
    font-size: var(--text-sm);
    padding: var(--space-3) 14px;
  }

  .gc-blog-card-hz {
    flex-direction: row;
  }

  .gc-blog-img-hz {
    width: 140px;
    height: 96px;
  }
}

/* --- ≥769px --- */
@media (min-width: 769px) {
  .gc-hero-slider {
    height: 300px;
  }

  .gc-trust-items {
    gap: var(--space-4);
  }

  .gc-trust-item {
    font-size: var(--text-sm);
    padding: var(--space-3) 14px;
  }

  .gc-cat-btn-row {
    overflow-x: visible;
  }

  .gc-cat-btn {
    flex: 1;
    min-width: 0;
  }

  .gc-cm-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gc-voucher-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gc-voucher-card-logo {
    height: 160px;
  }

  .gc-voucher-card-logo img {
    max-height: 100px;
  }

  .gc-voucher-card-body {
    padding: var(--space-6);
  }

  .gc-voucher-card-title {
    font-size: 14px;
  }

  .gc-logo-cloud {
    grid-template-columns: repeat(6, 1fr);
  }

  .gc-ratgeber-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* --- ≥1025px --- */
@media (min-width: 1025px) {
  .gc-hero-slider {
    height: 350px;
  }

  .gc-hero-slide-content {
    padding: 40px 48px;
  }

  .gc-hero-slide-btn {
    padding: 14px var(--space-9);
    font-size: 16px;
  }

  .gc-vc-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gc-trust-items {
    gap: var(--space-6);
  }

  .gc-trust-item {
    font-size: 14px;
    padding: var(--space-4) var(--space-7);
  }

  .gc-shop-slide {
    flex: 0 0 160px;
  }

  .gc-shop-slide-logo {
    width: 160px;
    height: 110px;
    padding: var(--space-6);
  }

  .gc-shop-slider-btn {
    display: flex;
  }

  .gc-category-columns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .gc-cat-column-title {
    padding: var(--space-7) var(--space-7) var(--space-6);
    font-size: 18px;
  }

  .gc-cat-voucher-row {
    padding: 14px var(--space-7);
  }

  .gc-cat-column-more {
    padding: var(--space-6) var(--space-7);
  }

  .gc-voucher-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-7);
  }

  .gc-excl-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .gc-logo-cloud {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* --- ≥1241px --- */
@media (min-width: 1241px) {
  .gc-voucher-cards-grid {
    gap: var(--space-7);
  }

  .gc-category-columns-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================
   Item 3: Code/Deal Farbcodierung
   ================================================ */

.gc-vc-card--code .gc-vc-discount,
.gc-vc-card--code .gc-vc-discount--short {
  background: #1a1a1a;
  color: #FFD600;
  box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.18);
}

.gc-vc-card--deal .gc-vc-discount,
.gc-vc-card--deal .gc-vc-discount--short {
  background: #F97316;
  color: #fff;
}

.gc-vc-type-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.gc-vc-card--code .gc-vc-type-label {
  background: #f0f0e8;
  color: #1a1a1a;
}

.gc-vc-card--deal .gc-vc-type-label {
  background: #FFF3E0;
  color: #E65100;
}

/* ================================================
   Item 4: Collapsible Category Sections
   ================================================ */

.gc-cat-collapsible .gc-cm-grid {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 0;
}

.gc-cat-collapsible.is-expanded .gc-cm-grid {
  max-height: 600px;
  margin-top: 20px;
}

.gc-cat-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gc-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  color: #666;
}

.gc-cat-toggle:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

.gc-cat-toggle svg {
  transition: transform 0.3s ease;
}

.gc-cat-collapsible.is-expanded .gc-cat-toggle svg {
  transform: rotate(180deg);
}

/* ================================================
   Item 5: Trust-Elemente Enhancement
   ================================================ */

.gc-vc-uses {
  color: #16a34a;
}

.gc-vc-expiry {
  color: #dc2626;
  font-weight: 600;
}

/* ================================================
   Item 6: Sidebar Layout
   ================================================ */

.gc-sidebar-area {
  padding: 40px 0 0;
}

.gc-homepage-layout {
  display: block;
}

.gc-homepage-main {
  min-width: 0;
}

.gc-vc-section--in-sidebar {
  padding: 0;
}

.gc-homepage-sidebar {
  display: none;
}

.gc-sidebar-widget {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.gc-sidebar-widget:last-child {
  margin-bottom: 0;
}

.gc-sidebar-widget h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.gc-sidebar-newsletter p {
  font-size: 13px;
  color: #666;
  margin: 0 0 16px;
  line-height: 1.5;
}

.gc-sidebar-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gc-sidebar-cat-list li {
  border-bottom: 1px solid #f0f0f0;
}

.gc-sidebar-cat-list li:last-child {
  border-bottom: none;
}

.gc-sidebar-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.gc-sidebar-cat-list a:hover {
  color: #F97316;
}

.gc-sidebar-cat-count {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.gc-sidebar-shop-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gc-sidebar-shop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.gc-sidebar-shop-item:hover {
  opacity: 0.8;
}

.gc-sidebar-shop-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.gc-sidebar-shop-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gc-sidebar-shop-logo span {
  font-size: 16px;
  font-weight: 700;
  color: #ccc;
}

.gc-sidebar-shop-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gc-sidebar-shop-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.gc-sidebar-shop-count {
  font-size: 12px;
  color: #999;
}

@media (min-width: 1025px) {
  .gc-homepage-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    align-items: start;
  }

  .gc-homepage-sidebar {
    display: block;
    position: sticky;
    top: 20px;
  }

  .gc-vc-section--in-sidebar .gc-vc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================================
   Item 7: Typography & Spacing
   ================================================ */

.gc-vc-section {
  padding: 32px 0 0;
}

.gc-categories-section {
  padding: 32px 0 0;
}

.gc-categories-inner {
  padding: 32px 20px;
}

.gc-cat-merchants-inner {
  padding: 32px 20px;
}

.gc-home-section-header {
  margin-bottom: 20px;
}

.gc-vc-shop {
  font-size: clamp(15px, 1.5vw, 18px);
}

.gc-vc-deal {
  font-size: clamp(13px, 1.2vw, 14px);
  margin-bottom: 12px;
}

.gc-vc-grid {
  gap: 14px;
  margin-bottom: 24px;
}

.gc-cm-grid {
  gap: 14px;
}

/* ================================================
   Homepage: Yoast FAQ → reuses gc-faq-* from merchant.css
   JS transforms .schema-faq into .gc-faq-grid > details.gc-faq-item
   ================================================ */

/* Hide raw Yoast markup before JS transforms it */
.gc-page-content .schema-faq-section {
  display: none;
}

/* Ensure the FAQ grid works inside page content */
.gc-page-content .gc-faq-grid {
  margin-top: var(--space-6);
  padding-bottom: var(--space-10);
}

/* SEO text + FAQ section: grey background like merchant page */
.gc-section-band:has(.gc-page-content) {
  background: var(--gc-bg);
  padding: var(--space-9) 0 var(--space-10);
}
