/* ═══════════════════════════════════════════════════════════
   Speed-Dates.pl — front (mu-plugin)
   Odtworzony 2026-08-27 po utracie pliku. Zachowane wszystkie
   ustalenia z poprawek klienta 2026-08-20.
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; }
ul, ol { margin: 0; padding: 0; }

:root {
  --red: #dc2626; --red-dark: #b91c1c; --red-soft: #fee2e2;
  --black: #17110f; --ink: #241b18; --ink-soft: #6e625e;
  --cream: #faf7f5; --cream-2: #f3ece8;
  --border: #e9e2de; --gray-3: #c9bfba;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.14);
  --radius: 12px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink); background: var(--white);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 700; line-height: 1.15; margin: 0; letter-spacing: -0.01em; }

.container { max-width: 1216px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ── PASEK GÓRNY ─────────────────────────────────────────── */
.sd-topbar { background: var(--black); color: #fff; font-size: 13px; overflow: hidden; position: relative; }
.sd-topbar-inner { display: flex; align-items: center; gap: 12px; padding: 9px 24px; max-width: 100%; }
.topbar-marquee { display: flex; align-items: center; gap: 14px; white-space: nowrap; animation: sdMarquee 46s linear infinite; }
@keyframes sdMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.topbar-marquee .tm-item { flex: 0 0 auto; opacity: 0.92; }
.topbar-marquee .tm-item b { color: #fff; font-weight: 700; }
.topbar-marquee .tm-sep { color: var(--red); font-weight: 700; flex: 0 0 auto; }
.sd-topbar-close { position: absolute; right: 8px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; width: 26px; height: 26px; border-radius: 50%; cursor: pointer; line-height: 1; }
.sd-topbar-close:hover { background: var(--red); border-color: var(--red); }

/* ── NAGŁÓWEK / MENU ─────────────────────────────────────── */
.site-header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1216px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; }
.logo { display: inline-flex; align-items: center; font-family: 'Fraunces', Georgia, serif; font-size: 22px; font-weight: 700; color: var(--black); }
.logo b { color: var(--red); }
.site-nav { display: flex; align-items: center; gap: 20px; }
.nav-toggle { display: none; flex-direction: column; gap: 4px; padding: 8px; cursor: pointer; background: none; border: 1px solid var(--border); border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; }
.sd-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.sd-menu > li { position: relative; }
.sd-menu > li > a { display: inline-block; padding: 8px 14px; color: var(--black); font-weight: 500; font-size: 14px; border-radius: 8px; transition: all .15s; }
.sd-menu > li > a:hover, .sd-menu > li:hover > a, .sd-menu > li.current-menu-item > a { background: var(--cream-2); color: var(--red); }
.sd-menu > li.menu-item-has-children > a::after { content: '▾'; font-size: 10px; margin-left: 6px; opacity: 0.6; }
.sd-menu .sub-menu { display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); width: min(680px, 92vw); background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: var(--shadow-lg); list-style: none; z-index: 60; max-height: min(72vh, 540px); overflow-y: auto; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px 8px; }
.sd-menu .sub-menu::-webkit-scrollbar { width: 8px; }
.sd-menu .sub-menu::-webkit-scrollbar-thumb { background: var(--border); border-radius: 8px; }
.sd-menu > li:hover > .sub-menu { display: grid; }
.sd-menu > li.menu-item-has-children::after { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 10px; pointer-events: none; }
.sd-menu > li.menu-item-has-children:hover::after { pointer-events: auto; }
.sd-menu .sub-menu li a { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; font-size: 14px; font-weight: 500; color: var(--black); border-radius: 6px; }
.sd-menu .sub-menu li a:hover { background: var(--cream-2); color: var(--red); transform: translateX(3px); }
.sd-menu .sub-menu li a small { font-size: 11px; font-weight: 400; color: var(--ink-soft); }

/* ── PRZYCISKI ───────────────────────────────────────────── */
.btn-primary { background: var(--red); color: #fff; border-radius: 8px; padding: 14px 26px; font-weight: 600; font-size: 14px; transition: all .15s; display: inline-block; border: none; cursor: pointer; text-align: center; }
.btn-primary:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(220,38,38,0.25); }
.btn-xl { padding: 18px 38px; font-size: 16px; }
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-full { display: block; width: 100%; }
.btn-ghost { display: inline-block; padding: 11px 20px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--black); background: #fff; transition: all .15s; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

