/* ==========================================================================
   FLIESEN STELZER – COMPONENTS (Editor Classes)
   ========================================================================== */

/* --- Custom Info Box / Card --- */
.custom-card {
  background-color: #f8f9fa;
  border-left: 4px solid var(--color-primary-dark);
  border-radius: var(--border-radius-small);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flow-root;
}

.custom-card.accent {
  border-left-color: var(--color-accent-gold);
  background-color: #fdfcf7;
}

.custom-card h3, .custom-card h4 {
  margin-top: 0;
}

/* --- Premium Action Button --- */
.premium-btn {
  display: inline-block;
  background-color: var(--color-primary-dark);
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--border-radius-small);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.premium-btn:hover, .premium-btn:focus {
  background-color: var(--color-accent-gold);
  color: var(--color-primary-dark);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
  text-decoration: none;
  transform: translateY(-2px);
}

/* --- Section Titles with Accent Line --- */
.section-title {
  position: relative;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-accent-gold);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* --- Premium Checkmark List --- */
.premium-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.75rem;
}

.premium-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
  font-weight: 500;
}

.premium-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-success);
  font-weight: 800;
  font-size: 1.15rem;
}

/* --- Call-To-Action (CTA) Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-secondary-dark) 100%);
  color: #ffffff;
  padding: 2.75rem 2.25rem;
  border-radius: var(--border-radius-medium);
  border-bottom: 4px solid var(--color-accent-gold);
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
  box-shadow: var(--box-shadow-hover);
}

.cta-banner h1, .cta-banner h2, .cta-banner h3, .cta-banner h4 {
  color: var(--color-accent-gold);
  margin-top: 0;
}

.cta-banner p {
  color: #e2e8f0;
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
