/* Theme: EKP 2026 */

/* ============================================================
   WARSTWA 1 — Zmienne systemu wtyczki ← wartości z page-ekp-2026.php :root
   Mapowanie:
     --navy        → --purple-900
     --navy-light  → --purple-800 / --card
     --navy-mid    → --purple-700 / --card-2
     --green       → --purple-600
     --green-light → --purple-500
     --green-dark  → --btn-hover
     --gold-accent → --gold / --accent
     --gold-light  → --gold-2 / --accent-2
     --shadow-sm/md/lg → --shadow-light/medium/heavy
     --radius-lg   → --radius
     --radius-sm   → --btn-radius
   ============================================================ */
.lwm-theme-ekp-2026 {
    --gold: #c9a84c;
    --gold-2: #e8d48b;
    --purple-900: #0a1628;
    --purple-800: #132244;
    --purple-700: #1a2d52;
    --purple-600: #1a6b4a;
    --purple-500: #228b5b;
    --text: #ffffff;
    --bg: linear-gradient(180deg, #0a1628 0%, #1a2d52 100%);
    --card: #132244;
    --card-2: #1a2d52;
    --card-3: rgba(26,45,82,1);
    --card-3-pt: rgba(26,45,82,1);
    --card-4: rgba(10,22,40,.95);
    --accent: #c9a84c;
    --accent-2: #e8d48b;
    --radius: 20px;
    --shadow-light: 0 2px 8px rgba(10,22,40,.06);
    --shadow-medium: 0 4px 20px rgba(10,22,40,.10);
    --shadow-heavy: 0 8px 40px rgba(10,22,40,.14);
    --shadow-btn-default: 0 4px 16px rgba(26,107,74,.3);
    --shadow-btn-hover: 0 6px 24px rgba(26,107,74,.4);
    --head-h: 60px;
    --tab-h: 48px;
    --tab-overlap: 12px;
    --btn-font: 1rem;
    --btn-pad-y: 16px;
    --btn-pad-x: 36px;
    --btn-radius: 8px;
    --btn-hover: #145a3e;
}

/* ============================================================
   WARSTWA 2 — Style HTML z card.php (klasy .ekp-ticket*)
   Każda reguła scopowana pod .lwm-theme-ekp-2026
   Wartości wzięte DOSŁOWNIE z CSS w page-ekp-2026.php
   ============================================================ */

/* --- Grid kart (override gapa i kolumn) --- */
.lwm-theme-ekp-2026 .cards-grid {
    gap: 28px;
}

.lwm-theme-ekp-2026 .cards-grid > .lwm-ekp-2026-slide {
    min-width: 0;
    height: 100%;
}

.lwm-theme-ekp-2026 .cards-grid > .lwm-ekp-2026-slide .ekp-ticket {
    height: 100%;
}

/* --- Karta bazowa --- */
.lwm-theme-ekp-2026 .ekp-ticket {
    background: #ffffff;
    border: 1px solid #dfe3eb;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.lwm-theme-ekp-2026 .ekp-ticket:hover {
    box-shadow: 0 8px 40px rgba(10,22,40,.14);
    transform: translateY(-4px);
}

.lwm-theme-ekp-2026 .ekp-ticket:focus-within {
    box-shadow: 0 8px 40px rgba(10,22,40,.14);
    transform: translateY(-4px);
}

/* --- Karta wyróżniona --- */
.lwm-theme-ekp-2026 .ekp-ticket--featured {
    border: 2px solid #c9a84c;
    box-shadow: 0 4px 20px rgba(10,22,40,.10);
}

.lwm-theme-ekp-2026 .ekp-ticket--featured:hover,
.lwm-theme-ekp-2026 .ekp-ticket--featured:focus-within {
    box-shadow: 0 8px 40px rgba(10,22,40,.14);
}

/* --- Badge wyróżnienia (odpowiednik ::before z page-ekp-2026.php,
       użyty jako element DOM bo etykieta jest dynamiczna) --- */
.lwm-theme-ekp-2026 .ekp-ticket__badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #c9a84c, #d4b65a);
    color: #0a1628;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px;
    font-family: 'Montserrat', sans-serif;
}

