.elementor-kit-6{--e-global-color-primary:#A974CF;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#350E51;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:var( --e-global-color-primary );font-family:"Inter", Sans-serif;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* ============================================================
   BUY ON BALTIC — Global CSS
   Background: #A974CF (set in Elementor Site Settings)
   All sections use transparent bg to inherit the purple
   ============================================================ */

/* ---------- Imports ---------- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --purple:       #A974CF;
  --purple-dark:  #7B3FA8;
  --purple-deeper:#4A1A70;
  --white:        #FFFFFF;
  --off-white:    #F5F0FA;
  --black:        #1A1A1A;
  --green:        #2E8B3A;
  --text-light:   rgba(255,255,255,0.85);
  --text-muted:   rgba(255,255,255,0.6);

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:       4px;
  --radius-lg:    12px;
  --max-width:    1100px;
  --section-pad:  80px 24px;
}

/* ---------- Base Reset ---------- */
.bob-wrap *,
.bob-wrap *::before,
.bob-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.bob-wrap {
  font-family: var(--font-body);
  color: var(--white);
  background: transparent;
  -webkit-font-smoothing: antialiased;
}

.bob-wrap img { max-width: 100%; display: block; }
.bob-wrap a   { color: inherit; text-decoration: none; }

/* ---------- Container ---------- */
.bob-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
.bob-display {
  font-family: var(--font-display);
  /* TWEAK 1: bolder/heavier weight on all display titles */
  -webkit-text-stroke: 1.5px currentColor;
  letter-spacing: 0.04em;
  line-height: 1;
}

.bob-serif {
  font-family: var(--font-serif);
}

.bob-section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

/* =============================================================
   TWEAK 4: ALL body paragraph text = black
   Inline colour styles have been stripped from every <p> tag
   in the HTML files so this rule is the single source of truth.
   Exceptions below use !important to stand firm.
   ============================================================= */
.bob-wrap p {
  color: #1A1A1A;
}

/* Display numbers inside <p> (hook strip stats) — stay white */
.bob-wrap p.bob-display {
  color: #ffffff !important;
}

/* Quote paragraphs — stay light, they sit on a dark panel */
.bob-quote p {
  color: var(--off-white) !important;
}

/* Helper classes for the rare <p> that genuinely needs white */
.bob-text-white {
  color: #ffffff !important;
}
.bob-text-muted {
  color: rgba(255,255,255,0.65) !important;
}

/* ---------- Buttons ---------- */
.bob-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.bob-btn-primary {
  background: var(--purple-deeper);
  color: var(--white);
  border-color: var(--purple-deeper);
}
.bob-btn-primary:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
}

.bob-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.bob-btn-outline:hover {
  background: var(--white);
  color: var(--purple-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.bob-btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.bob-btn-green:hover {
  background: #1f6b2a;
  border-color: #1f6b2a;
  transform: translateY(-2px);
}

/* ---------- Divider ---------- */
.bob-divider {
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  margin: 24px 0;
}
.bob-divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Card / Panel ---------- */
.bob-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(6px);
}

/* ---------- Quote Block ---------- */
.bob-quote {
  border-left: 4px solid rgba(255,255,255,0.4);
  padding: 20px 28px;
  margin: 32px 0;
  background: rgba(255,255,255,0.08);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.bob-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  color: var(--off-white) !important;
}
.bob-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

/* ---------- Section Padding ---------- */
.bob-section {
  padding: var(--section-pad);
}
.bob-section-sm {
  padding: 48px 24px;
}

/* ---------- Grid Helpers ---------- */
.bob-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bob-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

/* ---------- Book Cover Image ---------- */
.bob-book-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
  transition: transform 0.4s ease;
}
.bob-book-img:hover {
  transform: translateY(-8px) rotate(-1deg);
}

/* ---------- Mistake Number Badge ---------- */
.bob-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  :root { --section-pad: 56px 20px; }

  .bob-grid-2,
  .bob-grid-3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bob-card { padding: 28px 20px; }
}/* End custom CSS */