/* ── HERO ────────────────────────────────────────────────── */
.hero { position: relative; }
.hero-fullscreen { min-height: 88vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--black); }
.hero-bg-rotator { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: sdHeroFade 24s infinite; }
@keyframes sdHeroFade { 0%,20% { opacity: 1; } 28%,100% { opacity: 0; } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(0,0,0,0.45),rgba(0,0,0,0.85)); }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 28px; color: #fff; }
.hero-eyebrow { display: inline-block; font-size: 11px; letter-spacing: 0.22em; font-weight: 700; color: #fff; margin-bottom: 24px; padding: 8px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; }
/* badge NOWOŚĆ (poprawka klienta pkt 11) */
.hero-badge-new { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 6px 8px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 600; backdrop-filter: blur(4px); transition: all .15s; box-shadow: 0 6px 22px rgba(220,38,38,0.28); }
.hero-badge-new:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.hero-badge-new .hbn-dot { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; animation: hbnPulse 2s ease-in-out infinite; }
.hero-badge-new .hbn-txt { padding-right: 2px; }
.hero-badge-new .hbn-arrow { opacity: 0.85; transition: transform .15s; }
.hero-badge-new:hover .hbn-arrow { transform: translateX(3px); }
@keyframes hbnPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.5); } 50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); } }
.hero-title-xl { font-size: clamp(40px, 7vw, 76px); color: #fff; margin: 0 0 20px; line-height: 1.05; }
.hero-title-xl em { color: var(--red); font-style: italic; }
.hero-tagline { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.82); max-width: 40rem; margin: 0 auto 30px; }
.hero-city-picker { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hcp-label { font-size: 13px; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); font-weight: 500; }
.hcp-select { min-width: min(520px, 90vw); padding: 15px 20px; font-size: 16px; font-weight: 500; color: #fff; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.30); border-radius: 999px; cursor: pointer; backdrop-filter: blur(6px); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 20px center; background-size: 16px; }
.hcp-select:focus { outline: none; border-color: var(--red); }
.hcp-select option { color: var(--black); background: #fff; }

/* ── NAGŁÓWKI SEKCJI ─────────────────────────────────────── */
.ne-eyebrow { color: var(--red); font-weight: 700; letter-spacing: 0.18em; font-size: 11px; margin-bottom: 4px; text-transform: uppercase; display: block; }
.ne-title, .section-title { font-size: clamp(26px, 4vw, 42px); color: var(--black); margin: 4px 0 0; }
.gallery-header { margin-bottom: 30px; }

/* ── PASEK ZAUFANIA (liczby, animowane) ──────────────────── */
.trust-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 34px 24px; text-align: center; }
.trust-item { padding: 0 8px; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-item .trust-num { font-family: 'Fraunces', Georgia, serif; font-size: clamp(28px,4vw,44px); font-weight: 700; color: var(--red); line-height: 1; }
.trust-item .trust-lab { margin-top: 8px; font-size: 13px; color: var(--ink-soft); line-height: 1.35; }

/* ── KARTA WYDARZENIA (poprawki klienta pkt 1,2,4) ───────── */
.events-list { display: grid; gap: 16px; }
.event-card { display: grid; grid-template-columns: 180px 1fr; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .15s, transform .15s; }
.event-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.event-card.is-bestseller::before { content: none; }
.ec-thumb { position: relative; display: block; overflow: hidden; background: var(--cream-2); }
.ec-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ec-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ec-title { font-size: 17px; line-height: 1.25; margin: 0; }
.ec-title a { color: var(--black); }
.ec-title a:hover { color: var(--red); }
/* jeden wiersz meta: bestseller · miasto · godzina · wiek · miejsce */
.ec-bestseller-tag { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.ec-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 8px; margin: 2px 0 6px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.3; }
.ec-meta-i { display: inline-flex; align-items: center; }
.ec-meta-i:not(:last-child)::after { content: '·'; margin-left: 8px; color: var(--gray-3); }
.ec-meta-city { color: var(--red); font-weight: 700; }
.ec-meta-venue { color: var(--black); font-weight: 600; }
.ec-city-tag { display: inline-block; padding: 3px 10px; border: 1px solid var(--border); border-radius: 999px; font-size: 11px; font-weight: 600; }
.ec-city-tag:hover { background: var(--red); color: #fff; }
.ec-price-row { display: flex; align-items: baseline; gap: 8px; padding-top: 8px; border-top: 1px dashed var(--border); margin-top: 2px; }
.ec-price-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.ec-price-val { font-family: 'Fraunces', Georgia, serif; font-size: 21px; font-weight: 700; color: var(--black); }
.ec-price-val ins { text-decoration: none; color: var(--red); }
.ec-price-val del { color: var(--gray-3); font-size: 0.7em; margin-right: 4px; }
/* siatka zapisów K/M — bez nachodzenia (pkt 1) */
.ec-signup-grid { display: grid; grid-template-columns: 1fr auto; gap: 8px 14px; align-items: center; margin-top: 10px; }
.ec-row-stock { white-space: nowrap; overflow: hidden; display: flex; align-items: center; gap: 7px; font-size: 13px; }
.ec-row-stock .ec-stock-lab { white-space: nowrap; color: var(--ink-soft); }
.ec-stock-val { font-weight: 800; color: var(--black); }
.ec-stock-val.ec-stock-empty { color: var(--red); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: 0 0 auto; }
.dot-f { background: var(--red); }
.dot-m { background: var(--black); }
.ec-signup-grid .btn-signup { min-width: 0; padding: 8px 14px; background: var(--red); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 700; text-align: center; transition: all .15s; }
.ec-signup-grid .btn-signup:hover { background: var(--red-dark); }
.ec-signup-grid .btn-signup.is-waitlist { background: #fff; color: var(--black); border: 1px solid var(--border); }
.ec-signup-grid .btn-signup.is-waitlist:hover { border-color: var(--red); color: var(--red); background: #fff; }
.urgent { color: var(--red); font-weight: 700; }

/* ── SEKCJA MIAST / KAFELKI ──────────────────────────────── */
.other-cities { padding: 60px 0; background: var(--cream); }
.city-events { padding: 34px 0 60px; }
.city-hero, .product-hero { background: var(--cream); padding: 36px 0 24px; width: 100vw; margin-left: calc(50% - 50vw); border-bottom: 1px solid var(--border); }
.city-hero-compact { padding: 22px 0 6px !important; }
.city-hero .container, .product-hero .container { max-width: 1216px; }
.breadcrumb { display: inline-block; padding: 7px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; color: var(--ink-soft); background: #fff; margin-bottom: 14px; }
.breadcrumb:hover { color: var(--red); border-color: var(--red); }
.city-title, .pc-title { font-size: clamp(30px, 5vw, 52px); color: var(--black); }
.city-title em { color: var(--red); font-style: italic; }
.city-desc, .city-sub { color: var(--ink-soft); margin-top: 10px; max-width: 44rem; }
.city-seo-section { background: var(--cream); padding: 50px 0 60px; }
.cd-prose { max-width: 46rem; color: var(--ink-soft); }
.cd-prose h3 { color: var(--black); margin: 22px 0 8px; font-size: 20px; }

/* ── W LICZBACH ──────────────────────────────────────────── */
.big-numbers { padding: 66px 0; background: var(--black); color: #fff; }
.big-numbers .ne-title, .big-numbers .section-title { color: #fff; }
.bn-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.bn-num { font-family: 'Fraunces', Georgia, serif; font-size: clamp(44px,6vw,78px); font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 12px; }
.bn-lab { color: rgba(255,255,255,0.66); font-size: 14px; line-height: 1.4; }
.bn-footer { margin-top: 40px; text-align: center; color: var(--red); letter-spacing: 3px; }
.bn-footer span { display: block; margin-top: 8px; color: rgba(255,255,255,0.72); letter-spacing: 0; font-size: 14px; }

/* ── JAK TO DZIAŁA ───────────────────────────────────────── */
.how-section { padding: 66px 0; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 34px; }
.how-step { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: all .15s; }
.how-step:hover { box-shadow: var(--shadow); }
.hs-num { width: 42px; height: 42px; border-radius: 50%; background: var(--cream-2); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px; transition: all .15s; }
.how-step:hover .hs-num { background: var(--red); color: #fff; }
.hs-title { font-size: 18px; margin-bottom: 6px; color: var(--black); }
.hs-desc { color: var(--ink-soft); font-size: 15px; }

/* ── OPINIE ──────────────────────────────────────────────── */
.testimonials-section { padding: 66px 0; background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.testimonial-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px 22px; }
.testimonial-card::before { content: '"'; position: absolute; top: -12px; left: 18px; font-family: 'Fraunces', Georgia, serif; font-size: 80px; font-weight: 700; color: var(--red); opacity: 0.18; line-height: 1; }
.t-stars { color: var(--red); font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.t-text { color: var(--ink); font-size: 15px; margin-bottom: 14px; }
.t-author { color: var(--ink-soft); font-size: 13px; font-weight: 600; }

/* ── GALERIA ─────────────────────────────────────────────── */
.gallery-section { padding: 66px 0; }
.gallery-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-tile-v2 { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--cream-2); }
.gallery-tile-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-tile-v2:hover img { transform: scale(1.04); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 66px 0; background: var(--cream); }
.faq-list { max-width: 820px; margin: 30px auto 0; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q { font-weight: 600; color: var(--black); }
.faq-item summary:hover .faq-q { color: var(--red); }
.faq-icon { width: 26px; height: 26px; border-radius: 50%; background: var(--cream-2); color: var(--black); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; transition: all .2s; font-size: 16px; }
.faq-item[open] .faq-icon { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { padding: 0 20px 20px; color: var(--ink-soft); }

/* ── STOPKA ──────────────────────────────────────────────── */
.site-footer { background: var(--black); color: rgba(255,255,255,0.72); padding: 54px 0 26px; }
.footer-inner { max-width: 1216px; margin: 0 auto; padding: 0 24px; }
.footer-brand { font-family: 'Fraunces', Georgia, serif; font-size: 22px; color: #fff; margin-bottom: 28px; }
.footer-brand b { color: var(--red); }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 34px; }
.fc-head { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 12px; }
.footer-cities { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.footer-cities a { font-size: 14px; }
.footer-cities a:hover { color: var(--red); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; font-size: 14px; }
.footer-links a:hover { color: var(--red); }
.footer-newsletter { margin-top: 12px; }
.fn-head { color: #fff; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.fn-form { display: flex; gap: 8px; }
.fn-form input { flex: 1; min-width: 0; padding: 11px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; }
.fn-form input::placeholder { color: rgba(255,255,255,0.4); }
.fn-form button { background: var(--red); color: #fff; border: none; border-radius: 8px; padding: 11px 18px; font-weight: 700; cursor: pointer; }
.fn-result { font-size: 13px; margin-top: 8px; }
.footer-meta { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; }
.footer-meta a { color: var(--red); }
.footer-credit { color: rgba(255,255,255,0.45); }

/* ── STRONA WYDARZENIA ───────────────────────────────────── */
.product-page { padding-bottom: 60px; }
.product-main { max-width: 1216px; margin: 0 auto; padding: 30px 24px 0; }
.product-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 34px; align-items: start; }
.product-image { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--cream-2); }
.product-title { font-size: clamp(26px, 4vw, 40px); color: var(--black); margin-bottom: 12px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--ink-soft); font-size: 14px; margin-bottom: 18px; }
.pm-item { display: inline-flex; align-items: center; gap: 6px; }
.product-desc { color: var(--ink); line-height: 1.7; }
.product-desc h3 { margin: 20px 0 8px; font-size: 19px; color: var(--black); }
.product-sidebar { position: sticky; top: 84px; }
.sidebar-box { border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.sb-price-label, .sb-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.sb-price-val { font-family: 'Fraunces', Georgia, serif; font-size: 40px; font-weight: 700; color: var(--black); line-height: 1; margin: 4px 0 14px; }
.sb-price-val ins { text-decoration: none; color: var(--red); }
.sb-price-val del { color: var(--gray-3); font-size: 0.55em; margin-right: 6px; }
.sb-value { font-weight: 700; color: var(--black); }
.sb-signup { display: grid; gap: 10px; margin-top: 14px; }
.sb-note { font-size: 12.5px; color: var(--ink-soft); margin-top: 10px; }
.sb-link { display: block; margin-top: 10px; color: var(--red); font-size: 13px; font-weight: 600; }

/* lista rezerwowa */
.waitlist-box { margin-top: 20px; padding: 26px; background: var(--cream); border: 2px dashed var(--red); border-radius: var(--radius); }
.wl-title { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--red); margin-bottom: 8px; }
.wl-sub { color: var(--ink-soft); font-size: 14px; margin-bottom: 14px; }
.wl-row { display: grid; gap: 10px; }
.wl-gender-label { font-size: 13px; font-weight: 600; color: var(--black); }
.wl-form input, .wl-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.wl-form input:focus, .wl-form select:focus { outline: none; border-color: var(--red); }
.wl-form button { margin-top: 8px; background: var(--red); color: #fff; padding: 14px 28px; border: none; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; width: 100%; }
.wl-form button:hover:not(:disabled) { background: var(--red-dark); }
.wl-result { display: none; margin-top: 10px; padding: 10px 14px; border-radius: 8px; font-size: 14px; background: #dcfce7; color: #166534; }
.wl-result.err { display: block; background: var(--red-soft); color: var(--red-dark); }

/* ── MODAL ZAPISU ────────────────────────────────────────── */
.sd-signup-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.sd-signup-modal.open { display: flex; }
.ssm-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); }
.ssm-dialog { position: relative; background: #fff; border-radius: 16px; width: min(560px, 100%); max-height: 90vh; overflow-y: auto; padding: 28px; box-shadow: var(--shadow-lg); }
.ssm-close { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; line-height: 1; }
.ssm-close:hover { background: var(--cream-2); color: var(--red); }
.ssm-head { margin-bottom: 18px; }
.ssm-eyebrow { color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ssm-title { font-size: 24px; color: var(--black); margin: 6px 0; }
.ssm-event { font-weight: 600; color: var(--black); }
.ssm-meta { color: var(--ink-soft); font-size: 14px; display: flex; flex-wrap: wrap; gap: 4px 8px; }
.ssm-sep { color: var(--gray-3); }
.ssm-price { font-family: 'Fraunces', Georgia, serif; font-size: 26px; font-weight: 700; color: var(--red); margin: 10px 0 4px; }
.ssm-form { display: grid; gap: 12px; }
.ssm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ssm-field, .ssm-field-short { display: grid; gap: 5px; }
.ssm-lab { font-size: 12.5px; font-weight: 600; color: var(--black); }
.ssm-form input, .ssm-form select { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-size: 15px; }
.ssm-form input:focus, .ssm-form select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,0.10); }
.ssm-gender { display: flex; gap: 10px; }
.ssm-checkbox { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--ink-soft); }
.ssm-checkbox input { width: auto; margin-top: 3px; }
.ssm-submit { background: var(--red); color: #fff; border: none; border-radius: 8px; padding: 15px 24px; font-weight: 700; font-size: 15px; cursor: pointer; }
.ssm-submit:hover:not(:disabled) { background: var(--red-dark); }
.ssm-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.ssm-note { font-size: 12px; color: var(--ink-soft); text-align: center; }
.ssm-result { font-size: 14px; padding: 10px 14px; border-radius: 8px; }

/* ── O NAS ───────────────────────────────────────────────── */
.sda { --sda-accent: var(--red); --sda-ink: var(--black); --sda-muted: var(--ink-soft); --sda-line: var(--border); --sda-wine: #560f18; --sda-wine-ink: #f6e6e4; --sda-wine-mut: #d7a9a6; --sda-bg: #fbf9f8; }
.sda-wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px,5vw,44px); }
.sda-eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--sda-accent); }
.sda-hero { padding: clamp(48px,8vw,104px) 0 clamp(32px,5vw,64px); }
.sda-hero h1 { font-size: clamp(2.3rem,6vw,4.4rem); margin: 22px 0 0; color: var(--sda-ink); }
.sda-hero h1 em { font-style: italic; color: var(--sda-accent); }
.sda-lead { max-width: 38rem; margin-top: 26px; color: var(--sda-muted); font-size: clamp(1.05rem,2vw,1.25rem); }
.sda-rule { height: 2px; width: 60px; background: var(--sda-accent); border: 0; margin: 30px 0 0; }
.sda section { padding: clamp(40px,6vw,80px) 0; }
.sda-h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: var(--sda-ink); margin: 12px 0 0; }
.sda-sub { color: var(--sda-muted); margin-top: 16px; max-width: 38rem; }
.sda-tl { border-top: 1px solid var(--sda-line); }
.sda-tl-row { display: grid; grid-template-columns: 140px 1fr; gap: clamp(16px,4vw,44px); padding: 26px 0; border-bottom: 1px solid var(--sda-line); }
.sda-tl-yr { font-size: 1.6rem; color: var(--sda-accent); font-weight: 700; }
.sda-manifesto { background: var(--sda-wine); color: var(--sda-wine-ink); }
.sda-manifesto .sda-eyebrow { color: var(--sda-wine-mut); }
.sda-manifesto .sda-h2 { color: var(--sda-wine-ink); }
.sda-beliefs { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(22px,4vw,40px); margin-top: clamp(28px,4vw,48px); }
.sda-belief { border-top: 2px solid rgba(255,255,255,.22); padding-top: 18px; }
.sda-belief p { color: var(--sda-wine-mut); }
.sda-nums { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(14px,3vw,30px); border-top: 1px solid var(--sda-line); border-bottom: 1px solid var(--sda-line); }
.sda-num { padding: clamp(26px,4vw,46px) 0; }
.sda-num:not(:last-child) { border-right: 1px solid var(--sda-line); }
.sda-big { font-size: clamp(2.4rem,5vw,3.6rem); color: var(--sda-accent); font-weight: 700; line-height: 1; }
.sda-lab { margin-top: 12px; color: var(--sda-muted); font-size: .9rem; max-width: 13rem; }
.sda-frames { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.sda-frame { aspect-ratio: 4/5; border: 1px dashed var(--sda-line); border-radius: 6px; background: linear-gradient(160deg,#fff2f0,#fff); display: flex; align-items: flex-end; padding: 14px; color: var(--sda-muted); font-size: .8rem; }
.sda-team { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(16px,3vw,26px); }
.sda-av { aspect-ratio: 1; border-radius: 8px; border: 1px solid var(--sda-line); background: radial-gradient(120% 120% at 30% 20%,#fbe3e1,#fff); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; color: var(--sda-accent); font-weight: 700; font-size: 1.3rem; }
.sda-role { color: var(--sda-muted); font-size: .85rem; margin-top: 3px; }
.sda-soon { display: inline-block; margin-top: 18px; font-size: .82rem; color: var(--sda-muted); border: 1px solid var(--sda-line); border-radius: 999px; padding: 7px 15px; }
.sda-cta { text-align: center; background: #fff; border-top: 1px solid var(--sda-line); border-bottom: 1px solid var(--sda-line); }
.sda-cta p { color: var(--sda-muted); margin: 16px auto 0; max-width: 32rem; }
.sda-btn { display: inline-block; margin-top: 22px; background: var(--sda-accent); color: #fff; font-weight: 700; padding: 14px 28px; border-radius: 10px; }
.sda-btn:hover { background: var(--red-dark); }

/* ── WOOCOMMERCE (koszyk/warianty) ───────────────────────── */
.product-cart table.variations select { padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; }
.product-cart table.variations select:focus { outline: none; border-color: var(--red); }
.product-cart .reset_variations { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--red); }
.product-cart .stock.out-of-stock { background: var(--red-soft); color: var(--red-dark); padding: 8px 12px; border-radius: 8px; font-size: 14px; }
.product-cart .woocommerce-variation-price .price ins { text-decoration: none; color: var(--red); }
.product-cart form.cart button.single_add_to_cart_button { background: var(--red); color: #fff; padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; box-shadow: 0 8px 24px rgba(220,38,38,0.25); transition: all .12s; min-width: 220px; }
.product-cart form.cart button.single_add_to_cart_button:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-2px); }
.woocommerce-Price-amount { font-weight: 700; }
.quantity input.qty { width: 72px; padding: 10px; border: 1px solid var(--border); border-radius: 8px; }

/* ── RESPONSYWNOŚĆ ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  /* menu mobilne ciemne — poprawka klienta pkt 3 */
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; background: #17110f; border-top: 3px solid var(--red); border-bottom: 1px solid rgba(0,0,0,0.2); flex-direction: column; padding: 12px 16px 18px; gap: 4px; display: none; box-shadow: 0 18px 40px rgba(0,0,0,0.35); z-index: 70; }
  .site-nav.open { display: flex; }
  .sd-menu { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .sd-menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .sd-menu > li:last-child { border-bottom: none; }
  .sd-menu > li > a { width: 100%; padding: 14px 12px; color: #fff; font-size: 15px; font-weight: 600; border-radius: 8px; }
  .sd-menu > li > a:hover, .sd-menu > li:hover > a, .sd-menu > li.current-menu-item > a { background: rgba(220,38,38,0.18); color: #fff; }
  /* „Miasta" jako rozwijana lista — poprawka klienta pkt 6b */
  .sd-menu .sub-menu { display: none !important; }
  .sd-menu > li.sd-has-sub.open .sub-menu { display: grid !important; position: static; width: auto; max-width: none; left: auto; transform: none; background: rgba(0,0,0,0.28); border: none; box-shadow: none; border-radius: 8px; padding: 6px; margin: 2px 0 8px; grid-template-columns: 1fr 1fr; gap: 2px; max-height: 46vh; overflow-y: auto; }
  .sd-menu .sub-menu li a { color: #f2eae7 !important; padding: 10px; font-weight: 500; }
  .sd-menu .sub-menu li a small { color: rgba(255,255,255,0.5); }
  .sd-menu .sub-menu li a:hover { background: rgba(220,38,38,0.22); color: #fff !important; transform: none; }
  .sd-menu > li.menu-item-has-children > a::after { display: none; }
  .sd-menu > li.sd-has-sub > a::after { content: '▾' !important; display: inline-block !important; font-size: 11px; margin-left: 8px; opacity: 0.7; transition: transform .15s; }
  .sd-menu > li.sd-has-sub.open > a::after { transform: rotate(180deg); }
  /* karty poziome, mniejsza miniatura */
  .event-card { grid-template-columns: 132px 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .trust-item:nth-child(3) { border-left: none; }
  .bn-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .how-steps, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid-v2 { grid-template-columns: 1fr 1fr; }
  .sda-team, .sda-nums { grid-template-columns: repeat(2,1fr); }
  .sda-num:nth-child(2) { border-right: none; }
  .sda-beliefs, .sda-frames { grid-template-columns: 1fr; }
  .sda-tl-row { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 700px) {
  .hero-fullscreen { min-height: 80vh; }
  .footer-cols { grid-template-columns: 1fr; gap: 26px; }
  .ssm-row { grid-template-columns: 1fr; }
  .ssm-dialog { padding: 22px 18px; }
}
@media (max-width: 600px) {
  .container, .header-inner, .footer-inner, .product-main { padding-left: 16px; padding-right: 16px; }
  .hcp-select { min-width: min(320px, 88vw); }
  .event-card { grid-template-columns: 108px 1fr; }
  .ec-body { padding: 13px 14px; }
  .ec-title { font-size: 15.5px; }
  .ec-meta-row { font-size: 12px; }
  .ec-signup-grid { grid-template-columns: 1fr; gap: 7px; }
  .ec-signup-grid .btn-signup { width: 100%; }
  .gallery-grid-v2 { grid-template-columns: 1fr; }
  .big-numbers, .how-section, .testimonials-section, .faq-section, .gallery-section, .other-cities { padding: 44px 0; }
}
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; padding: 24px 16px; }
  .bn-grid { grid-template-columns: 1fr 1fr; }
  .sda-team, .sda-nums { grid-template-columns: 1fr; }
  .sda-num { border-right: none !important; }
}

/* ── NADPISANIE MOTYWU ───────────────────────────────────────
   Motyw (hello-elementor/style.css) ładuje się PO tym pliku
   i resetuje nagłówki na bezszeryfowe. Poniżej wymuszamy
   typografię projektu. Nie usuwać. */
.hero-title-xl, .ne-title, .section-title, .city-title, .pc-title,
.product-title, .ec-title, .sda-h2, .sda-hero h1, .sdbadge h1,
.wl-title, .ssm-title, .footer-brand, .fc-head,
.trust-num, .bn-num, .sda-big, .sb-price-val, .ec-price-val, .ssm-price {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif !important;
}
.hero-title-xl, .ne-title, .section-title, .city-title, .pc-title,
.product-title, .sda-h2, .sda-hero h1, .sdbadge h1, .wl-title, .ssm-title,
.trust-num, .bn-num, .sda-big, .sb-price-val, .ec-price-val, .ssm-price {
  font-weight: 700 !important; letter-spacing: -0.01em;
}
.ec-title { font-weight: 700 !important; }
.footer-brand { font-weight: 700 !important; }
.hero-title-xl { line-height: 1.05 !important; margin: 0 0 20px !important; color: #fff !important; }
.hero-title-xl em, .city-title em, .sda-hero h1 em { font-style: italic !important; color: var(--red) !important; }
.big-numbers .ne-title, .big-numbers .section-title { color: #fff !important; }
.bn-num { color: var(--red) !important; }
/* motyw dokłada własne marginesy list i przycisków */
.sd-menu, .footer-links, .faq-list, .events-list { list-style: none !important; }
.site-nav a, .sd-menu a, .footer-links a, .footer-cities a { text-decoration: none !important; }
/* motyw wymusza img{height:auto} — miniatury kart muszą wypełniać kafelek */
.ec-thumb { display: block; height: 100%; }
.ec-thumb img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
.gallery-tile-v2 img { height: 100% !important; object-fit: cover !important; }
.product-image img { width: 100% !important; height: auto !important; }

/* ── NADPISANIE MOTYWU cz.2 (produkcja: Avada/speed-dates) ───
   Stary motyw narzuca Open Sans/Arial i sztywne wysokosci pol.
   Ponizsze przywraca typografie i pola projektu. Nie usuwac. */
.page, .page p, .page li, .page span, .page div, .page a,
.hero-content, .ec-body, .ec-meta-row, .trust-lab, .bn-lab,
.site-nav, .sd-menu, .site-footer, .ssm-dialog, .sidebar-box, .faq-item {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.hcp-select {
  height: auto !important; min-height: 0 !important; line-height: 1.3 !important;
  padding: 15px 20px !important; font-size: 16px !important;
  font-family: 'Inter', sans-serif !important; box-sizing: border-box !important;
  max-width: 90vw;
}
.ssm-form input, .ssm-form select, .wl-form input, .wl-form select, .fn-form input {
  height: auto !important; min-height: 0 !important; line-height: 1.3 !important;
  padding: 12px 14px !important; font-size: 15px !important;
  font-family: 'Inter', sans-serif !important; box-sizing: border-box !important;
}
.btn-primary, .btn-ghost, .btn-signup, .ssm-submit, .sda-btn, .bd-cta, .wl-form button, .fn-form button {
  font-family: 'Inter', sans-serif !important; height: auto !important;
  line-height: 1.25 !important; text-transform: none !important; letter-spacing: 0 !important;
}
.btn-primary, .ssm-submit, .wl-form button { color: #fff !important; }
.hero-badge-new, .hero-badge-new * { font-family: 'Inter', sans-serif !important; }
/* motyw dokleja wlasne marginesy naglowkom i akapitom */
.page h1, .page h2, .page h3 { margin-top: 0; }
.ec-body p, .ec-meta-row p { margin: 0; }

/* ── NADPISANIE MOTYWU cz.3 — wysokosci wierszy i drobne napisy ──
   Stary motyw narzuca line-height (np. 21px przy foncie 30px), przez co
   naglowki nachodzily na siebie, a „Oszczedzasz" dziedziczylo 40px. */
.pc-title, .city-title, .product-title, .ne-title, .section-title,
.hero-title-xl, .sda-h2, .sdbadge h1, .ssm-title, .wl-title, .footer-brand {
  line-height: 1.15 !important;
}
.sb-price-save {
  display: inline-block !important; margin-top: 6px !important;
  padding: 3px 10px !important; background: var(--red-soft) !important;
  color: var(--red-dark) !important; border-radius: 999px !important;
  font-size: 12px !important; line-height: 1.4 !important; font-weight: 700 !important;
  font-family: 'Inter', sans-serif !important; align-self: flex-start;
}
.sb-price-val { display: flex !important; flex-direction: column !important; align-items: flex-start !important; line-height: 1.05 !important; }
.sb-price-val del { font-size: 22px !important; line-height: 1.2 !important; color: var(--gray-3) !important; }
.sb-price-val ins { font-size: 40px !important; line-height: 1.05 !important; }
.sb-price-label, .sb-label, .ec-price-label { line-height: 1.4 !important; font-size: 10px !important; }
.ec-price-val { line-height: 1.15 !important; }
.ec-price-val del { font-size: 15px !important; }
.ec-title { line-height: 1.25 !important; }
.ec-meta-row, .ec-row-stock, .trust-lab, .bn-lab, .sb-note, .sda-lab { line-height: 1.35 !important; }
.hs-title, .fc-head, .faq-q { line-height: 1.3 !important; }

/* pola wyboru wariantu (plec) — motyw splaszcza selecty WooCommerce */
.product-cart table.variations select, .variations select, .product-page select {
  height: auto !important; min-height: 0 !important; line-height: 1.3 !important;
  padding: 12px 14px !important; font-size: 15px !important; width: 100% !important;
  font-family: 'Inter', sans-serif !important; box-sizing: border-box !important;
  border: 1px solid var(--border) !important; border-radius: 8px !important; background: #fff !important;
}
.product-cart table.variations, .variations { width: 100% !important; }
.product-cart table.variations td, .variations td { display: block !important; width: 100% !important; padding: 0 0 8px !important; }
.product-cart .quantity, .product-page .quantity { display: none !important; }
.woocommerce-variation-add-to-cart { display: flex !important; flex-wrap: wrap; gap: 10px; align-items: center; }

/* ── NADPISANIE MOTYWU cz.4 — czytelnosc pol wyboru ──────────
   Stary motyw ustawia jasnoszary tekst (#aaa) w selectach, przez co
   wybrana plec byla praktycznie niewidoczna. */
.variations select, .product-cart select, .product-page select, .hcp-select,
.ssm-form select, .wl-form select {
  color: var(--black) !important; font-weight: 500 !important;
  -webkit-appearance: none !important; appearance: none !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%2317110f' d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: right 14px center !important;
  padding-right: 38px !important; cursor: pointer;
}
.hcp-select {
  color: #fff !important;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M4.5 6l3.5 4 3.5-4z'/%3E%3C/svg%3E") !important;
  background-position: right 20px center !important;
}
.variations select option, .product-page select option, .ssm-form select option { color: var(--black) !important; background: #fff !important; }
.variations label, .product-cart label, .variations th { color: var(--black) !important; font-weight: 600 !important; font-size: 13px !important; }

/* ── WYBOR PLCI: pole rowne z przyciskiem, jedno pod drugim ──── */
.product-cart table.variations { display: block !important; margin: 0 0 12px !important; border: 0 !important; }
.product-cart table.variations tbody, .product-cart table.variations tr { display: block !important; width: 100% !important; }
.product-cart table.variations th.label { display: block !important; width: 100% !important; text-align: left !important; padding: 0 0 6px !important; border: 0 !important; }
.product-cart table.variations th.label label { font-size: 13px !important; font-weight: 600 !important; color: var(--black) !important; margin: 0 !important; }
.product-cart table.variations td.value { display: block !important; width: 100% !important; padding: 0 !important; border: 0 !important; }
.product-cart table.variations select, .product-cart .value select {
  width: 100% !important; height: 52px !important; min-height: 52px !important;
  padding: 0 40px 0 16px !important; font-size: 16px !important; font-weight: 500 !important;
  border-radius: 10px !important; border: 1px solid var(--border) !important;
}
.product-cart .reset_variations { display: none !important; }
.woocommerce-variation-add-to-cart, .variations_button {
  display: flex !important; flex-direction: column !important; gap: 10px !important; width: 100% !important; margin-top: 10px !important;
}
.product-cart form.cart button.single_add_to_cart_button {
  width: 100% !important; min-width: 0 !important; height: 52px !important;
  border-radius: 10px !important; font-size: 16px !important; margin: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
}
.woocommerce-variation-availability { order: -1; margin: 0 !important; }
.woocommerce-variation-availability p, .product-cart .stock { margin: 0 !important; font-size: 13px !important; }
.woocommerce-variation-price { margin: 0 0 4px !important; }

/* motyw Avada opakowuje select w .avada-select-parent, a etykieta to td.label */
.product-cart table.variations td.label { display: block !important; width: 100% !important; text-align: left !important; padding: 0 0 6px !important; border: 0 !important; }
.product-cart table.variations td.label label { font-size: 13px !important; font-weight: 600 !important; color: var(--black) !important; margin: 0 !important; }
.product-cart .avada-select-parent, .avada-select-parent {
  width: 100% !important; display: block !important; max-width: none !important; position: relative !important;
}
.product-cart .avada-select-parent::after, .avada-select-parent::before { display: none !important; }
.product-cart table.variations select, .product-cart .avada-select-parent select {
  width: 100% !important; max-width: none !important; box-sizing: border-box !important;
}

/* stary motyw opakowuje tabele wariantow w <div style="float:left;width:50%">
   przez co pole wyboru plci mialo polowe szerokosci przycisku */
.product-cart form.cart > div[style*="50%"],
.product-cart form.cart div[style*="float:left"],
.product-cart form.cart div[style*="float: left"] {
  width: 100% !important; float: none !important; max-width: none !important;
}
.product-cart form.cart { display: block !important; width: 100% !important; }
.product-cart .single_variation_price_reset, .product-cart .single_variation_wrap { width: 100% !important; float: none !important; }
.sd-var-wrap { width: 100% !important; float: none !important; display: block !important; }

/* ── STOPKA: czytelne napisy na ciemnym tle ──────────────────
   Stary motyw narzucal ciemny kolor linkom, przez co listy w stopce
   („Najblizsze randki", „Informacje", „Kontakt i wspolpraca") byly
   praktycznie niewidoczne. */
.site-footer, .site-footer p, .site-footer li, .site-footer div, .site-footer span {
  color: rgba(255,255,255,0.82) !important;
}
.site-footer a, .footer-links a, .footer-cities a, .footer-meta a, .site-footer .footer-col a {
  color: rgba(255,255,255,0.86) !important; text-decoration: none !important;
}
.site-footer a:hover, .footer-links a:hover, .footer-cities a:hover, .footer-meta a:hover {
  color: #fff !important; text-decoration: underline !important;
}
.site-footer .fc-head { color: #fff !important; opacity: 1 !important; font-size: 14.5px !important; letter-spacing: .02em; }
.site-footer .footer-brand { color: #fff !important; }
.site-footer .footer-credit { color: rgba(255,255,255,0.55) !important; }
.footer-links li, .footer-cities a { font-size: 14.5px !important; }
.fn-form input { color: #fff !important; }
.fn-form input::placeholder { color: rgba(255,255,255,0.55) !important; }

/* ── DATA WYDARZENIA (priorytet klienta) ─────────────────────── */
.ec-meta-date { color: var(--black) !important; font-weight: 800 !important; }
.ec-date-pill {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: #fff; border-radius: 8px; padding: 5px 8px; text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.22); line-height: 1; min-width: 40px;
}
.ec-date-pill .ec-day { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 17px; font-weight: 700; color: var(--black); }
.ec-date-pill .ec-month { display: block; font-size: 9.5px; font-weight: 800; color: var(--red); letter-spacing: .08em; margin-top: 2px; }

/* ── KARTY: koniec rozpychania na waskich ekranach ────────────
   Elementy siatki bez min-width:0 nie moga sie skurczyc ponizej
   swojej tresci, przez co karta wychodzila poza ekran telefonu. */
.event-card, .ec-body, .ec-meta-row, .ec-signup-grid, .ec-row-stock, .ec-price-row, .ec-title { min-width: 0 !important; }
.ec-body { overflow-wrap: anywhere; word-break: break-word; }
.ec-title a { overflow-wrap: anywhere; }
.ec-meta-row { overflow-wrap: anywhere; }
.ec-meta-venue { overflow-wrap: anywhere; }
.events-list, .city-events, .page { max-width: 100%; overflow-x: clip; }

@media (max-width: 900px) {
  /* zapisy: etykieta nad przyciskiem, przycisk pelnej szerokosci */
  .ec-signup-grid { grid-template-columns: 1fr !important; gap: 6px !important; }
  .ec-signup-grid .btn-signup {
    width: 100% !important; min-height: 44px !important; padding: 11px 14px !important;
    font-size: 14px !important; white-space: nowrap !important; overflow: visible !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
  }
  .ec-row-stock { white-space: normal !important; overflow: visible !important; }
  .ec-date-pill { top: 6px; left: 6px; padding: 4px 6px; min-width: 34px; }
  .ec-date-pill .ec-day { font-size: 15px; }
  .ec-date-pill .ec-month { font-size: 8.5px; }
  .footer-cities { gap: 6px 12px; }
}
@media (max-width: 600px) {
  .ec-meta-row { font-size: 12px !important; gap: 3px 6px !important; }
  .ec-meta-i:not(:last-child)::after { margin-left: 6px; }
  .ec-title { font-size: 15px !important; }
  .ec-price-val { font-size: 19px !important; }
}

/* ── OKNO ZAPISU: sterowane atrybutem [hidden], nie klasa ─────
   REGRESJA (naprawiona 27.08 13:2x): odtworzony CSS mial
   .sd-signup-modal{display:none} na stale, a JS tylko zdejmuje
   atrybut hidden. Przez to przyciski „Zapisz sie" nic nie robily. */
.sd-signup-modal { display: flex !important; }
.sd-signup-modal[hidden] { display: none !important; }
.sd-signup-modal .ssm-dialog { max-height: 90vh; overflow-y: auto; }
@media (max-width: 600px) {
  .sd-signup-modal { padding: 0 !important; align-items: flex-end !important; }
  .sd-signup-modal .ssm-dialog { width: 100% !important; max-width: 100% !important; border-radius: 16px 16px 0 0 !important; max-height: 92vh; padding: 22px 18px 26px !important; }
}

/* ── KOD RABATOWY w oknie zapisu ─────────────────────────────── */
.ssm-kod-row { display: flex; gap: 8px; }
.ssm-kod-row input { flex: 1; min-width: 0; text-transform: uppercase; }
.ssm-kod-btn {
  flex: 0 0 auto; padding: 12px 16px; border: 1px solid var(--border); background: #fff;
  border-radius: 8px; font-weight: 700; font-size: 14px; color: var(--black); cursor: pointer;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.ssm-kod-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.ssm-kod-btn:disabled { opacity: .6; cursor: not-allowed; }
.ssm-kod-res { display: none; margin-top: 6px; font-size: 13px; padding: 8px 11px; border-radius: 7px; line-height: 1.4; }
.ssm-kod-res.ok { display: block; background: #dcfce7; color: #166534; font-weight: 600; }
.ssm-kod-res.err { display: block; background: var(--red-soft); color: var(--red-dark); }
