/* ==========================================================================
   LUNARIA THEME - MAGIC & BUSINESS
   ========================================================================== */

:root {
    /* --- KOLORY GŁÓWNE (PALETA EZOTERYCZNA) --- */
    --lunaria-primary: #5e2a84;
    /* Głęboki fiolet */
    --lunaria-primary-dark: #4b2c68;
    /* Ciemny fiolet (teksty) */
    --lunaria-secondary: #8e44ad;
    /* Jaśniejszy fiolet */
    --lunaria-accent: #9b59b6;
    /* Akcent */
    --lunaria-highlight: #b05fa7;
    /* Róż/Fiolet */
    --lunaria-fire: #c0392b;
    /* Czerwień (miłość/ogień) */

    /* --- TŁA --- */
    --lunaria-bg-white: #ffffff;
    --lunaria-bg-off-white: #f9f7fc;
    --lunaria-bg-glass: rgba(255, 255, 255, 0.92);

    /* --- TEKST --- */
    --lunaria-text-main: #333333;
    --lunaria-text-secondary: #4a4a4a;
    --lunaria-text-muted: #555555;

    /* --- GRADIENTY --- */
    --lunaria-gradient-magic: linear-gradient(135deg,
            var(--lunaria-primary-dark) 0%,
            var(--lunaria-secondary) 50%,
            var(--lunaria-fire) 100%);
    --lunaria-gradient-btn: linear-gradient(135deg,
            var(--lunaria-primary) 0%,
            var(--lunaria-highlight) 100%);
    --lunaria-gradient-btn-hover: linear-gradient(135deg, #6d3099 0%, #c96cc0 100%);

    /* --- CIENIE I BLASKI --- */
    --lunaria-shadow-subtle: 0 5px 15px rgba(0, 0, 0, 0.08);
    --lunaria-shadow-menu: 0 4px 6px rgba(0, 0, 0, 0.02);
    --lunaria-shadow-glow: 0 8px 15px rgba(94, 42, 132, 0.15);
    --lunaria-shadow-magic: 0 10px 25px rgba(142, 68, 173, 0.4);

    /* --- UI CONSTANTS --- */
    --clc-radius-lg: 18px;
    --clc-radius-md: 14px;
    --clc-radius-sm: 12px;
    --clc-max: 1120px;
}

/* ----------------- */
/* RESET & BASE      */
/* ----------------- */
.clc,
.clc * {
    box-sizing: border-box;
}

.clc-wrap {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    color: var(--lunaria-text-main);
    font-family: ui-sans-serif, system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Magiczne tło (Glow effects) */
.clc-wrap::before {
    content: "";
    position: absolute;
    inset: -40px -20px auto -20px;
    height: 600px;
    background:
        radial-gradient(700px 300px at 10% 10%, rgba(142, 68, 173, 0.15), transparent 60%),
        radial-gradient(600px 300px at 90% 20%, rgba(176, 95, 167, 0.15), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.clc-wrap>* {
    position: relative;
    z-index: 1;
}

.clc a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.clc p {
    margin: 0.5em 0 1em;
}

.clc h1,
.clc h2,
.clc h3 {
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-align: center;
}

.clc-muted {
    color: var(--lunaria-text-muted);
    font-size: 0.95em;
    text-align: center;
}

/* ----------------- */
/* HERO SECTION      */
/* ----------------- */
.clc-hero {
    width: 97% !important;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Tekst szerszy, zdjęcie węższe */
    gap: 40px;
    align-items: center;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: var(--clc-radius-lg);
    background:
        radial-gradient(at 0% 0%, rgba(94, 42, 132, 0.05), transparent 50%),
        rgba(255, 255, 255, 0.85);
    box-shadow: var(--lunaria-shadow-subtle);
    backdrop-filter: blur(10px);
}

.clc-hero-head {
    text-align: center;
    margin-bottom: 40px;
}

.clc-h1 {
    font-size: clamp(28px, 3vw, 42px);
    color: var(--lunaria-primary-dark);
    font-weight: 800;
}

.clc-sub {
    font-size: 1.1em;
    color: var(--lunaria-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.clc-hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.clc-hero__intro {
    font-size: 1.05em;
    margin-bottom: 20px;
}

/* Buttons */
.clc-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.clc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.clc-btn--primary {
    color: #fff;
    background: var(--lunaria-gradient-btn);
    box-shadow: 0 8px 20px rgba(94, 42, 132, 0.25);
    border: 1px solid transparent;
}

.clc-btn--primary:hover {
    background: var(--lunaria-gradient-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--lunaria-shadow-magic);
    color: #fff;
}

.clc-btn--secondary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--lunaria-primary);
    color: var(--lunaria-primary-dark);
}

.clc-btn--secondary:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: var(--lunaria-shadow-subtle);
}

/* Trustline icons */
.clc-trustline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    font-size: 0.85em;
    color: var(--lunaria-text-muted);
}

.clc-trustline span {
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Portrait Image */
.clc-hero__box {
    display: flex;
    justify-content: center;
}

.clc-portrait {
    position: relative;
    width: 100%;
    max-width: 400px;
    border-radius: var(--clc-radius-lg);
    overflow: hidden;
    box-shadow: var(--lunaria-shadow-glow);
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.clc-portrait img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.clc-portrait__badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lunaria-primary);
    white-space: nowrap;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ----------------- */
/* TOPICS (Karty)    */
/* ----------------- */
.clc-section,
.clc-features,
.clc-hero {
    margin-bottom: 60px;
    padding: 0 25px !important;
}

.clc-topics__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.clc-topic {
    display: flex;
    flex-direction: column;
    /* Wersja pionowa (karta) */
    align-items: center;
    text-align: center;
    padding: 0 25px !important;
    background: var(--lunaria-bg-glass);
    border: 1px solid rgba(155, 89, 182, 0.15);
    border-radius: var(--clc-radius-lg);
    box-shadow: var(--lunaria-shadow-subtle);
    transition: all 0.2s ease;
}

.clc-topic:hover {
    transform: translateY(-5px);
    border-color: rgba(155, 89, 182, 0.4);
    box-shadow: var(--lunaria-shadow-glow);
}

.clc-topic__ico {
    width: 60px;
    height: 60px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(155, 89, 182, 0.1);
    color: var(--lunaria-primary);
    border-radius: 50%;
    margin-bottom: 15px;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

/* Kolorowanie ikonek */
.clc-topic--love .clc-topic__ico {
    color: var(--lunaria-fire);
    background: rgba(192, 57, 43, 0.1);
}

.clc-topic--work .clc-topic__ico {
    color: #d35400;
    background: rgba(211, 84, 0, 0.1);
}

.clc-topic--protect .clc-topic__ico {
    color: var(--lunaria-primary);
}

.clc-topic__body h3 {
    font-size: 1.2rem;
    color: var(--lunaria-primary-dark);
    margin-bottom: 10px;
}

.clc-topic__body p {
    font-size: 0.95rem;
    color: var(--lunaria-text-secondary);
    margin-bottom: 15px;
}

.clc-topic__cta {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lunaria-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----------------- */
/* LOCAL SEO TEXT    */
/* ----------------- */
.clc-local-seo {
    background: #fff;
    padding: 40px;
    border-radius: var(--clc-radius-lg);
    border-left: 5px solid var(--lunaria-accent);
    box-shadow: var(--lunaria-shadow-menu);
}

.clc-local-seo h2 {
    text-align: left;
    color: var(--lunaria-primary);
}

.clc-seo-content-legacy {
    font-size: 0.95em;
    color: var(--lunaria-text-secondary);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ----------------- */
/* MODAL             */
/* ----------------- */


/* Stylizacja Radio Buttona jako Kafelka */
.clc-radio-label {
    position: relative;
    cursor: pointer;
    user-select: none;
}

/* Ukrywamy prawdziwego inputa */
.clc-radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Wygląd przycisku */
.clc-radio-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid rgba(155, 89, 182, 0.3);
    border-radius: 12px;
    font-weight: 600;
    color: var(--lunaria-text-secondary);
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    min-width: 60px;
    text-align: center;
}

/* Hover */
.clc-radio-label:hover .clc-radio-tile {
    border-color: var(--lunaria-secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(142, 68, 173, 0.1);
}

/* Stan zaznaczony (CHECKED) - Magiczny Fiolet */
.clc-radio-label input:checked + .clc-radio-tile {
    background: var(--lunaria-gradient-btn);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(94, 42, 132, 0.3);
    transform: translateY(-1px);
}

/* Naprawienie widoczności zakładek, jeśli JS wcześniej nie łapał */
.clc-modal__pane { display: none; }
.clc-modal__pane.is-active { display: block; animation: fadeIn 0.3s; }


/* =========================
   POPRAWKI UI (Button 100%, Switcher Tabs)
   ========================= */

/* 1. Wygląd Zakładek jako Przełącznik (Switcher) */
.clc-modal__tabs {
    background: #f1f3f5; /* Szare tło kontenera */
    padding: 5px;
    border-radius: 50px;
    display: inline-flex;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    gap: 0; /* Brak odstępów, tło robi robotę */
}

.clc-modal__tab {
    background: transparent;
    border: none;
    border-radius: 40px;
    padding: 10px 24px;
    color: var(--lunaria-text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: none; /* Reset poprzednich cieni */
}

.clc-modal__tab.is-active {
    background: #fff;
    color: var(--lunaria-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Uniesienie aktywnego */
}

/* 2. Przycisk "Dodaj do koszyka" - 100% szerokości i Stany */
.clc-tarot__actions {
    flex-direction: column; /* Cena nad przyciskiem */
    align-items: stretch; /* Rozciągnij na szerokość */
    gap: 15px;
    border-top: none; /* Usuwamy linię, bo teraz button jest duży */
}

.clc-tarot__price {
    text-align: center;
    font-size: 1.8rem; /* Większa cena */
    color: var(--lunaria-primary-dark);
    min-height: 20px; /* Żeby nie skakało */
}

.clc-btn[data-clc-tarot-buy] {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 14px;
    /* Domyślny stan (WYSZARZONY - DISABLED) */
    background: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Stan aktywny (gdy JS zdejmie disabled) */
.clc-btn[data-clc-tarot-buy]:not(:disabled) {
    background: var(--lunaria-gradient-btn);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(94, 42, 132, 0.25);
}

.clc-btn[data-clc-tarot-buy]:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: var(--lunaria-shadow-magic);
}

/* 3. Ukrycie informacji "Dostępne od ręki" */
.clc-tarot__hint {
    display: none !important;
}


body.clc-modal-open {
    overflow: hidden;
}

.clc-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.clc-modal[aria-hidden="false"] {
    display: block;
    opacity: 1;
}

.clc-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 30, 0.6);
    backdrop-filter: blur(5px);
}

.clc-modal__dialog {
    position: relative;
    width: 90%;
    max-width: 860px;
    margin: 5vh auto;
    background: #fff;
    border-radius: var(--clc-radius-lg);
    box-shadow: var(--lunaria-shadow-magic);
    border: 1px solid rgba(155, 89, 182, 0.3);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.clc-modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--lunaria-text-muted);
    z-index: 10;
}

.clc-modal__head {
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background: var(--lunaria-bg-off-white);
}

.clc-modal__kicker {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--lunaria-accent);
    font-weight: 700;
}

.clc-modal__title {
    font-size: 24px;
    color: var(--lunaria-primary-dark);
    margin: 5px 0 15px;
}

.clc-modal__tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.clc-modal__tab {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: var(--lunaria-text-muted);
    transition: 0.2s;
}

.clc-modal__tab.is-active {
    background: var(--lunaria-gradient-btn);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(94, 42, 132, 0.2);
}

.clc-modal__body {
    padding: 30px;
    overflow-y: auto;
}

.clc-modal__pane {
    display: none;
}

.clc-modal__pane.is-active {
    display: block;
    animation: fadeIn 0.3s;
}

/* Grid w Modalu */
.clc-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.clc-modal-prod {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
}

.clc-modal-prod:hover {
    border-color: var(--lunaria-accent);
    transform: translateY(-3px);
    box-shadow: var(--lunaria-shadow-menu);
}

.clc-modal-prod__img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.clc-modal-prod__body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.clc-modal-prod__title {
    font-weight: 700;
    color: var(--lunaria-primary-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.clc-modal-prod__price {
    color: var(--lunaria-accent);
    font-weight: 700;
    margin-top: auto;
}

.clc-modal-prod__cta {
    font-size: 13px;
    text-align: right;
    color: var(--lunaria-primary);
    font-weight: 600;
    margin-top: 10px;
}

/* Tarot Form Styles */
.clc-tarot__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clc-tarot__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.clc-tarot__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--lunaria-primary);
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ----------------- */
/* RESPONSIVE        */
/* ----------------- */
@media (max-width: 900px) {
    .clc-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .clc-hero__text {
        align-items: center;
    }

    .clc-cta {
        justify-content: center;
    }

    .clc-trustline {
        justify-content: center;
    }

    .clc-topics__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .clc-wrap {
        padding: 20px 15px;
    }

    .clc-hero {
        padding: 20px;
        gap: 30px;
    }

    .clc-h1 {
        font-size: 26px;
    }

    .clc-topics__grid {
        grid-template-columns: 1fr;
    }

    .clc-btn {
        width: 100%;
    }

    .clc-modal__dialog {
        width: 95%;
        margin: 10px auto;
        max-height: 95vh;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   TRUST FEATURES (Nowa Sekcja)
   ========================= */
.clc-features {
    margin-bottom: 60px;
}

.clc-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.clc-feature {
    background: var(--lunaria-bg-glass);
    border: 1px solid rgba(155, 89, 182, 0.15);
    border-radius: var(--clc-radius-md);
    padding: 20px;
    text-align: center;
    box-shadow: var(--lunaria-shadow-menu);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clc-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--lunaria-shadow-subtle);
    border-color: rgba(155, 89, 182, 0.3);
}

.clc-feature__icon {
    font-size: 32px;
    margin-bottom: 12px;
    background: rgba(155, 89, 182, 0.08);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(155, 89, 182, 0.1);
}

.clc-feature h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lunaria-primary-dark);
    margin: 0 0 6px 0;
}

.clc-feature p {
    font-size: 0.85rem;
    color: var(--lunaria-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Responsywność */
@media (max-width: 900px) {
    .clc-features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .clc-features__grid {
        grid-template-columns: 1fr;
    }

    .clc-feature {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }

    .clc-feature__icon {
        margin-bottom: 0;
        width: 44px;
        height: 44px;
        font-size: 24px;
        flex: 0 0 auto;
    }

    .clc-feature h3 {
        font-size: 1rem;
    }
}

/* =========================
   MAGIC BUTTONS (Tarot Form)
   ========================= */

/* Ukrywamy standardowe pole wyboru, jeśli gdzieś zostało */
.clc-tarot__select { display: none; }

/* Kontener na przyciski */
.clc-tarot-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.clc-tarot__label-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--lunaria-text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SEKCJA PROCESU (TIMELINE) - POPRAWIONA --- */

.clc-process {
    position: relative;
    padding: 3rem 1rem;
    background: var(--lunaria-bg-off-white);
    overflow: hidden;
    padding-top:20px;
    padding-bottom: 20px;
}

.clc-process .clc-container {
        padding-top:20px;
    padding-bottom: 20px;
}

.clc-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.clc-process__title {
    text-align: center;
    color: var(--lunaria-primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
}

.clc-process__subtitle {
    text-align: center;
    color: var(--lunaria-text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- UKŁAD MOBILNY (DOMYŚLNY) --- */
/* Używamy Grid, żeby marker i treść były zawsze idealnie obok siebie */

.clc-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0; /* Odstępy regulujemy paddingiem w itemach */
}

/* Linia w tle - na mobile idzie po lewej stronie, pod kółkami */
.clc-timeline__line {
    position: absolute;
    top: 20px;
    bottom: 50px;
    left: 19px; /* Środek kółka (40px/2) - połowa grubości linii (2px/2) */
    width: 2px;
    background: var(--lunaria-gradient-magic);
    opacity: 0.3;
    z-index: 0;
}

.clc-timeline__item {
    display: grid;
    /* Kolumna 1: Marker (stała szerokość), Kolumna 2: Treść (reszta) */
    grid-template-columns: 40px 1fr; 
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.clc-timeline__marker-col {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Kółko zawsze na górze, nie na środku wysokości tekstu */
}

.clc-timeline__marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--lunaria-bg-white);
    /* Magiczna ramka gradientowa */
    background-image: linear-gradient(var(--lunaria-bg-white), var(--lunaria-bg-white)), 
                      var(--lunaria-gradient-magic);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border: 2px solid transparent;
    
    box-shadow: var(--lunaria-shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lunaria-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2; /* Musi być nad linią */
}

.clc-timeline__content {
    background: var(--lunaria-bg-glass);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--lunaria-shadow-subtle);
    border: 1px solid rgba(142, 68, 173, 0.1);
    backdrop-filter: blur(5px); /* Efekt mlecznego szkła */
}

.clc-timeline__content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--lunaria-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.clc-timeline__content p {
    margin: 0;
    color: var(--lunaria-text-secondary);
    line-height: 1.6;
    font-size: 0.95rem; /* Czytelny font dla grupy 40+ */
}

.clc-timeline__content strong {
    color: var(--lunaria-primary-dark);
}

.clc-timeline__content em {
    color: var(--lunaria-accent);
    font-style: italic;
}

/* --- UKŁAD DESKTOP (ZIG-ZAG) OD 768PX --- */
@media (min-width: 768px) {
    
    /* Linia przesuwa się na środek */
    .clc-timeline__line {
        left: 50%;
        transform: translateX(-50%);
    }

    .clc-timeline__item {
        display: flex; /* Wracamy do flexa na desktopie dla łatwiejszego zig-zaga */
        width: 100%;
        gap: 0;
        margin-bottom: 0;
        min-height: 180px; /* Minimalna wysokość żeby to ładnie oddychało */
    }

    /* Marker pozycjonowany absolutnie na środku */
    .clc-timeline__marker-col {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 60px; /* Więcej miejsca na hover */
        height: 100%;
        display: flex;
        justify-content: center;
        padding-top: 0;
        align-items: center; /* Kółko na środku sekcji */
    }

    .clc-timeline__marker {
        width: 50px; /* Większe kółka na desktopie */
        height: 50px;
        font-size: 1.3rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .clc-timeline__content {
        width: 45%; /* Pudełka po bokach */
        position: relative;
        transition: transform 0.3s ease;
    }

    /* Nieparzyste (1, 3) - Tekst po LEWEJ */
    .clc-timeline__item:nth-child(odd) {
        justify-content: flex-start;
    }
    .clc-timeline__item:nth-child(odd) .clc-timeline__content {
        margin-right: auto;
        text-align: right;
        border-right: 3px solid var(--lunaria-secondary); /* Akcent od strony linii */
        border-left: 1px solid rgba(142, 68, 173, 0.1);
    }

    /* Parzyste (2, 4) - Tekst po PRAWEJ */
    .clc-timeline__item:nth-child(even) {
        justify-content: flex-end;
    }
    .clc-timeline__item:nth-child(even) .clc-timeline__content {
        margin-left: auto;
        text-align: left;
        border-left: 3px solid var(--lunaria-secondary); /* Akcent od strony linii */
        border-right: 1px solid rgba(142, 68, 173, 0.1);
    }

    /* Hover effects (tylko desktop) */
    .clc-timeline__item:hover .clc-timeline__marker {
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(142, 68, 173, 0.4);
    }
    
    .clc-timeline__item:hover .clc-timeline__content {
        transform: translateY(-5px);
    }
}