:root {
  /* Color Palette - LIGHT Theme */
  --ct-bg-base: #F8FAFC;       /* Off-white light background */
  --ct-bg-panel: #FFFFFF;      /* Clean card interior */
  --ct-accent-core: #DC2626;   /* Vibrant active crimson red */
  --ct-accent-deep: #B91C1C;   /* Deep red hover state */
  --ct-accent-light: #FEF2F2;  /* Soft red tint for badges and icons */
  --ct-ink-main: #0F172A;      /* Rich dark slate text color */
  --ct-ink-muted: #475569;     /* Legible secondary text color */
  --ct-line: #E2E8F0;          /* Soft border divider */
  
  /* Typography Configuration */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  /* Geometry & Layout Properties */
  --ct-container-max: 1180px;
  --ct-radius: 16px;           /* Soft border-radius styling */
  --ct-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03); /* Raised shadow depth */
}

/* Custom Typographic Adjustments */
.ct-heading-style {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Specific Price Display Styling (Badge mode) */
.ct-price-badge {
  background-color: var(--ct-accent-core);
  color: #FFFFFF;
  padding: 0.5rem 1.75rem;
  border-radius: var(--ct-radius);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
  letter-spacing: 0.05em;
}

/* Desktop-specific Sticky Visual Rule for Preset A */
@media (min-width: 768px) {
  .ct-sticky-visual {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }
}

/* Custom Base Overwrites & Reset Essentials */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom sizing unit for disclaimer */
.text-xxs {
  font-size: 0.7rem;
  line-height: 1.4;
}
.text-xxs p {
  margin-bottom: 0.4rem;
}