﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400..700;1,400..700&family=Outfit:ital,wght@0,300..700;1,300..700&display=swap');

/* ==========================================
   KETTIQUE - LUXURY JEWELRY THEME
   Theme: Blau/TÃ¼rkis, Eleganz, Modern
   ========================================== */

.site-body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #FAFAFA;
  color: #1C1C1C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Preloader - 3 Sekunden */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(210, 30%, 6%) 0%, hsl(200, 40%, 12%) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-spinner {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(203, 161, 83, 0.15);
  border-top-color: #CBA153;
  border-radius: 50%;
  animation: preloader-spin 1s linear infinite;
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #CBA153;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-style: italic;
  animation: preloader-pulse 1.8s ease-in-out infinite;
}

@keyframes preloader-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes preloader-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Cookie Popup */
.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, hsl(210, 30%, 6%) 0%, hsl(200, 40%, 12%) 100%);
  padding: 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(203, 161, 83, 0.3);
}

.cookie-consent-popup.cookie-popup-show {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cookie-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text-message {
  flex: 1;
  min-width: 300px;
  color: #1C1C1C;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text-message strong {
  color: #CBA153;
}

.cookie-buttons-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept, .cookie-btn-reject {
  padding: 0.8rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background-color: #1C1C1C;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #CBA153;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: hsl(210, 20%, 80%);
  border: 1.5px solid hsl(210, 15%, 60%);
}

.cookie-btn-reject:hover {
  background-color: hsl(210, 15%, 90%);
  color: hsl(210, 30%, 20%);
}

/* Typography */
.text-serif {
  font-family: 'Playfair Display', serif;
}

.heading-primary {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.1;
  color: #B58E45;
  margin: 0 0 1.2rem 0;
}

.heading-secondary {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #CBA153;
  margin: 0 0 1rem 0;
}

.heading-tertiary {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #1C1C1C;
  margin: 0 0 0.8rem 0;
}

.heading-quaternary {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1C1C1C;
  margin: 0 0 0.5rem 0;
}

.paragraph-large {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #4A4A4A;
  margin: 0 0 1.5rem 0;
}

.paragraph-default {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5A5A5A;
  margin: 0 0 1.2rem 0;
}

.paragraph-small {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #777777;
  margin: 0 0 1rem 0;
}

.eyebrow-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #CBA153;
  margin-bottom: 0.8rem;
}

/* Structure */
.section-wrapper {
  padding: 5rem 1.5rem;
}

.section-wrapper-light {
  background-color: #F2F0E9;
}

