/* =========================================================
   BACK ON THE ICE – main.css
   Bootstrap 5 override + custom theme styles
   ========================================================= */

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --boti-blue:       #0284C7;
  --boti-blue-light: #60A5FA;
  --boti-blue-dark:  #084A9E;
  --boti-blue-pale:  #DBEAFE;
  --boti-dark:       #1F2937;
  --boti-gray:       #6B7280;
  --boti-gray-mid:   #374151;
  --boti-bg:         #0A0F1A;
  --boti-surface:    #111827;
  --boti-surface-2:  #1a2235;
  --boti-border:     rgba(255,255,255,0.08);
  --boti-text:       #F9FAFB;
  --boti-text-muted: #9CA3AF;
  --boti-radius:     12px;
  --boti-radius-lg:  20px;
  --boti-shadow:     0 4px 32px rgba(2,132,199,0.08);
  --boti-transition: 0.3s cubic-bezier(.4,0,.2,1);
  --boti-font:       'Inter', system-ui, -apple-system, sans-serif;
}

/* ── BASE ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--boti-font);
  background-color: var(--boti-bg);
  color: var(--boti-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--boti-blue-light); text-decoration: none; transition: color var(--boti-transition); }
a:hover { color: #fff; }

img { max-width: 100%; height: auto; display: block; }

.bg-subtle { background-color: var(--boti-surface) !important; }

.section-padding { padding: 100px 0; }
@media (max-width: 768px) { .section-padding { padding: 64px 0; } }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.boti-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--boti-blue-light);
  margin-bottom: 0.75rem;
}

.boti-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.boti-section-desc {
  font-size: 1.05rem;
  color: var(--boti-text-muted);
  max-width: 600px;
}

/* Statystyki – opis wycentrowany i pełna szerokość sekcji */
.boti-stats-section .boti-section-desc {
  max-width: 100%;
  text-align: center;
}

.boti-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--boti-blue-light);
}

/* ── BUTTONS ─────────────────────────────────────────── */
.boti-btn-primary {
  background: var(--boti-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all var(--boti-transition);
}
.boti-btn-primary:hover {
  background: var(--boti-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,132,199,0.35);
}

.boti-btn-ghost {
  background: transparent;
  color: var(--boti-text);
  border: 1.5px solid var(--boti-border);
  border-radius: 50px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--boti-transition);
}
.boti-btn-ghost:hover {
  border-color: var(--boti-blue-light);
  color: var(--boti-blue-light);
  transform: translateY(-2px);
}

.boti-btn-outline {
  background: transparent;
  color: var(--boti-blue-light);
  border: 1.5px solid var(--boti-blue);
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--boti-transition);
}
.boti-btn-outline:hover {
  background: var(--boti-blue);
  color: #fff;
  transform: translateY(-2px);
}

.boti-btn-nav {
  background: var(--boti-blue);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--boti-transition);
}
.boti-btn-nav:hover {
  background: var(--boti-blue-dark);
  transform: translateY(-1px);
}

/* ── FORM / INPUT ────────────────────────────────────── */
.boti-input {
  background: var(--boti-surface-2) !important;
  border: 1.5px solid var(--boti-border) !important;
  color: var(--boti-text) !important;
  border-radius: 50px !important;
  padding: 0.7rem 1.4rem !important;
  transition: border-color var(--boti-transition);
}
.boti-input:focus {
  border-color: var(--boti-blue) !important;
  box-shadow: 0 0 0 3px rgba(2,132,199,0.15) !important;
  outline: none;
}
.boti-input::placeholder { color: var(--boti-text-muted) !important; }

/* ── BADGE ───────────────────────────────────────────── */
.boti-badge {
  display: inline-block;
  background: rgba(2,132,199,0.15);
  color: var(--boti-blue-light);
  border: 1px solid rgba(2,132,199,0.25);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.75rem;
  transition: background var(--boti-transition);
  /* Szerokość wyłącznie tyle ile tekst – nigdy full-width */
  width: fit-content;
  max-width: 100%;
}
.boti-badge:hover { background: rgba(2,132,199,0.25); color: var(--boti-blue-light); }

/* ── HEADER / NAV ────────────────────────────────────── */
.boti-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--boti-transition), box-shadow var(--boti-transition);
}

#mainNav {
  padding: 1.2rem 0;
  background: transparent;
  transition: all var(--boti-transition);
}

#mainNav.scrolled {
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: 0 1px 0 var(--boti-border);
}

/* Logo */
.navbar-brand { padding: 0; }
.boti-logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.15;
  text-transform: uppercase;
}
.boti-logo-sub {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--boti-blue-light);
}
/* Szerokość loga kontrolowana przez customizer (inline style w <head>) */
.custom-logo {
  width: auto;
  height: auto;
  display: block;
}

/* Gdy logo jest większe navbar wyrównuje dzieci do środka pionowo */
#mainNav .container {
  align-items: center;
}
#mainNav .navbar-collapse {
  align-items: center;
}

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  transition: color var(--boti-transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: #fff !important; }

/* Dropdown */
.dropdown-menu {
  background: var(--boti-surface-2);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 0.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.dropdown-item {
  color: var(--boti-text-muted);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all var(--boti-transition);
}
.dropdown-item:hover { background: rgba(2,132,199,0.1); color: #fff; }

/* Hamburger */
.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; }
.boti-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.boti-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* Search button */
.boti-btn-search {
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: none;
  padding: 0.45rem;
  font-size: 1rem;
  transition: color var(--boti-transition);
}
.boti-btn-search:hover { color: #fff; }

/* Search bar */
.boti-search-bar {
  background: rgba(10,15,26,0.95);
  border-top: 1px solid var(--boti-border);
}

/* Search form */
.search-form { display: flex; gap: 0.5rem; }
.search-field {
  flex: 1;
  background: var(--boti-surface-2);
  border: 1.5px solid var(--boti-border);
  color: var(--boti-text);
  border-radius: 50px;
  padding: 0.6rem 1.2rem;
  font-family: var(--boti-font);
  transition: border-color var(--boti-transition);
}
.search-field:focus { border-color: var(--boti-blue); outline: none; }
.search-submit {
  background: var(--boti-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--boti-transition);
}
.search-submit:hover { background: var(--boti-blue-dark); }

/* ── HERO ────────────────────────────────────────────── */
.boti-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--boti-bg);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(2,132,199,0.12), transparent);
  overflow: hidden;
}

