*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
:root {
    --gold: #c9a96e;
    --gold-dark: #a8844a;
    --dark: #0d0d2e;
    --dark2: #151535;
    --dark3: #1a1a4a;
    --light: #f0e8d8;
    --muted: #9a8f80;
}

body {
    margin: 0;
    font-family: 'Raleway', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

h1, h2, .logo {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 15px 20px;
    background: rgba(10,10,40,0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(6px);
}

nav ul { display: flex; list-style: none; }
nav ul li a { color: var(--light); text-decoration: none; margin: 0 15px; transition: 0.3s; }
nav ul li a:hover { color: var(--gold); }

#hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(5,5,25,0.68), rgba(5,5,25,0.68)), url('img/image_hero2.jpg') no-repeat center center/cover;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline:hover {
    background: var(--gold);
    color: #000;
}

.btn {
    background: var(--gold);
    color: black;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
}

.card {
    border: 1px solid var(--gold);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }
/* --- RESPONSYWNOŚĆ --- */

/* 1. Kontener dla treści - zapobiega rozjeżdżaniu się na boki */
main, section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 2. Media Queries dla Tabletów i Telefonów */
@media (max-width: 768px) {
    nav {
        flex-direction: column; /* Logo nad menu na komórkach */
        padding: 10px;
    }

    nav ul {
        padding: 0;
        margin-top: 15px;
        flex-wrap: wrap; /* Elementy menu zawiną się, jeśli będzie ich za dużo */
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    #hero h1 {
        font-size: 1.8rem; /* Mniejszy napis na telefonie */
    }

    .grid {
        grid-template-columns: 1fr; /* Jedna kolumna zamiast dwóch/trzech */
        padding: 10px;
    }
}

/* 3. Elastyczne obrazki - aby nigdy nie wystawały poza ekran */
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* Styl przycisku hamburgera */
.hamburger {
    display: none; /* Ukryty na komputerach */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Widoczny na telefonach */
    }

    nav ul {
        display: none; /* Domyślnie ukryte menu */
        flex-direction: column;
        width: 100%;
        background: var(--dark);
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
        padding: 20px 0;
    }

    /* Klasa, którą doda JavaScript po kliknięciu */
    nav ul.active {
        display: flex;
    }
}
/* Styl dla kalkulatora i wróżby */
.calc-box, #karta-dnia-container {
    background: var(--dark2);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--gold);
    margin-top: 20px;
}

input[type="date"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--gold);
    background: var(--dark3);
    color: var(--light);
    font-family: inherit;
}

/* Poprawka dla bardzo długiego menu na komórkach */
@media (max-width: 768px) {
    nav ul {
        height: 100vh; /* Menu zajmie cały ekran po rozwinięciu */
        justify-content: flex-start;
        padding-top: 50px;
    }
    nav ul li {
        margin: 15px 0;
        font-size: 1.2rem;
    }
}
/* Kontener wróżby */
.magic-section { text-align: center; padding: 50px 20px; }

.intro-box {
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid var(--gold);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.draw-controls select {
    padding: 10px;
    background: var(--dark3);
    color: var(--light);
    border: 1px solid var(--gold);
    border-radius: 5px;
    margin: 10px 0;
    width: 100%;
    max-width: 300px;
}

.button-group { margin-top: 20px; display: flex; justify-content: center; gap: 10px; }

.btn-secondary { background: var(--dark3); color: var(--light); border: 1px solid rgba(201,169,110,0.3); }

/* Karta */
.card-container { display: flex; justify-content: center; margin-top: 30px; }

.card-rectangle {
    width: 280px;
    min-height: 400px;
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.card-title { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1.5rem; margin-bottom: 15px; }
.card-desc { font-size: 1.1rem; line-height: 1.5; }

/* FAQ - Nowoczesne akordeony */
.faq-container { max-width: 700px; margin: 50px auto; text-align: left; }
details { background: var(--dark2); margin-bottom: 10px; padding: 10px; border-radius: 5px; border: 1px solid rgba(201,169,110,0.15); }
summary { cursor: pointer; color: var(--gold); font-weight: bold; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.calc-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--gold);
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.input-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.input-field input {
    width: 100%;
    padding: 12px;
    background: var(--dark2);
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--light);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

.input-field input:focus {
    border-color: var(--gold);
    outline: none;
}

.result-display {
    margin-top: 40px;
    background: var(--dark2);
    border-radius: 20px;
    padding: 30px;
    border-left: 4px solid var(--gold);
    text-align: left;
    animation: fadeIn 0.8s ease;
}

.result-header h3 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.description-text h3 { font-size: 1.4rem; color: var(--light); margin-top: 20px; }
.description-text h4 { color: var(--gold); margin-top: 15px; }
.description-text p { font-size: 1rem; color: var(--muted); margin-bottom: 15px; }

.support-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(201,169,110,0.2);
    text-align: center;
    font-size: 0.9rem;
}
#backToTop {
    display: none; /* Domyślnie ukryty */
    position: fixed; /* Płynie razem ze stroną */
    bottom: 30px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--gold); /* Twoje złoto */
    color: black;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%; /* Okrągły kształt */
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: opacity 0.3s, transform 0.3s;
}