.section-wrapper-dark {
  background: linear-gradient(135deg, #FAFAFA 0%, hsl(200, 40%, 15%) 100%);
  color: #1C1C1C;
}

.layout-container {
  max-width: 1200px;
  margin: 0 auto;
}

.layout-container-small {
  max-width: 800px;
  margin: 0 auto;
}

.layout-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.layout-grid-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.layout-grid-asymmetric {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.text-center {
  text-align: center;
}

.heading-block-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

/* Disclosure Bar */
.disclosure-bar {
  background-color: #FAFAFA;
  color: #333333;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  border-bottom: 1px solid hsla(198, 80%, 55%, 0.2);
}

.disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.disclosure-strong {
  color: #CBA153;
}

/* Header & Navigation */
.brand-header {
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(203, 161, 83, 0.15);
}

.header-inner-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-link-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-image-logo {
  height: 2.5rem;
  width: auto;
  border-radius: 50%;
  border: 2px solid #CBA153;
}

.brand-name-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #CBA153;
  letter-spacing: 0.05em;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item-list {
  display: inline-block;
}

.nav-anchor-link {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333333;
  transition: color 0.25s ease;
}

.nav-anchor-link:hover {
  color: #CBA153;
}

.nav-anchor-link-active {
  color: #CBA153;
  border-bottom: 2px solid #CBA153;
  padding-bottom: 0.2rem;
}

/* Buttons */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary-luxury {
  background-color: #1C1C1C;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(203, 161, 83, 0.3);
}

.btn-primary-luxury:hover {
  background-color: #CBA153;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(198, 80%, 55%, 0.4);
}

.btn-accent-luxury {
  background-color: hsl(280, 50%, 50%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px hsla(280, 50%, 50%, 0.3);
}

.btn-accent-luxury:hover {
  background-color: hsl(280, 55%, 60%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(280, 50%, 50%, 0.4);
}

.btn-secondary-luxury {
  background-color: transparent;
  color: #CBA153;
  border: 1.5px solid #CBA153;
}

.btn-secondary-luxury:hover {
  background-color: rgba(203, 161, 83, 0.1);
  color: hsl(198, 80%, 70%);
  transform: translateY(-2px);
}

.btn-large-scale {
  padding: 1.1rem 2.4rem;
  font-size: 0.95rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.toggle-icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #CBA153;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero */
.hero-wrapper-block {
  padding: 6rem 1.5rem;
  background: radial-gradient(circle at 20% 80%, #FFFFFF 0%, #FAFAFA 100%);
  overflow: hidden;
}

.hero-text-area {
  max-width: 580px;
}

.hero-bullet-point-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: #333333;
}

.hero-bullet-icon {
  color: #CBA153;
  font-weight: 900;
  font-size: 1.2rem;
}

.hero-actions-container {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero-image-holder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-glass-card {
  background: rgba(203, 161, 83, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(203, 161, 83, 0.3);
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 100%;
}

.hero-responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.hero-image-tag {
  margin-top: 1rem;
  text-align: center;
}

/* Comparison */
.comparison-lead-text {
  font-size: 1.05rem;
  color: #666666;
}

.comparison-box-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1.1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: stretch;
}

.comparison-column-labels {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
}

.comparison-label-item {
  height: 4rem;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #5A5A5A;
  border-bottom: 1px solid rgba(203, 161, 83, 0.1);
}

.comparison-card-component {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(203, 161, 83, 0.15);
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.comparison-card-component:hover {
  transform: translateY(-4px);
}

.comparison-card-featured {
  background: linear-gradient(135deg, hsl(210, 30%, 10%) 0%, #FFFFFF 100%);
  color: #1C1C1C;
  border: 2px solid #CBA153;
  position: relative;
  box-shadow: 0 15px 35px hsla(198, 80%, 55%, 0.2);
}

.comparison-card-featured::before {
  content: "EMPFOHLEN";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #CBA153;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.comparison-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgba(203, 161, 83, 0.15);
  color: #B58E45;
}

.comparison-card-row-value {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.4;
  color: #4A4A4A;
  border-bottom: 1px solid hsla(198, 80%, 55%, 0.08);
}

.comparison-card-featured .comparison-card-row-value {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.comparison-row-bold {
  font-weight: 600;
}

.comparison-row-good {
  color: hsl(145, 55%, 55%);
}

.comparison-card-featured .comparison-row-good {
  color: hsl(145, 65%, 70%);
}

.comparison-row-bad {
  color: hsl(0, 60%, 60%);
}

/* Spotlight */
.spotlight-grid-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.spotlight-info-card {
  background: linear-gradient(135deg, hsl(198, 80%, 12%) 0%, #FFFFFF 100%);
  color: #1C1C1C;
  border-radius: 12px;
  padding: 3rem;
  border-left: 5px solid #CBA153;
}

.spotlight-metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-top: 2rem;
}

.spotlight-metric-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.2rem;
}

.spotlight-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spotlight-metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #CBA153;
  display: block;
}

.spotlight-metric-desc {
  font-size: 0.9rem;
  color: #5A5A5A;
  margin-top: 0.3rem;
  display: block;
}

/* Sticky Showcase */
.sticky-showcase-grid-system {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.showcase-scroll-column {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.story-panel-article {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid rgba(203, 161, 83, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image-wrap {
  width: 100%;
  margin-bottom: 1.8rem;
  border-radius: 6px;
  overflow: hidden;
}

.story-responsive-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.story-panel-article:hover .story-responsive-image {
  transform: scale(1.05);
}

.story-highlights-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.story-highlights-item {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #5A5A5A;
}

.story-highlights-item::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #CBA153;
  font-size: 1.4rem;
  line-height: 1;
  top: -2px;
}

/* Sticky Offer */
.sticky-offer-aside {
  position: sticky;
  top: 6.5rem;
}

.offer-lux-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
  border-radius: 12px;
  border: 2px solid #CBA153;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 45px rgba(203, 161, 83, 0.15);
  text-align: center;
}

.offer-lux-badge {
  display: inline-block;
  background-color: #CBA153;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.offer-image-box {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1.5rem auto;
  border-radius: 8px;
  overflow: hidden;
}

.offer-responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

.offer-headline-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #CBA153;
  text-decoration: none;
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.offer-headline-link:hover {
  color: hsl(198, 80%, 75%);
}

.review-stars-indicators {
  font-size: 1.15rem;
  color: #CBA153;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.offer-price-area {
  margin: 1rem 0;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(203, 161, 83, 0.15);
  border-bottom: 1px solid rgba(203, 161, 83, 0.15);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.offer-original-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: hsl(210, 10%, 58%);
}

.offer-current-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #CBA153;
}

.offer-shipping-tag {
  font-size: 0.8rem;
  color: hsl(145, 55%, 55%);
  font-weight: 600;
  display: block;
  margin-top: 0.2rem;
}

.offer-buy-btn {
  width: 100%;
  box-sizing: border-box;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.offer-trust-info-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0 0;
  border-top: 1px solid rgba(203, 161, 83, 0.1);
  padding-top: 1.2rem;
  text-align: left;
}

.offer-trust-info-item {
  font-size: 0.82rem;
  color: #666666;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-trust-info-item::before {
  content: "\2713";
  color: hsl(145, 55%, 55%);
  font-weight: bold;
}

/* Breakdown */
.breakdown-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3.5rem;
}

.breakdown-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 3rem;
  border: 1px solid rgba(203, 161, 83, 0.1);
}

.breakdown-card-reverse {
  grid-template-columns: 1fr 1fr;
}

.breakdown-card-reverse .breakdown-media-side {
  order: 2;
}

.breakdown-media-side {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(203, 161, 83, 0.15);
}

.breakdown-responsive-image {
  width: 100%;
  height: auto;
  display: block;
}

.breakdown-content-side {
  max-width: 480px;
}

.breakdown-asins-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #5A5A5A;
  background-color: rgba(203, 161, 83, 0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}

.breakdown-bullet-points-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.breakdown-bullet-item {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: #5A5A5A;
}

.breakdown-bullet-item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #CBA153;
  font-weight: bold;
}

/* Benefits */
.benefits-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}

.benefit-card-element {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(203, 161, 83, 0.1);
  padding: 2.5rem 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.benefit-card-element:hover {
  transform: translateY(-4px);
  border-color: #CBA153;
}

.benefit-icon-badge {
  width: 3.2rem;
  height: 3.2rem;
  background-color: rgba(203, 161, 83, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #CBA153;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

/* Reviews Carousel */
.reviews-section-slider {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-viewport-shell {
  overflow: hidden;
  width: 100%;
}

.carousel-tracks-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide-element {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.carousel-card-body {
  background-color: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(203, 161, 83, 0.1);
  padding: 3rem;
  box-shadow: 0 10px 30px hsla(198, 80%, 55%, 0.05);
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}

.carousel-left-side {
  display: flex;
  flex-direction: column;
}

.carousel-right-side {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(203, 161, 83, 0.15);
}

.carousel-photo-responsive {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.review-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #1C1C1C;
  font-style: italic;
  margin: 0 0 1.8rem 0;
  position: relative;
}

.review-author-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.review-avatar-placeholder {
  width: 2.8rem;
  height: 2.8rem;
  background-color: #1C1C1C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.review-meta-details {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1C1C1C;
}

.review-verify-label {
  font-size: 0.78rem;
  color: hsl(145, 55%, 55%);
  font-weight: 600;
}

.carousel-navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.carousel-nav-btn {
  background-color: #FFFFFF;
  border: 1.5px solid #CBA153;
  color: #CBA153;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  transition: all 0.25s ease;
}

.carousel-nav-btn:hover {
  background-color: #CBA153;
  color: #FFFFFF;
}

/* Educational Teasers */
.educational-teasers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.teaser-card-element {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(203, 161, 83, 0.1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.teaser-image-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.teaser-responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.teaser-card-element:hover .teaser-responsive-image {
  transform: scale(1.05);
}

.teaser-content-box {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.teaser-tag-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #CBA153;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  display: block;
}

.teaser-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1C1C1C;
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

.teaser-card-button-anchor {
  margin-top: auto;
  font-size: 0.8rem;
  padding: 0.75rem 1.2rem;
}

/* FAQ */
.faq-accordion-group {
  max-width: 800px;
  margin: 3rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item-container {
  background-color: #FFFFFF;
  border: 1px solid rgba(203, 161, 83, 0.1);
  border-radius: 6px;
  overflow: hidden;
}

.faq-header-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1.8rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1C1C1C;
}

.faq-chevron-icon {
  font-size: 1.2rem;
  font-weight: bold;
  color: #CBA153;
  transition: transform 0.3s ease;
}

.faq-item-open .faq-chevron-icon {
  transform: rotate(180deg);
}

.faq-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-open .faq-panel-content {
  max-height: 300px;
}

.faq-answer-inner-padding {
  padding: 0 1.8rem 1.5rem 1.8rem;
  border-top: 1px solid hsla(198, 80%, 55%, 0.08);
}

.faq-answer-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5A5A5A;
  margin: 1rem 0 0 0;
}

/* Contact */
.contact-wrapper-form {
  background-color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(203, 161, 83, 0.1);
  padding: 3rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact_cell-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.contact-label-element {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #4A4A4A;
  letter-spacing: 0.05em;
}

.contact-input-element {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid hsla(198, 80%, 55%, 0.2);
  border-radius: 4px;
  background-color: #F2F0E9;
  color: #1C1C1C;
  transition: all 0.25s ease;
}

.contact-input-element:focus {
  outline: none;
  border-color: #CBA153;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px hsla(198, 80%, 55%, 0.2);
}

.contact-textarea-element {
  min-height: 150px;
  resize: vertical;
}

.contact-form-submit-btn {
  width: 100%;
}

.contact-meta-info-card {
  background: linear-gradient(135deg, hsl(198, 80%, 12%) 0%, #FFFFFF 100%);
  color: #1C1C1C;
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #CBA153;
  letter-spacing: 0.05em;
  display: block;
}

.contact-info-val {
  font-size: 1.05rem;
  margin-top: 0.3rem;
  display: block;
  color: #333333;
}

/* CTA Banner */
.cta-banner-wrapper {
  background: linear-gradient(135deg, hsl(198, 80%, 12%) 0%, #FFFFFF 100%);
  color: #1C1C1C;
  padding: 6rem 1.5rem;
  text-align: center;
  border-top: 2px solid #CBA153;
  border-bottom: 2px solid #CBA153;
}

.cta-banner-content-box {
  max-width: 750px;
  margin: 0 auto;
}

.cta-banner-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1C1C1C;
  margin: 0 0 1.2rem 0;
}

.cta-banner-tag {
  color: #CBA153;
  font-weight: 700;
}

/* Footer */
.brand-footer {
  background-color: hsl(210, 30%, 6%);
  color: #4A4A4A;
  padding: 5rem 1.5rem 2rem 1.5rem;
  border-top: 1px solid hsla(198, 80%, 55%, 0.2);
}

.footer-top-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand-logo-area {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo-image {
  height: 2.2rem;
  width: auto;
  align-self: flex-start;
}

.footer-headline-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #CBA153;
  font-weight: 700;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #CBA153;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-anchor-link {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-anchor-link:hover {
  color: #CBA153;
}

.footer-bottom-layout {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  text-align: center;
}

.footer-legal-bar-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.footer-disclosure-text {
  font-size: 0.76rem;
  line-height: 1.5;
  color: hsl(210, 10%, 58%);
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}

.footer-copyright-text {
  font-size: 0.78rem;
  color: hsl(210, 10%, 48%);
}

/* Impressum */
.impressum-content-block {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(203, 161, 83, 0.1);
}

.impressum-content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #CBA153;
  margin: 2rem 0 1rem 0;
}

.impressum-content-block h2:first-child {
  margin-top: 0;
}

.impressum-content-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5A5A5A;
  margin: 0 0 1rem 0;
}

.impressum-content-block a {
  color: #CBA153;
  text-decoration: underline;
}

/* Article Rich Text */
.article-rich-text {
  margin-top: 2rem;
}

.article-rich-text h2 {
  margin-top: 2.5rem;
}

/* Responsive */
@media (max-width: 992px) {
  .layout-grid-two {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sticky-showcase-grid-system {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .sticky-offer-aside {
    position: static;
    margin-top: 2rem;
  }

  .breakdown-card-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .breakdown-card-reverse .breakdown-media-side {
    order: 0;
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-wrapper-block .layout-grid-two {
    display: flex;
    flex-direction: column-reverse;
  }

  .heading-primary {
    font-size: 2.2rem;
  }

  .heading-secondary {
    font-size: 1.8rem;
  }

  .brand-header {
    padding: 0.5rem 0;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-links-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #FAFAFA;
    flex-direction: column;
    padding: 2rem 0;
    gap: 1.5rem;
    border-bottom: 2px solid hsla(198, 80%, 55%, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

  .nav-links-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-actions-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .comparison-box-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .comparison-column-labels {
    display: none;
  }

  .comparison-label-item {
    display: none;
  }

  .comparison-card-component {
    padding: 1.5rem;
  }

  .comparison-card-row-value {
    height: auto;
    padding: 0.8rem 0;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(203, 161, 83, 0.1);
  }

  .comparison-card-row-value::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    display: inline-block;
    width: 120px;
    color: #4A4A4A;
  }

  .educational-teasers-grid {
    grid-template-columns: 1fr;
  }

  .benefits-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .carousel-card-body {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }

  .carousel-photo-responsive {
    height: 180px;
  }

  .review-quote-text {
    font-size: 1.1rem;
  }

  .cookie-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text-message {
    min-width: 100%;
  }

  .cookie-consent-popup {
    padding: 1.5rem 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .cookie-buttons-group {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn-accept,
  .cookie-btn-reject {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .heading-primary {
    font-size: 1.8rem;
  }

  .heading-secondary {
    font-size: 1.5rem;
  }

  .section-wrapper {
    padding: 3rem 1rem;
  }

  .hero-wrapper-block {
    padding: 3rem 1rem;
  }

  .offer-lux-card {
    padding: 1.5rem 1rem;
  }

  .hero-bullet-item {
    font-size: 0.95rem;
  }

  .btn-large-scale {
    padding: 1rem 1.8rem;
    font-size: 0.85rem;
  }
}