/* If background image is set */
.boti-hero[style*="background-image"] {
  background-size: cover;
  background-position: center;
}

.boti-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.7) 60%, rgba(2,132,199,0.08) 100%);
}

.boti-hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 1.5rem;
}

.boti-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--boti-text-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* Ice crystal decoration */
.boti-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,132,199,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Scroll hint */
.boti-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.boti-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ── STATS ───────────────────────────────────────────── */
.boti-stat-card {
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--boti-transition);
  position: relative;
  overflow: hidden;
}
.boti-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--boti-blue), var(--boti-blue-light));
  opacity: 0;
  transition: opacity var(--boti-transition);
}
.boti-stat-card:hover { border-color: rgba(2,132,199,0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(2,132,199,0.1); }
.boti-stat-card:hover::before { opacity: 1; }

/* ALERT STATE */
.boti-stat-card--alert { border-color: rgba(248,113,113,0.2); }
.boti-stat-card--alert::before { background: linear-gradient(90deg,#ef4444,#f87171); opacity:1; }
.boti-stat-card--alert .boti-stat-icon { color: #f87171; }
.boti-stat-card--alert:hover { border-color: rgba(248,113,113,0.4); box-shadow: 0 16px 48px rgba(239,68,68,0.1); }

/* OK STATE – cel osiągnięty */
.boti-stat-card--ok { border-color: rgba(52,211,153,0.15); }
.boti-stat-card--ok::before { background: linear-gradient(90deg,#10b981,#34d399); opacity:1; }
.boti-stat-card--ok .boti-stat-icon { color: #34d399; }
.boti-stat-card--ok:hover { border-color: rgba(52,211,153,0.35); box-shadow: 0 16px 48px rgba(16,185,129,0.1); }

/* Globalne domyślne rozmiary elementów kart */
.boti-stat-icon  { font-size: 2rem; color: var(--boti-blue-light); margin-bottom: 1rem; display: block; }
.boti-stat-value { font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.boti-stat-unit  { font-size: 0.8rem; font-weight: 500; color: var(--boti-blue-light); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.08em; }
.boti-stat-label { font-size: 0.95rem; font-weight: 600; color: var(--boti-text); margin-top: 0.75rem; }
.boti-stat-desc  { font-size: 0.78rem; color: var(--boti-text-muted); margin-top: 0.25rem; }

/* 6-card layout – kompaktowe rozmiary */
.boti-stats-section .boti-stat-card { padding: 1.5rem 1rem; }
.boti-stats-section .boti-stat-icon  { font-size: 1.75rem; margin-bottom: 0.75rem; }
.boti-stats-section .boti-stat-value { font-size: 2.4rem; }
.boti-stats-section .boti-stat-label { font-size: 0.82rem; margin-top: 0.6rem; }
.boti-stats-section .boti-stat-desc  { font-size: 0.7rem; margin-top: 0.2rem; }
@media (max-width: 575px) {
  .boti-stats-section .boti-stat-card  { padding: 1rem .75rem; }
  .boti-stats-section .boti-stat-value { font-size: 1.8rem; }
  .boti-stats-section .boti-stat-icon  { font-size: 1.35rem; margin-bottom: .5rem; }
  .boti-stats-section .boti-stat-label { font-size: .75rem; }
}

/* Progress strip */
.boti-progress-strip {
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 1.5rem 2rem;
}
.boti-progress-label { font-size: 0.85rem; font-weight: 600; color: var(--boti-text-muted); }
.boti-progress-bar-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
}
.boti-progress-fill {
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--boti-blue), var(--boti-blue-light));
  border-radius: 50px;
  transition: width 1.5s cubic-bezier(.4,0,.2,1) 0.3s;
}
.boti-progress-pct {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--boti-blue-light);
}
.boti-progress-link {
  display: flex;
  justify-content: center;
  padding-top: 1.1rem;
  margin-top: 1.1rem;
  border-top: 1px solid var(--boti-border);
}
.boti-progress-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--boti-blue-light);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--boti-transition), gap var(--boti-transition);
}
.boti-progress-link a:hover {
  color: #fff;
  gap: 0.6rem;
}

/* ── TIKTOK ──────────────────────────────────────────── */
.boti-tiktok-embed-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Ramka glow wokół embeda TikTok */
.boti-tiktok-embed-wrap blockquote,
.boti-tiktok-embed-wrap iframe {
  border-radius: 16px !important;
  box-shadow:
    0 0 0 1px rgba(2,132,199,0.35),
    0 0 32px rgba(2,132,199,0.2),
    0 0 80px rgba(2,132,199,0.1),
    0 20px 60px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s ease;
}
.boti-tiktok-embed-wrap blockquote:hover,
.boti-tiktok-embed-wrap iframe:hover {
  box-shadow:
    0 0 0 1px rgba(2,132,199,0.5),
    0 0 48px rgba(2,132,199,0.28),
    0 0 100px rgba(2,132,199,0.14),
    0 24px 70px rgba(0,0,0,0.55);
}

/* Zewnętrzny wrapper z dekoracyjnym glow ring */
.boti-tiktok-glow-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}
.boti-tiktok-glow-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(2,132,199,0.18) 0%,
    rgba(8,74,158,0.1) 50%,
    transparent 75%
  );
  pointer-events: none;
  z-index: 0;
}
.boti-tiktok-glow-wrap > * { position: relative; z-index: 1; }
.boti-tiktok-placeholder {
  background: var(--boti-surface);
  border: 1px dashed var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* ── BLOG CARDS ──────────────────────────────────────── */
.boti-blog-card {
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  overflow: hidden;
  transition: all var(--boti-transition);
  display: flex;
  flex-direction: column;
}
.boti-blog-card:hover {
  border-color: rgba(2,132,199,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.boti-blog-card__img { overflow: hidden; aspect-ratio: 16/9; }
.boti-blog-card--featured .boti-blog-card__img { aspect-ratio: 16/8; }
.boti-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.boti-blog-card:hover .boti-blog-card__img img { transform: scale(1.04); }

.boti-blog-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.boti-blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.boti-blog-card--featured .boti-blog-card__title { font-size: 1.6rem; }
.boti-blog-card__title a { color: #fff; }
.boti-blog-card__title a:hover { color: var(--boti-blue-light); }

.boti-blog-card__excerpt {
  color: var(--boti-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

/* Małe karty boczne – mniejszy font excerpta */
.boti-blog-card--small .boti-blog-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.boti-blog-card--small .boti-blog-card__title { font-size: 0.95rem; }
.boti-blog-card--small .boti-blog-card__body  { padding: 1.1rem 1.25rem; }

.boti-blog-card__meta {
  display: flex;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: var(--boti-text-muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--boti-border);
}

/* ── NEWSLETTER HERO (FULL WIDTH, GRANATOWE TŁO) ─────── */
.boti-newsletter-hero {
  position: relative;
  padding: 120px 0;
  background-color: #060e2b;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(8,74,158,0.6),  transparent),
    radial-gradient(ellipse 50% 80% at 0%   50%,  rgba(2,132,199,0.15), transparent),
    radial-gradient(ellipse 50% 80% at 100% 50%,  rgba(8,74,158,0.15), transparent),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(2,30,90,0.8),   transparent);
  overflow: hidden;
}

.boti-newsletter-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,15,26,0.3) 0%, transparent 40%, rgba(10,15,26,0.3) 100%);
  pointer-events: none;
}

/* Ice crystal decorations */
.boti-nl-deco {
  position: absolute;
  color: rgba(96,165,250,0.07);
  pointer-events: none;
  line-height: 1;
}
.boti-nl-deco--1 { font-size: 320px; top: -80px; left: -60px; transform: rotate(-15deg); }
.boti-nl-deco--2 { font-size: 200px; bottom: -40px; right: -20px; transform: rotate(20deg); }
.boti-nl-deco--3 { font-size: 120px; top: 30%; right: 8%; opacity: .5; }

.boti-newsletter-hero__title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.boti-newsletter-hero__desc {
  font-size: 1.1rem;
  color: var(--boti-text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats row */
.boti-nl-stats { margin-bottom: 2.5rem; }
.boti-nl-stat__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--boti-blue-light);
  line-height: 1;
}
.boti-nl-stat__lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--boti-text-muted);
  margin-top: 0.25rem;
}
.boti-nl-stat-divider {
  width: 1px;
  background: var(--boti-border);
  align-self: stretch;
}

