@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..700;1,400..700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   RINGSCHATZ - LUXURY GOLD THEME
   Premium Jewelry Store Design
   ========================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
  --gold-dark: #B8860B;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-pale: #FBF3DC;
  --gold-glow: rgba(212, 175, 55, 0.15);
  
  --bg-primary: #FFFDF7;
  --bg-secondary: #FFF9EE;
  --bg-card: #FFFFFF;
  --bg-dark: #1A1510;
  --bg-dark-card: #241E16;
  
  --text-primary: #1C1917;
  --text-secondary: #57534E;
  --text-muted: #A8A29E;
  --text-inverse: #FEFCE8;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-luxury: 0 20px 60px rgba(212, 175, 55, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  
  --transition-fast: 0.2s ease;
  --transition-mid: 0.35s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================
   PRELOADER - 3 Seconds
   ============================================ */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1A1510 0%, #2C2318 50%, #1A1510 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.preloader-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.25em;
  font-style: italic;
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-text {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   COOKIE CONSENT POPUP
   ============================================ */
.cookie-consent-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  padding: 1.8rem 2rem;
  z-index: 9999;
  display: none;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -10px 40px rgba(0,0,0,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: 280px;
  color: var(--text-inverse);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text-message strong {
  color: var(--gold-light);
  font-weight: 700;
}

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

.cookie-btn-accept,
.cookie-btn-reject {
  padding: 0.75rem 1.8rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.cookie-btn-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================
   COMMERCIAL DISCLOSURE BANNER
   ============================================ */
.disclosure-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.disclosure-strong {
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.brand-header {
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.header-inner-box {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.brand-image-logo {
  height: 2.8rem;
  width: auto;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.brand-name-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-anchor-link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-anchor-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-mid);
}

.nav-anchor-link:hover {
  color: var(--gold-dark);
}

.nav-anchor-link:hover::after {
  width: 100%;
}

.nav-anchor-link-active {
  color: var(--gold-dark) !important;
}

.nav-anchor-link-active::after {
  width: 100% !important;
}

.btn-header-cta {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 2px solid var(--gold);
  white-space: nowrap;
}

.btn-header-cta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.toggle-icon-bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.heading-primary {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 1.2rem 0;
  font-weight: 700;
}

.heading-secondary {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.heading-tertiary {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 0.8rem 0;
  font-weight: 600;
}

.heading-quaternary {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
}

.paragraph-large {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1.5rem 0;
}

.paragraph-default {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1rem 0;
}

.paragraph-small {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1rem 0;
}

.eyebrow-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  display: inline-block;
}

.gold-text {
  color: var(--gold-dark);
}

/* ============================================
   SECTION STRUCTURE
   ============================================ */
.section-wrapper {
  padding: 6rem 2rem;
}

.section-wrapper-light {
  background: var(--bg-secondary);
}

.section-wrapper-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

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

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

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

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

.heading-block-center .eyebrow-text {
  display: block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-mid);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-primary-luxury {
  background: var(--gold);
  color: var(--bg-dark);
  border-color: var(--gold);
}

.btn-primary-luxury:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-accent-luxury {
  background: var(--gold-dark);
  color: white;
  border-color: var(--gold-dark);
}

.btn-accent-luxury:hover {
  background: #8B6508;
  border-color: #8B6508;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-secondary-luxury {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-secondary-luxury:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-large-scale {
  padding: 1.1rem 2.8rem;
  font-size: 0.92rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-wrapper-block {
  padding: 5rem 2rem 6rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-wrapper-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

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

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

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
  color: var(--text-secondary);
}

.hero-bullet-icon {
  color: var(--gold);
  font-weight: 900;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

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

.hero-image-glass-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-gold);
  max-width: 480px;
  width: 100%;
  position: relative;
}

.hero-responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

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

/* ============================================
   COMPARISON TABLE
   ============================================ */
.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: 4.5rem;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-card-component {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

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

.comparison-card-featured {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  position: relative;
  box-shadow: var(--shadow-luxury);
}

.comparison-card-featured::before {
  content: 'EMPFEHLUNG';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.1em;
}

.comparison-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1.5px solid rgba(0,0,0,0.06);
  color: var(--text-primary);
}

.comparison-card-row-value {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.comparison-row-good {
  color: #16a34a;
  font-weight: 600;
}

.comparison-row-bad {
  color: #dc2626;
}

/* ============================================
   SPOTLIGHT / STORY SECTION
   ============================================ */
.spotlight-grid-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.spotlight-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-card);
}

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

.spotlight-metric-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  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: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: block;
}

.spotlight-metric-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 0.3rem;
  display: block;
}

/* ============================================
   STICKY SHOWCASE + OFFER CARD
   ============================================ */
.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: 3rem;
}

.story-panel-article {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}

.story-image-wrap {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.story-responsive-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-mid);
}

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

.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.9rem;
  line-height: 1.6;
  margin-bottom: 0.7rem;
  color: var(--text-secondary);
}

.story-highlights-item::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
  top: 3px;
}

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

.offer-lux-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-luxury);
  text-align: center;
}

.offer-lux-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.offer-image-box {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

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

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

.offer-headline-link:hover {
  color: var(--gold-dark);
}

.review-stars-indicators {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.offer-price-area {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  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: var(--text-muted);
}

.offer-current-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.offer-shipping-tag {
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
  display: block;
  margin-top: 0.2rem;
}

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

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

.offer-trust-info-item {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-trust-info-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

/* ============================================
   BREAKDOWN / PRODUCT DETAIL CARDS
   ============================================ */
.breakdown-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.breakdown-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
}

.breakdown-card-reverse {
  direction: rtl;
}

.breakdown-card-reverse > * {
  direction: ltr;
}

.breakdown-media-side {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

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

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

.breakdown-asins-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.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.9rem;
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
}

.breakdown-bullet-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  top: 1px;
}

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

.benefit-card-element {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid), border-color var(--transition-mid);
  text-align: center;
}