/* --- Nazwa biletu --- */
.lwm-theme-ekp-2026 .ekp-ticket__name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.lwm-theme-ekp-2026 .ekp-ticket--featured .ekp-ticket__name {
    margin-top: 20px;
}

/* --- Stara cena (przekreślona, PRZED aktualną ceną w HTML) --- */
.lwm-theme-ekp-2026 .ekp-ticket__price-old {
    font-size: 1.1rem;
    color: #8892a4;
    text-decoration: line-through;
    margin-bottom: 2px;
}

/* --- Aktualna cena --- */
.lwm-theme-ekp-2026 .ekp-ticket__price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a6b4a;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

/* --- Suffix ceny (np. "brutto") --- */
.lwm-theme-ekp-2026 .ekp-ticket__price-suffix {
    font-size: 0.5em;
    font-weight: 400;
}

/* --- Lista benefitów --- */
.lwm-theme-ekp-2026 .ekp-ticket__features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex: 1 1 auto;
    text-align: left;
}

.lwm-theme-ekp-2026 .ekp-ticket__features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.95rem;
    color: #1a1a2e;
    border-bottom: 1px solid #dfe3eb;
}

.lwm-theme-ekp-2026 .ekp-ticket__features li:last-child {
    border-bottom: none;
}

.lwm-theme-ekp-2026 .ekp-ticket__features li::before {
    content: '\2714'; /* ✔ */
    position: absolute;
    left: 0;
    color: #1a6b4a;
    font-weight: 700;
}

.lwm-theme-ekp-2026 .ekp-ticket__features li.excluded {
    color: #8892a4;
    text-decoration: line-through;
}

.lwm-theme-ekp-2026 .ekp-ticket__features li.excluded::before {
    content: '\2014'; /* — */
    color: #8892a4;
}

/* --- Przyciski w karcie --- */
.lwm-theme-ekp-2026 .ekp-ticket .ekp-btn {
    width: 100%;
    margin-top: auto;
}

.lwm-theme-ekp-2026 .ekp-ticket .ekp-btn:focus-visible {
    outline: 3px solid #c9a84c;
    outline-offset: 3px;
}

.lwm-theme-ekp-2026 .ekp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    line-height: 1.3;
    text-decoration: none;
}

.lwm-theme-ekp-2026 button.ekp-btn,
.lwm-theme-ekp-2026 input[type="button"].ekp-btn,
.lwm-theme-ekp-2026 input[type="submit"].ekp-btn {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    letter-spacing: inherit;
    text-transform: none;
    background-image: none;
    margin: 0;
}

.lwm-theme-ekp-2026 .ekp-btn:focus-visible {
    outline: 3px solid #c9a84c;
    outline-offset: 3px;
}

.lwm-theme-ekp-2026 .ekp-btn--primary {
    background: #1a6b4a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(26,107,74,0.25);
}
.lwm-theme-ekp-2026 .ekp-btn--primary:hover {
    background: #228b5b !important;
    color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(26,107,74,0.4) !important;
    transform: translateY(-2px);
}

.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--primary:hover,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--primary:focus,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--primary:focus-visible,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--primary:active {
    background: #228b5b !important;
    color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(26,107,74,0.4) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    outline: 0;
}

.lwm-theme-ekp-2026 .ekp-btn--secondary {
    background: transparent !important;
    color: #0a1628 !important;
    border: 2px solid #0a1628 !important;
    border-radius: 8px !important;
    padding: 12px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    box-shadow: none !important;
}
.lwm-theme-ekp-2026 .ekp-btn--secondary:hover {
    background: #0a1628 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(10,22,40,0.15) !important;
}

.lwm-theme-ekp-2026 .ekp-btn--secondary:focus-visible,
.lwm-theme-ekp-2026 .ekp-btn--secondary:active {
    background: #0a1628 !important;
    color: #ffffff !important;
    border-color: #0a1628 !important;
    box-shadow: 0 4px 16px rgba(10,22,40,0.15) !important;
}

.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--secondary:hover,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--secondary:focus,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--secondary:focus-visible,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--secondary:active {
    background: #0a1628 !important;
    color: #ffffff !important;
    border-color: #0a1628 !important;
    box-shadow: 0 4px 16px rgba(10,22,40,0.15) !important;
    outline: 0;
}