/* Input field – full-width pill */
.boti-newsletter-hero__form { width: 100%; max-width: 520px; margin: 0 auto; }
.boti-newsletter-hero__input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  padding: 6px 6px 6px 20px;
  transition: border-color 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(8px);
}
.boti-newsletter-hero__input-wrap:focus-within {
  border-color: var(--boti-blue);
  box-shadow: 0 0 0 4px rgba(2,132,199,0.18), 0 8px 40px rgba(2,132,199,0.12);
}
.boti-newsletter-hero__input-icon {
  color: var(--boti-blue-light);
  font-size: 1rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}
.boti-newsletter-hero__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--boti-font);
  font-size: 0.95rem;
  min-width: 0;
}
.boti-newsletter-hero__input::placeholder { color: var(--boti-text-muted); }
.boti-newsletter-hero__btn {
  flex-shrink: 0;
  background: var(--boti-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.6rem;
  font-family: var(--boti-font);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.boti-newsletter-hero__btn:hover {
  background: var(--boti-blue-dark);
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(2,132,199,0.35);
}
.boti-newsletter-hero__fine {
  font-size: 0.78rem;
  color: var(--boti-text-muted);
  margin-top: 1.25rem;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .boti-newsletter-hero { padding: 100px 0; }
  .boti-newsletter-hero__input-wrap { flex-direction: column; border-radius: 16px; padding: 12px; gap: 10px; }
  .boti-newsletter-hero__input { text-align: center; }
  .boti-newsletter-hero__input-icon { display: none; }
  .boti-newsletter-hero__btn { width: 100%; justify-content: center; border-radius: 10px; }
  .boti-nl-deco--1 { font-size: 180px; }
  .boti-nl-deco--2 { font-size: 120px; }
}

/* ── APPLE HEALTH PLUGIN – DARK THEME OVERRIDE ───────── */

/* Wrapper bazowy dla wszystkich widgetów wtyczki */
.boti-health-widget {
  font-family: var(--boti-font) !important;
  color: var(--boti-text) !important;
}

/* Kółka/karty statystyk (render_h_circles) */
.boti-health-widget .h-circles-wrap {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
}

.boti-health-widget .h-stat-card {
  flex: 1;
  min-width: 130px;
  text-align: center;
  background: var(--boti-surface) !important;
  padding: 24px 16px;
  border-radius: var(--boti-radius-lg) !important;
  border: 1px solid var(--boti-border) !important;
  border-top: 3px solid var(--boti-blue) !important;
  box-shadow: none !important;
  transition: all var(--boti-transition);
  position: relative;
  overflow: hidden;
}

.boti-health-widget .h-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(2,132,199,0.05), transparent);
}

.boti-health-widget .h-stat-card:hover {
  border-color: rgba(2,132,199,0.35) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(2,132,199,0.1) !important;
}