#backToTop:hover {
    background-color: #fff; /* Rozjaśnienie po najechaniu */
    transform: scale(1.1);
}

/* Styl dla telefonów - nieco mniejszy, by nie zasłaniał treści */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        padding: 12px;
        font-size: 18px;
    }
}
.about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
}

.about-content {
    max-height: 0; /* Ukryte na start */
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    text-align: left;
    color: var(--muted);
}

.about-content p {
    margin-bottom: 15px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
    text-decoration: underline;
    transition: 0.3s;
}

.btn-text:hover {
    color: white;
}
.priority-note {
    background: rgba(201, 169, 110, 0.08);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    margin-bottom: 40px;
    font-style: italic;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
}

.contact-info .info-item {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--light);
    text-decoration: none;
    transition: 0.3s;
}

.contact-info a:hover { color: var(--gold); }

.calendly-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(201,169,110,0.2);
}

.contact-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.contact-data {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
}

.contact-data p {
    font-size: 1.05rem;
    margin: 0;
    color: var(--muted);
}

.contact-data a {
    color: var(--light);
    text-decoration: none;
    transition: 0.3s;
}

.contact-data a:hover { color: var(--gold); }

.contact-form-container {
    width: 100%;
}

.btn-small {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* Styl Formularza */
#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: var(--dark2);
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--light);
    border-radius: 5px;
    font-family: inherit;
}

#contact-form input:focus, #contact-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
.blog-archive {
    padding-top: 100px; /* Miejsce na stałe menu */
    max-width: 1100px;
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.blog-card {
    background: var(--dark2);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--dark3);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    margin: 10px 0;
    text-align: left;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}
.single-post {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
    background: var(--dark2);
    border-radius: 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-category {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.post-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin: 20px 0;
}

.post-meta {
    color: var(--muted);
    font-size: 0.9rem;
}

.post-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 30px;
    border: 1px solid rgba(201,169,110,0.2);
}

/* Styl treści */
.post-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--light);
}

.post-body .lead {
    font-size: 1.3rem;
    color: var(--light);
    font-style: italic;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 30px;
}

.post-body h2 {
    color: var(--gold);
    margin-top: 40px;
    font-family: 'Cinzel', serif;
}

.post-body blockquote {
    margin: 40px 0;
    padding: 30px;
    background: var(--dark2);
    border-radius: 10px;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    text-align: center;
    color: var(--gold);
}

/* Biogram autora pod wpisem */
.author-bio {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding: 30px;
    background: var(--dark2);
    border-radius: 15px;
}

.author-bio img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.btn-back {
    display: inline-block;
    margin-top: 40px;
    color: var(--gold);
    text-decoration: none;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 50px 0;
}

.page-link {
    color: var(--gold);
    text-decoration: none;
    border: 1px solid var(--gold);
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.page-link:hover:not(.disabled) {
    background: var(--gold);
    color: black;
}

.page-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-current {
    font-weight: bold;
    color: var(--light);
    font-size: 1.2rem;
}
/* Styl Banera Cookies */
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: var(--dark2);
    color: var(--light);
    padding: 20px;
    border: 1px solid var(--gold);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cookie-container p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.cookie-container a {
    color: var(--gold);
    text-decoration: underline;
}

/* Dostosowanie dla telefonów */
@media (max-width: 600px) {
    .cookie-container {
        flex-direction: column;
        bottom: 0;
        width: 100%;
        border-radius: 15px 15px 0 0;
        text-align: center;
    }
    
    .cookie-container p {
        text-align: center;
        margin-bottom: 15px;
    }
}
#oferta {
    padding: 80px 20px;
    background-color: var(--dark);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.card {
    background: var(--dark2);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(201,169,110,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201,169,110,0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 15px;
}

.card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}
footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(10,10,40,0.8);
}

.footer-socials {
    margin-bottom: 20px;
}

.social-icon {
    color: var(--gold);
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 1px solid var(--gold);
    padding: 8px 15px;
    border-radius: 5px;
}

.social-icon:hover {
    background-color: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold);
}
.floating-socials {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}
@media (max-width: 768px) {
    .floating-socials { display: none; } /* Ukrywamy na telefonach, by nie zasłaniały treści */
}
.footer-socials {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: var(--gold);
    font-size: 2rem; /* Wielkość ikony */
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #fff;
    transform: scale(1.2); /* Powiększenie po najechaniu */
    filter: drop-shadow(0 0 8px var(--gold));
}
.side-socials {
    position: fixed;
    right: 0; /* Przyklejone do prawej krawędzi */
    top: 50%; /* Środek wysokości */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10000; /* Muszą być nad wszystkim */
}