.lwm-theme-ekp-2026 .ekp-btn--outline-white:hover,
.lwm-theme-ekp-2026 .ekp-btn--outline-white:focus-visible,
.lwm-theme-ekp-2026 .ekp-btn--outline-white:active {
    background: rgba(255,255,255,0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--outline-white:hover,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--outline-white:focus,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--outline-white:focus-visible,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--outline-white:active {
    background: rgba(255,255,255,0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: 0;
}

.lwm-theme-ekp-2026 .ekp-btn--gold {
    background: linear-gradient(135deg, #c9a84c, #d4b65a) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 28px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    box-shadow: none;
}
.lwm-theme-ekp-2026 .ekp-btn--gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 24px rgba(201,168,76,0.4) !important;
    transform: translateY(-2px);
}

.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--gold:hover,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--gold:focus,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--gold:focus-visible,
.lwm-scope.lwm-pricing.lwm-theme-ekp-2026 .btn-buy.ekp-btn--gold:active {
    background: linear-gradient(135deg, #c9a84c, #d4b65a) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 24px rgba(201,168,76,0.4) !important;
    border-color: transparent !important;
    filter: brightness(1.1);
    transform: translateY(-2px);
    outline: 0;
}

/* ============================================================
   WARSTWA 3 — Elementy wtyczki poza kartą w kolorach EKP 2026
   (modale, tabela porównawcza, btn-ghost, toast, scrollbar)
   ============================================================ */

/* ============================================================
   MODAL "DODAJ DO KOSZYKA" — styl EKP (jasne tło jak ekp-section--light)
   ============================================================ */

/* Modal koszyka — jasne tło EKP */
.lwm-theme-ekp-2026 .lwm-modal__backdrop { background: rgba(10,22,40,0.65); }

.lwm-theme-ekp-2026 .lwm-modal__dialog {
    background: #ffffff !important;
    border: 1px solid #dfe3eb !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 40px rgba(10,22,40,0.18) !important;
}

.lwm-theme-ekp-2026 .lwm-modal__header { border-bottom-color: #dfe3eb; }
.lwm-theme-ekp-2026 .lwm-modal__title { color: #0a1628 !important; }
.lwm-theme-ekp-2026 .lwm-modal__close { background: rgba(10,22,40,0.06) !important; color: #5a6275 !important; }
.lwm-theme-ekp-2026 .lwm-modal__close:hover { background: rgba(10,22,40,0.12) !important; color: #0a1628 !important; }

/* Karta produktu */
.lwm-theme-ekp-2026 .lwm-modal__product-badge { background: #1a6b4a; }
.lwm-theme-ekp-2026 .lwm-modal__product-badge--gold { background: #c9a84c; }
.lwm-theme-ekp-2026 .lwm-modal__product-badge--secondary { background: #0a1628; }
.lwm-theme-ekp-2026 .lwm-modal__product-name { color: #0a1628 !important; }
.lwm-theme-ekp-2026 .lwm-modal__product-price { color: #1a6b4a !important; }
.lwm-theme-ekp-2026 .lwm-modal__product-old-price { color: #8892a4 !important; opacity: 1 !important; }

/* Divider i tło total */
.lwm-theme-ekp-2026 .lwm-modal__divider { background: #dfe3eb; }
.lwm-theme-ekp-2026 .lwm-modal__total { background: #f7f8fa; }
.lwm-theme-ekp-2026 .lwm-modal__total-label { color: #5a6275 !important; opacity: 1; }
.lwm-theme-ekp-2026 .lwm-modal__total-value { color: #1a6b4a !important; }

/* Label ilości */
.lwm-theme-ekp-2026 .lwm-modal__qty-label { color: #5a6275 !important; opacity: 1; }

/* Stepper */
.lwm-theme-ekp-2026 .lwm-qty__controls {
    border-color: #dfe3eb !important;
    background: #f7f8fa !important;
    border-radius: 10px !important;
}
.lwm-theme-ekp-2026 .lwm-qty__btn { color: #0a1628 !important; }
.lwm-theme-ekp-2026 .lwm-qty__btn:hover { background: #1a6b4a !important; color: #ffffff !important; }
.lwm-theme-ekp-2026 .lwm-qty__input {
    border-left-color: #dfe3eb !important;
    border-right-color: #dfe3eb !important;
    color: #1a1a2e !important;
    background: #ffffff !important;
}

/* Microcopy */
.lwm-theme-ekp-2026 .lwm-modal__microcopy { color: #8892a4 !important; opacity: 1 !important; }

/* Przyciski modalu */
.lwm-theme-ekp-2026 .lwm-btn--cancel {
    color: #0a1628 !important;
    border-color: #dfe3eb !important;
    background: transparent !important;
}
.lwm-theme-ekp-2026 .lwm-btn--cancel:hover {
    background: #f7f8fa !important;
    border-color: #0a1628 !important;
}
.lwm-theme-ekp-2026 .lwm-btn--confirm {
    background: #1a6b4a !important;
    color: #ffffff !important;
}
.lwm-theme-ekp-2026 .lwm-btn--confirm:hover {
    background: #228b5b !important;
    box-shadow: 0 4px 16px rgba(26,107,74,0.3) !important;
}
.lwm-theme-ekp-2026 .lwm-btn--cart {
    background: #1a6b4a !important;
    color: #ffffff !important;
}
.lwm-theme-ekp-2026 .lwm-btn--cart:hover { background: #228b5b !important; }

/* Sukces */
.lwm-theme-ekp-2026 .lwm-modal__success-icon { background: transparent !important; color: #1a6b4a !important; }
.lwm-theme-ekp-2026 #lwm-success-text { color: #5a6275 !important; }
.lwm-theme-ekp-2026 .lwm-modal__success-title { color: #0a1628 !important; }
.lwm-theme-ekp-2026 .lwm-modal__success-text { color: #5a6275 !important; opacity: 1 !important; }

/* Toast */
.lwm-theme-ekp-2026 .lwm-toast {
    background: #ffffff;
    border-color: #dfe3eb;
    color: #1a1a2e;
    box-shadow: 0 8px 40px rgba(10,22,40,0.14);
}
.lwm-theme-ekp-2026 .lwm-toast__msg { color: #1a1a2e; }
.lwm-theme-ekp-2026 .lwm-toast__close { color: #5a6275; }

/* ============================================================
   MODAL PORÓWNANIA — styl EKP (navy tło jak ekp-section--navy)
   ============================================================ */
.lwm-theme-ekp-2026 .modal-backdrop {
    background: rgba(10,22,40,0.7);
}

.lwm-theme-ekp-2026 .modal-dialog {
    background: #0a1628 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4) !important;
}

.lwm-theme-ekp-2026 .modal-close {
    color: rgba(255,255,255,0.6);
}
.lwm-theme-ekp-2026 .modal-close:hover {
    color: #ffffff;
}

.lwm-theme-ekp-2026 .modal-body {
    color: rgba(255,255,255,0.85);
}

.lwm-theme-ekp-2026 .modal-body > h3:first-child {
    color: #ffffff !important;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* Tabela porównania */
.lwm-theme-ekp-2026 .pricing-table.compare {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    overflow: hidden;
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-header > div {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-header .ticket-col {
    background: rgba(201,168,76,0.08);
    color: #c9a84c !important;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-row .benefit {
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.82);
    border-bottom-color: rgba(255,255,255,0.05);
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-row .check {
    background: rgba(255,255,255,0.03);
    border-bottom-color: rgba(255,255,255,0.05);
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-row .check.yes::after {
    content: '✔';
    color: #1a6b4a;
    font-size: 15px;
    opacity: 1;
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-row .check.no::after {
    content: '✖';
    color: rgba(255,255,255,0.2);
    font-size: 13px;
    opacity: 1;
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-footer > * {
    background: rgba(255,255,255,0.02);
}

.lwm-theme-ekp-2026 .pricing-table.compare .pricing-footer .btn-buy,
.lwm-theme-ekp-2026 .pricing-table.compare .pricing-footer a.btn-buy {
    background: #1a6b4a !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.85rem;
}
.lwm-theme-ekp-2026 .pricing-table.compare .pricing-footer .btn-buy:hover,
.lwm-theme-ekp-2026 .pricing-table.compare .pricing-footer a.btn-buy:hover {
    background: #228b5b !important;
}

/* Scrollbar modalu porównania */
.lwm-theme-ekp-2026 .modal-body::-webkit-scrollbar-thumb {
    background: rgba(201,168,76,0.3);
}
.lwm-theme-ekp-2026 .modal-body {
    scrollbar-color: rgba(201,168,76,0.3) transparent;
}

/* --- Przycisk ghost (porównanie pakietów) --- */
.lwm-theme-ekp-2026 .btn-ghost {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 32px !important;
    background: transparent !important;
    color: #0a1628 !important;
    border: 2px solid #0a1628 !important;
    border-radius: 8px !important;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none !important;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.lwm-theme-ekp-2026 .btn-ghost:hover,
.lwm-theme-ekp-2026 .btn-ghost:focus {
    background: #0a1628 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(10,22,40,0.15) !important;
    outline: none;
}

/* Odstęp od kart */
.lwm-theme-ekp-2026 .price-cards .centered {
    margin-top: 40px;
    padding-top: 8px;
}

/* --- Notatka cenowa --- */
.lwm-theme-ekp-2026 .ekp-ticket__price-note {
    font-size: 0.82rem;
    color: #8892a4;
    text-align: center;
    margin: 8px 0 0;
    padding: 0;
    line-height: 1.4;
}

/* --- Tooltip z dostępnością biletów --- */
.lwm-theme-ekp-2026 .ekp-ticket__tooltip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 10px auto 0;
    padding: 6px 14px;
    background: #fff3cd;
    color: #856404;
    border: none;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: default;
    text-align: center;
}

.lwm-theme-ekp-2026 .ekp-ticket__tooltip-icon {
    width: 16px;
    height: 16px;
    background: #856404;
    color: #fff3cd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ============================================================
   WARSTWA 4 — Media queries z page-ekp-2026.php
   przeportowane na scope .lwm-theme-ekp-2026
   ============================================================ */
@media (max-width: 1024px) {
    .lwm-theme-ekp-2026 .cards-grid:not(.slick-initialized) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
    }

    .lwm-theme-ekp-2026 .price-cards {
        overflow: hidden;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider {
        display: block;
        width: 100%;
        max-width: none;
        margin: 2rem 0 0;
        grid-template-columns: none;
        padding-inline: 22px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-list {
        margin: 0 -14px;
        padding: 4px 0 16px;
        overflow: hidden;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-track {
        display: flex !important;
        align-items: stretch;
        margin-left: 0;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-slide {
        height: auto;
        min-width: 0;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-slide.lwm-ekp-2026-slide {
        display: flex;
        height: 100%;
        padding: 0 14px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-slide.lwm-ekp-2026-slide > .ekp-ticket {
        width: 100%;
        min-width: 0;
        height: 100%;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-dots {
        position: static;
        margin-top: 6px;
        width: 100%;
        text-align: center;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-dots li {
        margin: 0 2px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-dots li button:before {
        font-size: 10px;
        color: #0a1628;
        opacity: 0.22;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-dots li.slick-active button:before {
        color: #1a6b4a;
        opacity: 1;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow {
        position: absolute;
        top: calc(50% - 28px);
        z-index: 3;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(10,22,40,0.12);
        border-radius: 999px;
        background: rgba(255,255,255,0.94);
        color: #0a1628;
        box-shadow: 0 10px 30px rgba(10,22,40,0.12);
        display: flex !important;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow:hover,
    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow:focus-visible {
        background: #ffffff;
        color: #1a6b4a;
        box-shadow: 0 14px 34px rgba(10,22,40,0.16);
        transform: translateY(-1px);
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow.slick-disabled {
        opacity: 0.35;
        pointer-events: none;
        box-shadow: none;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-prev.lwm-ekp-slider-arrow {
        left: -2px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-next.lwm-ekp-slider-arrow {
        right: -2px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow::before {
        content: none;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow span {
        font-size: 28px;
        line-height: 1;
        margin-top: -2px;
    }

    .lwm-theme-ekp-2026 .ekp-ticket {
        padding: 36px 24px;
    }
}

@media (max-width: 560px) {
    .lwm-theme-ekp-2026 .cards-grid:not(.slick-initialized) {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-list {
        margin: 0 -10px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .slick-slide.lwm-ekp-2026-slide {
        padding: 0 10px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider {
        padding-inline: 18px;
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow {
        width: 36px;
        height: 36px;
        top: calc(50% - 24px);
    }

    .lwm-theme-ekp-2026 [data-lwm-slider="ekp-2026"].slick-slider .lwm-ekp-slider-arrow span {
        font-size: 24px;
    }

    .lwm-theme-ekp-2026 .ekp-ticket {
        padding: 32px 24px;
    }
}

/* ============================================================
   MODAL EKP 2026 — wersja konwertująca
   ============================================================ */

.lwm-theme-ekp-2026 .lwm-modal__dialog {
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    font-family: var(--ekp-font, inherit);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    max-height: 92dvh;
    overflow-y: auto;
    padding: 0;
}

.lwm-theme-ekp-2026 .lwm-modal__header {
    background: var(--ekp-primary, #1a7a3c);
    color: #ffffff;
    padding: 20px 24px 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.lwm-theme-ekp-2026 .lwm-modal__eyebrow {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.8;
    margin: 0 0 4px;
    font-weight: 500;
}

.lwm-theme-ekp-2026 .lwm-modal__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
    color: #ffffff;
}

.lwm-theme-ekp-2026 .lwm-modal__close {
    position: static;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
    margin-top: 2px;
}

.lwm-theme-ekp-2026 .lwm-modal__close:hover {
    background: rgba(255,255,255,0.28);
}

.lwm-theme-ekp-2026 .lwm-modal__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lwm-theme-ekp-2026 .lwm-modal__ticket {
    background: #f8faf9;
    border: 1.5px solid var(--ekp-primary, #1a7a3c);
    border-radius: 12px;
    padding: 16px 18px;
    position: relative;
}

.lwm-theme-ekp-2026 .lwm-modal__pool-badge {
    display: inline-block;
    background: var(--ekp-accent, #f5c842);
    color: #1a1a2e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.lwm-theme-ekp-2026 .lwm-modal__ticket-name {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.lwm-theme-ekp-2026 .lwm-modal__ticket-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.lwm-theme-ekp-2026 .lwm-modal__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--ekp-primary, #1a7a3c);
}

.lwm-theme-ekp-2026 .lwm-modal__old-price {
    font-size: 15px;
    color: #94a3b8;
    text-decoration: line-through;
}

.lwm-theme-ekp-2026 .lwm-modal__price-note {
    font-size: 11px;
    color: #64748b;
    margin: 6px 0 0;
}

.lwm-theme-ekp-2026 .lwm-qty {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lwm-theme-ekp-2026 .lwm-qty__label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
}

.lwm-theme-ekp-2026 .lwm-qty__controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.lwm-theme-ekp-2026 .lwm-qty__btn {
    background: #f8fafc;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 20px;
    font-weight: 300;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    line-height: 1;
}

.lwm-theme-ekp-2026 .lwm-qty__btn:hover {
    background: #e8f5ee;
    color: var(--ekp-primary, #1a7a3c);
}

.lwm-theme-ekp-2026 #lwm-qty-input {
    width: 52px;
    height: 44px;
    text-align: center;
    border: none;
    border-left: 1.5px solid #e2e8f0;
    border-right: 1.5px solid #e2e8f0;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff;
    -moz-appearance: textfield;
}

.lwm-theme-ekp-2026 #lwm-qty-input::-webkit-inner-spin-button,
.lwm-theme-ekp-2026 #lwm-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.lwm-theme-ekp-2026 .lwm-qty__note {
    font-size: 11px;
    color: #64748b;
    margin: 0;
}

.lwm-theme-ekp-2026 .lwm-modal__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1.5px solid #e2e8f0;
    padding-top: 16px;
}

.lwm-theme-ekp-2026 .lwm-modal__summary-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.lwm-theme-ekp-2026 .lwm-modal__summary-total {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
}

.lwm-theme-ekp-2026 .lwm-modal__includes {
    background: #f0f9f4;
    border-radius: 10px;
    padding: 14px 16px;
}

.lwm-theme-ekp-2026 .lwm-modal__includes-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lwm-theme-ekp-2026 .lwm-modal__includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.lwm-theme-ekp-2026 .lwm-modal__includes-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    line-height: 1.4;
}

.lwm-theme-ekp-2026 .lwm-modal__includes-icon {
    color: var(--ekp-primary, #1a7a3c);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 1px;
}

.lwm-theme-ekp-2026 .lwm-modal__includes-platinum .lwm-modal__includes-icon {
    color: var(--ekp-accent, #f5c842);
}

.lwm-theme-ekp-2026 .lwm-modal__scarcity {
    font-size: 12px;
    font-weight: 600;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}

.lwm-theme-ekp-2026 .lwm-modal__scarcity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
    flex-shrink: 0;
    animation: lwm-pulse 1.8s ease-in-out infinite;
}

@keyframes lwm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.lwm-theme-ekp-2026 .lwm-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lwm-theme-ekp-2026 .lwm-btn--confirm {
    display: block;
    width: 100%;
    padding: 15px 24px;
    background: var(--ekp-primary, #1a7a3c);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.02em;
}

.lwm-theme-ekp-2026 .lwm-btn--confirm:hover {
    background: #155f30;
    transform: translateY(-1px);
}

.lwm-theme-ekp-2026 .lwm-btn--confirm:active {
    transform: translateY(0);
}

.lwm-theme-ekp-2026 .lwm-modal__safety {
    font-size: 11px;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
    text-align: center;
}

.lwm-theme-ekp-2026 .lwm-modal__success {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: #ffffff;
    padding: 40px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.lwm-theme-ekp-2026 .lwm-modal__success[hidden],
.lwm-theme-ekp-2026 .lwm-modal__loading[hidden] {
    display: none !important;
}

.lwm-theme-ekp-2026 .lwm-modal__success-icon {
    color: var(--ekp-primary, #1a7a3c);
}

.lwm-theme-ekp-2026 .lwm-modal__success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__dialog,
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__dialog {
    width: min(380px, calc(100vw - 32px)) !important;
    max-width: calc(100vw - 32px) !important;
    max-height: none !important;
    overflow: hidden !important;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__header,
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__header {
    display: none !important;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__body[hidden],
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__body[hidden] {
    display: none !important;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__success,
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__success {
    position: static !important;
    inset: auto !important;
    padding: 18px 16px 16px !important;
    gap: 10px !important;
    border-radius: inherit !important;
    background: #ffffff !important;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__success-icon,
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__success-icon {
    margin: 0 auto 2px !important;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__success-actions,
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__success-actions {
    gap: 8px !important;
    margin-top: 4px !important;
}

.lwm-theme-ekp-2026.lwm-modal.is-success-state .lwm-modal__success .lwm-btn,
.lwm-modal.lwm-theme-ekp-2026.is-success-state .lwm-modal__success .lwm-btn {
    min-height: 42px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
}

.lwm-theme-ekp-2026 .lwm-btn--ghost {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, color 0.2s;
}

.lwm-theme-ekp-2026 .lwm-btn--ghost:hover {
    border-color: var(--ekp-primary, #1a7a3c);
    color: var(--ekp-primary, #1a7a3c);
}

@media (max-width: 480px) {
    .lwm-theme-ekp-2026 .lwm-modal__dialog {
        border-radius: 16px 16px 0 0;
        max-height: 95dvh;
    }

    .lwm-theme-ekp-2026 .lwm-modal__title {
        font-size: 17px;
    }

    .lwm-theme-ekp-2026 .lwm-modal__price {
        font-size: 20px;
    }
}

.lwm-theme-ekp-2026 .lwm-modal__dialog {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 16px !important;
}

.lwm-theme-ekp-2026 .lwm-modal__header {
    background: var(--ekp-primary, #1a7a3c) !important;
    color: #ffffff !important;
    border-radius: 16px 16px 0 0;
    border-bottom: 0 !important;
}

.lwm-theme-ekp-2026 .lwm-modal__title,
.lwm-theme-ekp-2026 .lwm-modal__eyebrow {
    color: #ffffff !important;
}

.lwm-theme-ekp-2026 .lwm-modal__close {
    position: static !important;
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
}

.lwm-theme-ekp-2026 .lwm-modal__close:hover {
    background: rgba(255,255,255,0.28) !important;
    color: #ffffff !important;
}