/* Alert – kolor czerwony (HR≥140, Waga≥92 itd.) */
.boti-health-widget .h-stat-card--alert {
  border-top-color: #ef4444 !important;
}
.boti-health-widget .h-stat-card--alert .h-stat-val { color: #ef4444 !important; }
.boti-health-widget .h-stat-card--alert::before {
  background: radial-gradient(ellipse at top, rgba(239,68,68,0.06), transparent) !important;
}

/* OK – kolor zielony */
.boti-health-widget .h-stat-card--ok {
  border-top-color: #22c55e !important;
}
.boti-health-widget .h-stat-card--ok .h-stat-val { color: #22c55e !important; }

/* Wartość liczbowa */
.boti-health-widget .h-stat-val {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff !important;
}

.boti-health-widget .h-stat-unit {
  font-size: 0.72rem !important;
  font-weight: 500;
  color: var(--boti-blue-light) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.boti-health-widget .h-stat-label {
  font-size: 0.78rem !important;
  font-weight: 600;
  color: var(--boti-text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 10px;
}

/* Tabela historyczna (all_health) */
.boti-health-widget table {
  background: var(--boti-surface) !important;
  border: 1px solid var(--boti-border) !important;
  border-radius: var(--boti-radius) !important;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse !important;
  font-size: 0.88rem !important;
}

.boti-health-widget thead tr {
  background: var(--boti-surface-2) !important;
  border-bottom: 1px solid var(--boti-border) !important;
}

.boti-health-widget th {
  padding: 12px 14px !important;
  color: var(--boti-text-muted) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  text-align: left !important;
}

.boti-health-widget td {
  padding: 10px 14px !important;
  color: var(--boti-text) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

.boti-health-widget tbody tr:hover { background: rgba(255,255,255,0.02) !important; }
.boti-health-widget tbody tr:last-child td { border-bottom: none !important; }

/* Wartość tętna – alert */
.boti-health-widget .h-hr-alert { color: #ef4444 !important; font-weight: 700 !important; }
/* Cardio – kolor pozytywny */
.boti-health-widget .h-cf-val { color: #22c55e !important; font-weight: 600 !important; }
/* Numer tygodnia */
.boti-health-widget .h-week-num { color: var(--boti-text-muted) !important; }
.boti-health-widget .h-week-yr { font-size: 0.7rem !important; color: rgba(255,255,255,0.2) !important; }

/* Formularz newslettera wtyczki (health_newsletter shortcode) */
.boti-health-widget form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.boti-health-widget form input[type="email"] {
  flex: 1;
  background: var(--boti-surface-2) !important;
  border: 1.5px solid var(--boti-border) !important;
  color: var(--boti-text) !important;
  border-radius: 50px !important;
  padding: 0.7rem 1.4rem !important;
  font-family: var(--boti-font) !important;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.boti-health-widget form input[type="email"]:focus { border-color: var(--boti-blue) !important; }
.boti-health-widget form input[type="submit"] {
  background: var(--boti-blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0.7rem 1.6rem !important;
  font-weight: 700 !important;
  font-family: var(--boti-font) !important;
  cursor: pointer;
  transition: all 0.3s;
}
.boti-health-widget form input[type="submit"]:hover { background: var(--boti-blue-dark) !important; }

/* ── NEWSLETTER STRIP (footer, stary) ────────────────── */
.boti-newsletter-strip {
  background: var(--boti-surface-2);
  border-top: 1px solid var(--boti-border);
  border-bottom: 1px solid var(--boti-border);
  padding: 3rem 0;
}

/* ── NEWSLETTER CARD (stary, na podstronach) ─────────── */
.boti-newsletter-card {
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.boti-newsletter-card::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(2,132,199,0.12), transparent);
  pointer-events: none;
}

/* ── SHOP / PRODUCT CARDS ────────────────────────────── */
/* ── SKLEP ───────────────────────────────────────────── */
.boti-shop-section {
  background: var(--boti-bg);
}
/* Nagłówek sekcji */
.boti-shop-section .boti-section-label { color: var(--boti-blue-light); }

/* Siatka produktów – 4 kolumny na xl, 2 na mobile */
.boti-shop-section .row > [class*="col-"] { display: flex; }

/* Karta produktu */
.boti-product-card {
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  overflow: hidden;
  transition: all var(--boti-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.boti-product-card:hover {
  border-color: rgba(2,132,199,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(2,132,199,0.08);
}

/* Zdjęcie */
.boti-product-card__img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  background: var(--boti-surface-2);
  text-decoration: none;
  flex-shrink: 0;
}
.boti-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.boti-product-card:hover .boti-product-card__img-wrap img { transform: scale(1.06); }

/* Placeholder – brak zdjęcia */
.boti-product-card__no-img {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 180px;
  font-size: 2.5rem;
  color: var(--boti-text-muted);
  background: var(--boti-surface-2);
}

/* Badge SALE / NOWOŚĆ */
.boti-product-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
  z-index: 2;
  pointer-events: none;
}
.boti-product-badge--sale { background: #ef4444; color: #fff; box-shadow: 0 2px 8px rgba(239,68,68,0.4); }
.boti-product-badge--new  { background: var(--boti-blue); color: #fff; box-shadow: 0 2px 8px rgba(2,132,199,0.4); }

/* Treść karty */
.boti-product-card__body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}

/* Kategoria */
.boti-product-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--boti-blue-light);
  opacity: 0.85;
}

/* Tytuł */
.boti-product-card__title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}
.boti-product-card__title a {
  color: var(--boti-text);
  text-decoration: none;
  transition: color var(--boti-transition);
}
.boti-product-card__title a:hover { color: var(--boti-blue-light); }

/* Gwiazdki ocen */
.boti-product-card__rating {
  display: flex;
  align-items: center;
  gap: 1px;
  font-size: 0.68rem;
  color: #f59e0b;
  margin-top: 2px;
}
.boti-product-card__rating span {
  color: var(--boti-text-muted);
  margin-left: 4px;
  font-size: 0.65rem;
}

/* Footer: cena + przycisk koszyka */
.boti-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid var(--boti-border);
}

/* Cena */
.boti-product-card__price {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.boti-product-card__price .woocommerce-Price-amount { color: #fff; }
.boti-product-card__price del {
  color: var(--boti-text-muted);
  font-size: 0.72rem;
  font-weight: 400;
  text-decoration: line-through;
}
.boti-product-card__price ins {
  text-decoration: none;
  color: #f87171;
  font-weight: 800;
}

/* Przycisk koszyka – okrągła ikona */
.boti-product-card__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--boti-blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: all var(--boti-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.boti-product-card__cart-btn:hover {
  background: var(--boti-blue-dark);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(2,132,199,0.45);
}
.boti-product-card__cart-btn--out {
  background: var(--boti-surface-2);
  color: var(--boti-text-muted);
  border: 1px solid var(--boti-border);
}
.boti-product-card__cart-btn--out:hover {
  background: var(--boti-surface);
  color: var(--boti-blue-light);
  transform: scale(1.08);
}

/* Responsive sklep – na mobile 2 kolumny */
@media (max-width: 575.98px) {
  .boti-shop-section .col-6 { padding-left: 8px; padding-right: 8px; }
  .boti-product-card__body { padding: 0.85rem; }
  .boti-product-card__title { font-size: 0.82rem; }
  .boti-product-card__price { font-size: 0.88rem; }
}

/* ── PARTNERS ────────────────────────────────────────── */
/* Flexbox wrap – równe odstępy, tyle samo w rzędzie */
.boti-partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  padding: 0.5rem 0;
}

.boti-partner-item { display: flex; align-items: center; justify-content: center; }

.boti-partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius);
  background: var(--boti-bg);
  transition: all var(--boti-transition);
  text-decoration: none;
  min-width: 100px;
  min-height: 64px;
}
a.boti-partner-logo:hover {
  border-color: rgba(2,132,199,0.35);
  background: var(--boti-surface);
  box-shadow: 0 4px 20px rgba(2,132,199,0.1);
  transform: translateY(-2px);
}

/* Logo jako obrazek – szara wersja, kolor na hover */
.boti-partner-logo__img {
  height: auto;
  display: block;
  filter: grayscale(100%) brightness(0.7);
  transition: filter var(--boti-transition), opacity var(--boti-transition);
  opacity: 0.6;
}
.boti-partner-logo:hover .boti-partner-logo__img,
div.boti-partner-logo .boti-partner-logo__img {
  filter: none;
  opacity: 1;
}

/* Fallback gdy brak logo – tekst */
.boti-partner-logo__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--boti-text-muted);
  letter-spacing: 0.04em;
  transition: color var(--boti-transition);
}
a.boti-partner-logo:hover .boti-partner-logo__name { color: var(--boti-blue-light); }

/* Stara klasa – zachowujemy dla bezpieczeństwa */
.boti-partner-logo-placeholder {
  padding: 1.5rem;
  border: 1px dashed var(--boti-border);
  border-radius: var(--boti-radius);
  font-size: 1.5rem;
  color: var(--boti-text-muted);
  transition: all var(--boti-transition);
  text-align: center;
}
.boti-partner-logo-placeholder:hover { border-color: var(--boti-blue); color: var(--boti-blue-light); }

/* ── FOOTER ──────────────────────────────────────────── */
.boti-footer { background: var(--boti-surface); border-top: 1px solid var(--boti-border); }

.boti-footer-main { padding: 5rem 0 3rem; }

.boti-footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--boti-text-muted);
  margin-bottom: 1.25rem;
}

.boti-footer-nav { margin: 0; padding: 0; }
.boti-footer-nav li { margin-bottom: 0.6rem; }
.boti-footer-nav a { color: var(--boti-text-muted); font-size: 0.9rem; transition: color var(--boti-transition); }
.boti-footer-nav a:hover { color: #fff; }

.boti-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--boti-border);
  border-radius: 50%;
  color: var(--boti-text-muted);
  font-size: 1rem;
  transition: all var(--boti-transition);
}
.boti-social a:hover {
  background: var(--boti-blue);
  border-color: var(--boti-blue);
  color: #fff;
  transform: translateY(-2px);
}

.boti-footer-bottom {
  padding: 1.25rem 0;
  border-top: 1px solid var(--boti-border);
}

/* ── SIDEBAR ─────────────────────────────────────────── */
.boti-widget .widget-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--boti-text-muted); }
.boti-widget a { color: var(--boti-text-muted); font-size: 0.9rem; }
.boti-widget a:hover { color: var(--boti-blue-light); }
.boti-widget ul { list-style: none; padding: 0; margin: 0; }
.boti-widget ul li { padding: 0.4rem 0; border-bottom: 1px solid var(--boti-border); }
.boti-widget ul li:last-child { border-bottom: none; }