.benefit-card-element:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}

.benefit-icon-badge {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold-pale);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: bold;
  border: 2px solid var(--gold);
}

/* ============================================
   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: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  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: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

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

.review-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
  margin: 0 0 1.8rem 0;
}

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

.review-avatar-placeholder {
  width: 2.8rem;
  height: 2.8rem;
  background: var(--gold);
  color: var(--bg-dark);
  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: var(--text-primary);
}

.review-verify-label {
  font-size: 0.78rem;
  color: #16a34a;
  font-weight: 600;
}

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

.carousel-nav-btn {
  background: var(--bg-card);
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ============================================
   EDUCATIONAL TEASERS
   ============================================ */
.educational-teasers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.teaser-card-element {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}

.teaser-card-element:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

.teaser-responsive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-mid);
}

.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.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
  display: block;
}

.teaser-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.8rem 0;
  line-height: 1.3;
}

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

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

.faq-item-container {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item-container:hover,
.faq-item-open {
  border-color: var(--gold);
}

.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;
  font-family: 'Inter', sans-serif;
}

.faq-question-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-chevron-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

.faq-answer-inner-padding {
  padding: 0 1.8rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-answer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 1rem 0 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner-wrapper {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2C2318 100%);
  color: var(--text-inverse);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-banner-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--text-inverse);
  margin: 0 0 1.2rem 0;
  line-height: 1.2;
}

.cta-banner-tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ============================================
   FOOTER
   ============================================ */
.brand-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 5rem 2rem 2rem;
}

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

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

.footer-headline-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
}

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

.footer-column-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

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

.footer-anchor-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-anchor-link:hover {
  color: var(--gold);
}

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

.footer-disclosure-text {
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
  max-width: 900px;
  margin: 0 auto 1.2rem;
}

.footer-copyright-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   IMPRESSUM / INFO PAGES
   ============================================ */
.impressum-content-block {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
}

.impressum-content-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin: 2rem 0 1rem;
}

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

.impressum-content-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.impressum-content-block a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.impressum-content-block strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-meta-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--gold);
}

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

.contact-info-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.4rem;
}

.contact-info-val {
  font-size: 1.05rem;
  display: block;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   ARTICLE / RICH TEXT
   ============================================ */
.article-rich-text {
  margin-top: 2rem;
}

.article-rich-text h2 {
  margin-top: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.article-rich-text h2:first-child {
  margin-top: 0;
}

.article-rich-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin: 2rem 0 0.8rem;
}

.article-rich-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.article-rich-text ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.article-rich-text li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

/* ============================================
   GALLERY GRID FOR PRODUCT IMAGES
   ============================================ */
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.product-gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-luxury);
}

.product-gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .comparison-box-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .comparison-column-labels {
    display: none;
  }
  
  .comparison-label-item {
    display: none;
  }
  
  .comparison-card-row-value {
    height: auto;
    padding: 0.8rem 0;
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  
  .comparison-card-row-value::before {
    content: attr(data-label) ': ';
    font-weight: 700;
    color: var(--text-primary);
    display: inline;
    width: auto;
    margin-right: 0.5rem;
  }
  
  .comparison-card-featured::before {
    position: static;
    transform: none;
    display: inline-block;
    margin-bottom: 1rem;
  }
}

@media (max-width: 992px) {
  .layout-grid-two {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-text-area {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-bullet-point-list {
    text-align: left;
    display: inline-block;
  }
  
  .hero-actions-container {
    justify-content: center;
  }
  
  .sticky-showcase-grid-system {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sticky-offer-aside {
    position: static;
    margin-top: 2rem;
  }
  
  .breakdown-card-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .breakdown-card-reverse {
    direction: ltr;
  }
  
  .benefits-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .educational-teasers-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .spotlight-grid-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .carousel-card-body {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
  }
  
  .carousel-photo-responsive {
    height: 200px;
  }
  
  .review-quote-text {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .heading-primary {
    font-size: 2.4rem;
  }
  
  .heading-secondary {
    font-size: 1.8rem;
  }
  
  .section-wrapper {
    padding: 4rem 1.25rem;
  }
  
  .hero-wrapper-block {
    padding: 3rem 1.25rem 4rem;
  }
  
  .header-inner-box {
    padding: 1rem 1.25rem;
  }
  
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .nav-links-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 247, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-mid);
    z-index: 999;
  }
  
  .nav-links-menu.nav-links-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .hero-bullet-point-list {
    text-align: left;
  }
  
  .hero-actions-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions-container .btn-base {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .benefits-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .educational-teasers-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .cookie-content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text-message {
    min-width: 100%;
  }
  
  .cookie-buttons-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-reject {
    width: 100%;
  }
  
  .product-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .offer-lux-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-banner-headline {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .heading-primary {
    font-size: 2rem;
  }
  
  .heading-secondary {
    font-size: 1.5rem;
  }
  
  .section-wrapper {
    padding: 3rem 1rem;
  }
  
  .hero-wrapper-block {
    padding: 2rem 1rem 3rem;
  }
  
  .comparison-card-component {
    padding: 1.5rem;
  }
  
  .product-gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .offer-current-price {
    font-size: 2.2rem;
  }
  
  .btn-large-scale {
    padding: 1rem 2rem;
    font-size: 0.85rem;
  }
}