.side-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(13, 13, 46, 0.95);
    color: var(--gold); /* Złote ikony */
    text-decoration: none;
    font-size: 1.5rem;
    border: 1px solid var(--gold);
    border-right: none; /* Usuwamy ramkę z prawej, by stykało się z krawędzią */
    border-radius: 10px 0 0 10px; /* Zaokrąglone tylko lewe rogi */
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.side-socials a:hover {
    padding-right: 20px; /* Wysunięcie ikony przy najechaniu */
    background: var(--gold);
    color: #000;
}

/* Ukrywamy na małych telefonach, żeby nie zasłaniały tekstu */
@media (max-width: 600px) {
    .side-socials {
        display: none;
    }
}
/* ============================================
   PODSTRONY PRAWNE – Regulamin & Polityka Prywatności
   Wklej na końcu swojego style.css
   ============================================ */
 
.legal-container {
    max-width: 860px;
    margin: 80px auto 60px;
    padding: 0 24px;
}
 
.legal-container h1 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--gold, #c9a84c);
    text-align: center;
}
 
.legal-container .subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 48px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}
 
.legal-section {
    margin-bottom: 36px;
}
 
.legal-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: var(--gold, #c9a84c);
    margin-bottom: 10px;
    border-left: 3px solid var(--gold, #c9a84c);
    padding-left: 12px;
}
 
.legal-section p,
.legal-section li {
    font-family: 'Raleway', sans-serif;
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--muted);
}
 
.legal-section ul {
    padding-left: 20px;
}
 
.legal-section ul li {
    margin-bottom: 6px;
}
 
/* Ramka z zastrzeżeniem (używana w Regulaminie) */
.disclaimer-box {
    border: 1px solid var(--gold, #c9a84c);
    border-radius: 6px;
    padding: 20px 24px;
    margin-bottom: 36px;
    background: rgba(201, 169, 110, 0.05);
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--muted);
}
 
/* Przycisk powrotu */
.legal-back {
    display: inline-block;
    margin-top: 40px;
    font-family: 'Raleway', sans-serif;
    color: var(--gold, #c9a84c);
    text-decoration: none;
    border: 1px solid var(--gold, #c9a84c);
    padding: 8px 20px;
    border-radius: 4px;
    transition: background 0.2s;
}
 
.legal-back:hover {
    background: rgba(201, 168, 76, 0.1);
}

/* ============================================
   WARSZTATY – ROZWIJANY PANEL
   ============================================ */

.workshops-grid {
    align-items: start;
}

.workshop-card {
    text-align: left;
}

.btn-expand {
    background: none;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s;
    width: 100%;
}

.btn-expand:hover {
    background: rgba(201, 169, 110, 0.12);
}

.workshop-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.workshop-details.open {
    max-height: 3000px;
    margin-top: 20px;
}

.workshop-lead {
    color: var(--muted);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 14px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.workshop-block {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
}

.workshop-block:last-of-type {
    border-bottom: none;
}

.workshop-block h4 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    margin-bottom: 6px;
}

.level-subtitle {
    font-style: italic;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.workshop-block ul {
    padding-left: 18px;
    margin: 0;
}

.workshop-block ul li {
    color: var(--muted);
    font-size: 0.93rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

.format-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 10px;
}

.format-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 8px;
    padding: 12px 15px;
}

.format-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.format-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.highlight-block {
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 10px;
    padding: 15px 18px;
}

.workshop-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
}

.workshop-cta p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ============================================
   SEKCJA CENNIK / PRODUKTY
   ============================================ */

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: -10px;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.pricing-card {
    background: var(--dark2);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 20px;
    padding: 40px 30px 35px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(201,169,110,0.15);
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark3) 0%, var(--dark2) 100%);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    padding: 4px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: bold;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin: 10px 0 5px;
}

.price {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    color: var(--light);
    margin: 18px 0;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 400;
}

.price-tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.4);
    border-radius: 20px;
    padding: 5px 16px;
    margin: 14px 0 18px;
    letter-spacing: 0.5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.features-list li {
    padding: 8px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(201,169,110,0.12);
    font-size: 0.92rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 20px;
}

.pricing-note a {
    color: var(--gold);
    text-decoration: none;
}

/* ============================================
   FORMULARZ – STATUS WYSYŁKI
   ============================================ */

.form-success {
    color: #6fcf6f;
    background: rgba(111, 207, 111, 0.1);
    border: 1px solid rgba(111, 207, 111, 0.3);
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.form-error {
    color: #e07070;
    background: rgba(224, 112, 112, 0.1);
    border: 1px solid rgba(224, 112, 112, 0.3);
    border-radius: 6px;
    padding: 10px 15px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* ============================================
   COOKIES – PRZYCISK ODRZUĆ
   ============================================ */

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-small-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-small-outline:hover {
    background: rgba(201, 169, 110, 0.15);
}

@media (max-width: 600px) {
    .cookie-buttons {
        justify-content: center;
    }
}

/* ============================================
   CHECKBOX LABEL
   ============================================ */

.checkbox-label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    margin-bottom: 15px;
    cursor: pointer;
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--gold);
}