/* ── BLOG / SINGLE ───────────────────────────────────── */
.boti-page-hero {
  padding: 140px 0 64px;
  background: var(--boti-surface);
  border-bottom: 1px solid var(--boti-border);
  margin-top: 80px;
}

.boti-post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #D1D5DB;
}
.boti-post-content h2 { color: #fff; font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.boti-post-content h3 { color: #fff; font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.boti-post-content p { margin-bottom: 1.5rem; }
.boti-post-content a { color: var(--boti-blue-light); text-decoration: underline; text-underline-offset: 3px; }
.boti-post-content blockquote {
  border-left: 3px solid var(--boti-blue);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--boti-surface-2);
  border-radius: 0 var(--boti-radius) var(--boti-radius) 0;
  font-style: italic;
  color: var(--boti-text-muted);
}
.boti-post-content img { border-radius: var(--boti-radius); margin: 2rem 0; }
.boti-post-content code {
  background: var(--boti-surface-2);
  color: var(--boti-blue-light);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ── CONTACT FORM 7 ──────────────────────────────────── */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form select.wpcf7-select {
  width: 100%;
  background: var(--boti-surface-2);
  border: 1.5px solid var(--boti-border);
  color: var(--boti-text);
  border-radius: var(--boti-radius);
  padding: 0.8rem 1.2rem;
  font-family: var(--boti-font);
  font-size: 0.95rem;
  transition: border-color var(--boti-transition);
  margin-bottom: 0.25rem;
}
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus,
.wpcf7-form .wpcf7-email:focus {
  border-color: var(--boti-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(2,132,199,0.12);
}
.wpcf7-form .wpcf7-textarea { min-height: 140px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
  background: var(--boti-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-family: var(--boti-font);
  cursor: pointer;
  transition: all var(--boti-transition);
}
.wpcf7-form .wpcf7-submit:hover { background: var(--boti-blue-dark); transform: translateY(-2px); }
.wpcf7-form label { font-size: 0.82rem; font-weight: 600; color: var(--boti-text-muted); letter-spacing: 0.04em; margin-bottom: 0.3rem; display: block; }
.wpcf7-not-valid-tip { color: #f87171; font-size: 0.8rem; }
.wpcf7-response-output {
  border-radius: var(--boti-radius);
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  border: none !important;
  background: rgba(2,132,199,0.1);
  color: var(--boti-blue-light);
}

/* ── 404 / PAGE ──────────────────────────────────────── */
.boti-404 { min-height: 80vh; display: flex; align-items: center; }
.boti-404-num { font-size: 10rem; font-weight: 900; letter-spacing: -0.08em; background: linear-gradient(135deg, var(--boti-blue), var(--boti-blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; }

/* ── WOOCOMMERCE OVERRIDES ───────────────────────────── */
.boti-woo-wrapper { margin-top: 80px; }
.woocommerce-breadcrumb { color: var(--boti-text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.woocommerce-breadcrumb a { color: var(--boti-blue-light); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--boti-text); font-size: 1rem; }
.woocommerce ul.products li.product { background: var(--boti-surface); border: 1px solid var(--boti-border); border-radius: var(--boti-radius-lg); padding: 1.5rem !important; transition: all var(--boti-transition); }
.woocommerce ul.products li.product:hover { border-color: rgba(2,132,199,0.25); transform: translateY(-4px); }
.woocommerce ul.products li.product .price { color: var(--boti-blue-light); font-weight: 700; }
.woocommerce .button { background: var(--boti-blue) !important; color: #fff !important; border-radius: 50px !important; font-weight: 600 !important; }
.woocommerce .button:hover { background: var(--boti-blue-dark) !important; }

/* ── PAGINATION ──────────────────────────────────────── */
.boti-pagination { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }
.boti-pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--boti-border);
  border-radius: 8px;
  color: var(--boti-text-muted);
  font-size: 0.9rem;
  transition: all var(--boti-transition);
}
.boti-pagination .page-numbers:hover,
.boti-pagination .page-numbers.current {
  background: var(--boti-blue);
  border-color: var(--boti-blue);
  color: #fff;
}

/* ── ANIMATIONS ──────────────────────────────────────── */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.96); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ── UTILITY ─────────────────────────────────────────── */
.text-primary { color: var(--boti-blue-light) !important; }
.text-muted { color: var(--boti-text-muted) !important; }

/* ── RESPONSIVE TWEAKS ───────────────────────────────── */
@media (max-width: 991.98px) {
  .boti-hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  #navbarMain { background: rgba(10,15,26,0.97); backdrop-filter: blur(16px); padding: 1rem; border-radius: 0 0 var(--boti-radius) var(--boti-radius); }
  .navbar-nav .nav-link { padding: 0.75rem 0 !important; }
  .boti-btn-nav { display: inline-block; margin-top: 0.75rem; }
}

@media (max-width: 575.98px) {
  .boti-stat-value { font-size: 2.2rem; }
  .boti-section-title { font-size: 1.8rem; }
  .boti-footer-main { padding: 3rem 0 2rem; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── POST WRAP & FEATURED IMG ────────────────────────── */
.boti-post-wrap { padding: 72px 0 56px; }
.boti-post-featured-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.boti-post-featured-img img { width: 100%; height: auto; display: block; }

/* ── POST TAGS ───────────────────────────────────────── */
.boti-post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--boti-border);
}
.boti-post-tags__label {
  font-size: 0.8rem;
  color: var(--boti-text-muted);
  margin-right: 0.25rem;
}

/* ── POST PREV / NEXT NAV ────────────────────────────── */
.boti-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--boti-border);
}
.boti-post-nav__item--next { text-align: right; }
.boti-post-nav__link {
  display: block;
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 1rem 1.25rem;
  transition: all var(--boti-transition);
  color: inherit;
  text-decoration: none;
}
.boti-post-nav__link:hover {
  border-color: rgba(2,132,199,0.35);
  background: var(--boti-surface-2);
  transform: translateY(-2px);
  color: inherit;
}
.boti-post-nav__dir {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--boti-text-muted);
  margin-bottom: 0.4rem;
}
.boti-post-nav__title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

/* ── KOMENTARZE – SEKCJA OSOBNA ──────────────────────── */
.boti-comments-section {
  background: var(--boti-surface);
  border-top: 1px solid var(--boti-border);
  padding: 72px 0 80px;
}

/* Licznik komentarzy */
.boti-comments-section #comments { }
.boti-comments-section .comments-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--boti-border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.boti-comments-section .comments-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.4rem;
  background: linear-gradient(180deg, var(--boti-blue), var(--boti-blue-light));
  border-radius: 4px;
}

/* Lista komentarzy */
.boti-comments-section .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.boti-comments-section .comment-list .children {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Pojedynczy komentarz */
.boti-comments-section .comment-body {
  background: var(--boti-bg);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 1.5rem;
  position: relative;
  transition: border-color var(--boti-transition);
}
.boti-comments-section .comment-body:hover {
  border-color: rgba(2,132,199,0.2);
}

/* Byline: avatar + meta */
.boti-comments-section .comment-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.boti-comments-section .comment-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--boti-border);
  object-fit: cover;
  flex-shrink: 0;
}
.boti-comments-section .comment-author .fn {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  font-style: normal;
}
.boti-comments-section .comment-metadata {
  font-size: 0.75rem;
  color: var(--boti-text-muted);
  margin-top: 0.1rem;
}
.boti-comments-section .comment-metadata a {
  color: var(--boti-text-muted);
  text-decoration: none;
  transition: color var(--boti-transition);
}
.boti-comments-section .comment-metadata a:hover { color: var(--boti-blue-light); }

/* Treść komentarza */
.boti-comments-section .comment-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #D1D5DB;
  margin: 0;
}
.boti-comments-section .comment-content p + p { margin-top: 0.75rem; }

/* Moderacja */
.boti-comments-section .comment-awaiting-moderation {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.75rem;
}

/* Odpowiedz (Reply link) */
.boti-comments-section .reply a,
.boti-comments-section .comment-reply-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--boti-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color var(--boti-transition);
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.boti-comments-section .comment-reply-link::before { content: '↩ '; }
.boti-comments-section .comment-reply-link:hover { color: #fff; }

/* Formularz odpowiedzi / nowego komentarza */
.boti-comments-section #respond {
  background: var(--boti-bg);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 2rem;
  margin-top: 0.5rem;
}
.boti-comments-section #reply-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.boti-comments-section #reply-title small { display: block; }
.boti-comments-section #reply-title a {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--boti-text-muted);
  text-decoration: none;
}

/* Pola formularza */
.boti-comments-section .comment-form-author,
.boti-comments-section .comment-form-email,
.boti-comments-section .comment-form-url,
.boti-comments-section .comment-form-comment { margin-bottom: 1.1rem; }

.boti-comments-section .comment-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--boti-text-muted);
  margin-bottom: 0.5rem;
}
.boti-comments-section .comment-form input[type="text"],
.boti-comments-section .comment-form input[type="email"],
.boti-comments-section .comment-form input[type="url"],
.boti-comments-section .comment-form textarea {
  width: 100%;
  background: var(--boti-surface);
  border: 1.5px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 0.75rem 1rem;
  color: var(--boti-text);
  font-family: var(--boti-font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--boti-transition), box-shadow var(--boti-transition);
  resize: vertical;
}
.boti-comments-section .comment-form input:focus,
.boti-comments-section .comment-form textarea:focus {
  border-color: var(--boti-blue);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.12);
}
.boti-comments-section .comment-form input::placeholder,
.boti-comments-section .comment-form textarea::placeholder {
  color: var(--boti-text-muted);
}
.boti-comments-section .comment-form textarea { min-height: 130px; }

/* Checkbox zgody + submit */
.boti-comments-section .comment-form-cookies-consent label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--boti-text-muted);
  display: inline;
  margin-left: 0.4rem;
}
.boti-comments-section .form-submit { margin-top: 0.5rem; }
.boti-comments-section .submit {
  background: var(--boti-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-family: var(--boti-font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--boti-transition);
  letter-spacing: 0.02em;
}
.boti-comments-section .submit:hover {
  background: var(--boti-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2,132,199,0.3);
}

/* Brak komentarzy */
.boti-comments-section p.no-comments {
  color: var(--boti-text-muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--boti-border);
  border-radius: var(--boti-radius);
}

/* Pingback / trackback */
.boti-comments-section .pingback .comment-body {
  background: rgba(2,132,199,0.04);
}

/* ── TIKTOK – GRANATOWE TŁO ──────────────────────────── */
.boti-tiktok-navy {
  background-color: #060e2b !important;
  background-image:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(8,74,158,0.25), transparent),
    radial-gradient(ellipse 50% 80% at 100% 30%, rgba(2,132,199,0.1), transparent);
}
.boti-tiktok-navy .boti-tiktok-placeholder {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}

/* ── BLOG DZIENNIK – BIAŁE TŁO ───────────────────────── */
.boti-blog-white {
  background-color: #ffffff !important;
}
.boti-blog-white .boti-section-label {
  color: var(--boti-blue);
}
.boti-blog-white .boti-section-title {
  color: #111827;
}
.boti-blog-white .boti-blog-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.boti-blog-white .boti-blog-card:hover {
  border-color: rgba(2,132,199,0.25);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}
.boti-blog-white .boti-blog-card__title a { color: #111827; }
.boti-blog-white .boti-blog-card__title a:hover { color: var(--boti-blue); }
.boti-blog-white .boti-blog-card__excerpt { color: #4B5563; }
.boti-blog-white .boti-blog-card__meta {
  color: #6B7280;
  border-color: rgba(0,0,0,0.08);
}
.boti-blog-white .boti-badge {
  background: rgba(2,132,199,0.1);
  color: var(--boti-blue);
}
.boti-blog-white .btn.boti-btn-outline {
  border-color: var(--boti-blue);
  color: var(--boti-blue);
}
.boti-blog-white .btn.boti-btn-outline:hover {
  background: var(--boti-blue);
  color: #fff;
}
.boti-blog-white .text-muted { color: #9CA3AF !important; }

/* ── NEWSLETTER – ZMNIEJSZONA WYSOKOŚĆ (O 1/3) ───────── */
.boti-newsletter-hero { padding: 80px 0; }   /* było 120px → 80px */
@media (max-width: 575.98px) {
  .boti-newsletter-hero { padding: 56px 0; } /* było ~100px */
}
/* Zmniejszamy też dekoracje – mniejsza sekcja nie potrzebuje wielkich kryształów */
.boti-nl-deco--1 { font-size: 220px; }
.boti-nl-deco--2 { font-size: 140px; }
.boti-newsletter-hero__title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.boti-newsletter-hero__desc  { font-size: 1rem; margin-bottom: 1.75rem; }
.boti-nl-stats { margin-bottom: 1.75rem !important; }


/* =========================================================
   KOMENTARZE – PEŁNY ZESTAW STYLI (comments.php)
   ========================================================= */

/* Sekcja zewnętrzna – tło i padding */
.boti-comments-section {
  background: var(--boti-surface);
  border-top: 2px solid var(--boti-border);
  padding: 72px 0 88px;
}

/* ── NAGŁÓWEK SEKCJI ─────────────────────────────────── */
.boti-comments-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--boti-border);
}
.boti-comments-title i {
  color: var(--boti-blue-light);
  font-size: 1.2rem;
}
.boti-comments-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  background: var(--boti-blue);
  color: #fff;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.35rem;
}

/* ── LISTA KOMENTARZY ────────────────────────────────── */
.boti-comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
/* Zagnieżdżone odpowiedzi */
.boti-comment-list .children {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid rgba(2,132,199,0.15);
  padding-left: 1.5rem;
}

/* ── POJEDYNCZY KOMENTARZ ────────────────────────────── */
.boti-comment-item { display: block; }

.boti-comment-body {
  background: var(--boti-bg);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 1.5rem 1.75rem;
  transition: border-color var(--boti-transition), box-shadow var(--boti-transition);
}
.boti-comment-body:hover {
  border-color: rgba(2,132,199,0.22);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.boti-comment-body--ping {
  background: transparent;
  border-style: dashed;
  padding: 0.9rem 1.25rem;
}

/* ── NAGŁÓWEK KOMENTARZA (avatar + meta + edit) ──────── */
.boti-comment-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.boti-comment-avatar { flex-shrink: 0; }
.boti-comment-avatar__img {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(2,132,199,0.25) !important;
  object-fit: cover;
  display: block;
}

.boti-comment-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.boti-comment-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.boti-comment-author a {
  color: #fff;
  text-decoration: none;
  transition: color var(--boti-transition);
}
.boti-comment-author a:hover { color: var(--boti-blue-light); }

.boti-comment-date {
  font-size: 0.75rem;
  color: var(--boti-text-muted);
}
.boti-comment-date a {
  color: var(--boti-text-muted);
  text-decoration: none;
  transition: color var(--boti-transition);
}
.boti-comment-date a:hover { color: var(--boti-blue-light); }

.boti-comment-edit {
  margin-left: auto;
}
.boti-comment-edit a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--boti-text-muted);
  text-decoration: none;
  border: 1px solid var(--boti-border);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  transition: all var(--boti-transition);
}
.boti-comment-edit a:hover {
  border-color: var(--boti-blue);
  color: var(--boti-blue-light);
}

/* ── MODERACJA ───────────────────────────────────────── */
.boti-comment-moderation {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(245,158,11,0.1);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 50px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.9rem;
}

/* ── TREŚĆ KOMENTARZA ────────────────────────────────── */
.boti-comment-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #C9D0D8;
  margin: 0 0 0.75rem;
}
.boti-comment-content p:last-child { margin-bottom: 0; }
.boti-comment-content a {
  color: var(--boti-blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.boti-comment-content a:hover { color: #fff; }
.boti-comment-content blockquote {
  border-left: 3px solid var(--boti-blue);
  padding: 0.5rem 1rem;
  margin: 0.75rem 0;
  background: var(--boti-surface-2);
  border-radius: 0 var(--boti-radius) var(--boti-radius) 0;
  font-style: italic;
  color: var(--boti-text-muted);
  font-size: 0.9rem;
}

/* ── STOPKA KOMENTARZA (odpowiedz) ───────────────────── */
.boti-comment-footer {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--boti-border);
}
.boti-comment-reply a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--boti-blue-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--boti-transition);
  padding: 0.3rem 0;
}
.boti-comment-reply a:hover { color: #fff; }

/* Pingback */
.boti-comment-ping {
  font-size: 0.85rem;
  color: var(--boti-text-muted);
  margin: 0;
}

/* ── PAGINACJA KOMENTARZY ────────────────────────────── */
.boti-comments-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--boti-border);
}
.boti-comments-pagination a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--boti-blue-light);
  text-decoration: none;
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 0.5rem 1rem;
  transition: all var(--boti-transition);
}
.boti-comments-pagination a:hover {
  background: var(--boti-surface-2);
  border-color: rgba(2,132,199,0.3);
  color: #fff;
}

/* ── BRAK KOMENTARZY ─────────────────────────────────── */
.boti-no-comments {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px dashed var(--boti-border);
  border-radius: var(--boti-radius-lg);
  margin-bottom: 2.5rem;
  color: var(--boti-text-muted);
  font-size: 0.95rem;
}

/* ── FORMULARZ KOMENTARZA ────────────────────────────── */
.boti-comment-form-wrap {
  background: var(--boti-bg);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius-lg);
  padding: 2.25rem 2rem;
  margin-top: 1rem;
}

/* Tytuł formularza */
.boti-comment-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.boti-comment-form-title i { color: var(--boti-blue-light); }
.boti-comment-form-title small {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 500;
}
.boti-comment-form-title small a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--boti-text-muted);
  text-decoration: none;
  border: 1px solid var(--boti-border);
  border-radius: 6px;
  padding: 0.2rem 0.7rem;
  transition: all var(--boti-transition);
  font-size: 0.75rem;
}
.boti-comment-form-title small a:hover {
  border-color: rgba(239,68,68,0.4);
  color: #f87171;
}

/* Info o zalogowaniu */
.boti-comment-logged-in,
.boti-comment-login-notice {
  font-size: 0.9rem;
  color: var(--boti-text-muted);
  background: var(--boti-surface);
  border: 1px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 0.85rem 1.1rem;
  margin-bottom: 1.5rem;
}
.boti-comment-logged-in strong { color: #fff; }
.boti-comment-logout {
  color: var(--boti-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 0.5rem;
  font-size: 0.82rem;
}
.boti-comment-login-notice a { color: var(--boti-blue-light); }

/* Grid 3-kolumnowy (imię, email, url) */
.boti-comment-form__row { margin-bottom: 0; }
.boti-comment-form__row--3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .boti-comment-form__row--3col { grid-template-columns: 1fr; }
}

/* Pojedyncze pole */
.boti-comment-form__field { margin-bottom: 1.1rem; }
.boti-comment-form__field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--boti-text-muted);
  margin-bottom: 0.45rem;
}
.boti-required { color: var(--boti-blue-light); margin-left: 1px; }
.boti-field-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.68rem;
  color: rgba(156,163,175,0.6);
  margin-left: 4px;
}

/* Input z ikoną */
.boti-comment-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.boti-comment-form__icon {
  position: absolute;
  left: 0.95rem;
  color: var(--boti-text-muted);
  font-size: 0.9rem;
  pointer-events: none;
  transition: color var(--boti-transition);
}

/* Input */
.boti-comment-form__input {
  width: 100%;
  background: var(--boti-surface);
  border: 1.5px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  color: var(--boti-text);
  font-family: var(--boti-font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--boti-transition), box-shadow var(--boti-transition);
}
.boti-comment-form__input:focus {
  border-color: var(--boti-blue);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.12);
}
.boti-comment-form__input:focus + .boti-comment-form__icon,
.boti-comment-form__input-wrap:focus-within .boti-comment-form__icon {
  color: var(--boti-blue-light);
}
.boti-comment-form__input::placeholder { color: rgba(156,163,175,0.55); }

/* Textarea */
.boti-comment-form__textarea {
  width: 100%;
  background: var(--boti-surface);
  border: 1.5px solid var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 0.85rem 1rem;
  color: var(--boti-text);
  font-family: var(--boti-font);
  font-size: 0.9rem;
  line-height: 1.6;
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color var(--boti-transition), box-shadow var(--boti-transition);
}
.boti-comment-form__textarea:focus {
  border-color: var(--boti-blue);
  box-shadow: 0 0 0 3px rgba(2,132,199,0.12);
}
.boti-comment-form__textarea::placeholder { color: rgba(156,163,175,0.55); }

/* Checkbox zgody na cookies */
.boti-comment-form__cookies { margin-bottom: 1.25rem; }
.boti-comment-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--boti-text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.boti-comment-form__checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: var(--boti-blue);
  flex-shrink: 0;
  cursor: pointer;
}
.boti-comment-form__checkbox-custom { display: none; }

/* Stopka formularza */
.boti-comment-form__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--boti-border);
}

/* Przycisk submit */
.boti-comment-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--boti-blue);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-family: var(--boti-font);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--boti-transition);
  text-decoration: none;
}
.boti-comment-form__submit:hover {
  background: var(--boti-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(2,132,199,0.35);
  color: #fff;
}
.boti-comment-form__submit:active { transform: translateY(0); }

/* Note przy przycisku */
.boti-comment-form__note {
  font-size: 0.78rem;
  color: var(--boti-text-muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.boti-comment-form__note i { color: #34d399; }

/* ── STANY SPECJALNE ─────────────────────────────────── */
.boti-comments-locked,
.boti-comments-closed {
  text-align: center;
  font-size: 0.9rem;
  color: var(--boti-text-muted);
  border: 1px dashed var(--boti-border);
  border-radius: var(--boti-radius);
  padding: 1.25rem;
  margin-top: 2rem;
}

/* ── WYNIK (notice WP po wysłaniu formularza) ────────── */
#commentform .comment-notes,
#commentform .logged-in-as {
  display: none; /* chowamy - mamy własne info */
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 575.98px) {
  .boti-comments-section { padding: 48px 0 64px; }
  .boti-comment-body { padding: 1.2rem; }
  .boti-comment-form-wrap { padding: 1.5rem 1.25rem; }
  .boti-comment-list .children { margin-left: 1rem; padding-left: 1rem; }
  .boti-comment-form__footer { flex-direction: column; align-items: flex-start; }
  .boti-comment-form__submit { width: 100%; justify-content: center; }
}