/* ============================================================
   SOULMATE KOSMETOLOGIA — style.css
   Minimalistic clean-beauty aesthetic
   ============================================================ */

/* ====================== ZMIENNE ====================== */
:root {
    /* Kolory */
    --c-bg:           #fdfaf6;   /* off-white tło bazowe */
    --c-bg-alt:       #f5efe7;   /* delikatny beż dla sekcji */
    --c-bg-soft:      #eef0ec;   /* bardzo zgaszony szałwiowy */
    --c-cream:        #faf3ea;
    --c-text:         #2c2a2a;   /* ciemny grafit zamiast czerni */
    --c-text-soft:    #6c6660;
    --c-line:         #e6dfd5;   /* delikatne linie podziału */
    --c-accent:       #b89b7a;   /* ciepły, przygaszony beż-mokka */
    --c-accent-dark:  #8c7359;
    --c-white:        #ffffff;

    /* Typografia */
    --f-display: "Cormorant Garamond", "Times New Roman", serif;
    --f-body:    "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1240px;
    --radius:    4px;
    --radius-lg: 12px;

    /* Easing */
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* Header height */
    --header-h: 84px;
}

/* ====================== RESET ====================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--f-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--c-text);
    background-color: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--c-text);
    text-decoration: none;
    transition: color .3s var(--ease);
}

ul, ol { list-style: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--c-accent); color: var(--c-white); }

/* ====================== UTIL ====================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--c-accent-dark);
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -.01em;
    color: var(--c-text);
    margin-bottom: 24px;
}
.section-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--c-accent-dark);
}

.section-lead {
    max-width: 620px;
    color: var(--c-text-soft);
    font-size: 1.05rem;
}

.section {
    padding: clamp(70px, 10vw, 130px) 0;
    position: relative;
}

.section-head {
    text-align: center;
    margin-bottom: 70px;
}
.section-head .eyebrow,
.section-head .section-lead { margin-left: auto; margin-right: auto; }

/* ====================== BUTTONS ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all .35s var(--ease);
    cursor: pointer;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary {
    background: var(--c-text);
    color: var(--c-white);
    border: 1px solid var(--c-text);
}
.btn-primary:hover {
    background: var(--c-accent-dark);
    border-color: var(--c-accent-dark);
    color: var(--c-white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid var(--c-text);
}
.btn-ghost:hover {
    background: var(--c-text);
    color: var(--c-white);
}

.btn-lg { padding: 18px 38px; font-size: 14px; }

/* ====================== HEADER ====================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253, 250, 246, .85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all .35s var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(253, 250, 246, .96);
    border-bottom-color: var(--c-line);
    box-shadow: 0 4px 30px rgba(0,0,0,.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}
.logo-text {
    font-family: var(--f-display);
    font-size: 1.45rem;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1;
}
.logo-text em {
    display: block;
    font-style: italic;
    font-weight: 300;
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-accent-dark);
    margin-top: 4px;
    font-family: var(--f-body);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav ul {
    display: flex;
    gap: 32px;
}
.main-nav ul a {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .08em;
    color: var(--c-text);
    position: relative;
    padding: 6px 0;
}
.main-nav ul a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent-dark);
    transition: width .35s var(--ease);
}
.main-nav ul a:hover { color: var(--c-accent-dark); }
.main-nav ul a:hover::after { width: 100%; }

.nav-cta { padding: 12px 24px; font-size: 12px; }

/* Hamburger */
.nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    z-index: 101;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 1.5px;
    background: var(--c-text);
    transition: all .3s var(--ease);
    margin: 0 auto;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ====================== HERO ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-h);
    overflow: hidden;
    background: var(--c-bg-alt);
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    /* fallback gradient gdy zdjęcie się nie załaduje */
    background-color: #e8dccd;
    background-image: linear-gradient(135deg, #efe4d4 0%, #d9c9b1 100%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(253, 250, 246, .55) 0%,
        rgba(253, 250, 246, .35) 40%,
        rgba(253, 250, 246, .75) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 880px;
    padding: 60px 24px;
    animation: fadeUp 1s var(--ease) both;
}

.hero-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 1.05;
    letter-spacing: -.015em;
    color: var(--c-text);
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--c-accent-dark);
}

.hero-lead {
    max-width: 580px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--c-text-soft);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--c-text);
    font-size: 1.5rem;
    display: block;
    /* Płynne przejście koloru i przesunięcia tylko po najechaniu */
    transition: all .3s var(--ease); 
}
.hero-scroll-arrow:hover {
    color: var(--c-accent-dark);
    transform: translate(-50%, 5px); /* Delikatne osunięcie w dół przy najechaniu */
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====================== O MNIE ====================== */
.section-about {
    background: var(--c-bg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}
.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--c-bg-alt);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}
.about-image-frame {
    position: absolute;
    top: 18px;
    left: 18px;
    right: -18px;
    bottom: -18px;
    border: 1px solid var(--c-accent);
    z-index: 1;
}

.about-text p { margin-bottom: 18px; color: var(--c-text-soft); }

.about-list {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--c-text);
}
.about-list i {
    color: var(--c-accent-dark);
    font-size: 1.05rem;
}

.beautycheck-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    margin-top: 32px;
    background: var(--c-bg-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-line);
}
.beautycheck-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    background: var(--c-white);
    border-radius: 50%;
    padding: 8px;
}
.beautycheck-badge > div {
    flex: 1;
    line-height: 1.4;
}
.beautycheck-badge strong {
    display: block;
    font-weight: 500;
    color: var(--c-text);
    font-size: .95rem;
}
.beautycheck-badge small {
    font-size: .82rem;
    color: var(--c-text-soft);
}
.beautycheck-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-text);
    color: var(--c-white);
    display: flex; align-items: center; justify-content: center;
    transition: all .35s var(--ease);
    flex-shrink: 0;
}
.beautycheck-link:hover {
    background: var(--c-accent-dark);
    transform: translateX(3px);
}

/* ====================== ZABIEGI ====================== */
.section-treatments {
    background: var(--c-bg-alt);
}
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.treatment-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .45s var(--ease);
    border: 1px solid var(--c-line);
    display: flex;
    flex-direction: column;
}
.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(140, 115, 89, .12);
    border-color: var(--c-accent);
}

.treatment-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--c-bg-soft);
}
.treatment-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.treatment-card:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-body {
    padding: 30px 28px 32px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.treatment-num {
    position: absolute;
    top: 22px; right: 28px;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--c-accent);
    font-weight: 300;
}
.treatment-body h3 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 14px;
    padding-right: 40px;
    color: var(--c-text);
}
.treatment-body p {
    color: var(--c-text-soft);
    font-size: .95rem;
    margin-bottom: 22px;
    flex: 1;
}

.treatment-link {
    font-size: 12px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--c-accent-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: gap .3s var(--ease);
}
.treatment-link:hover { gap: 14px; color: var(--c-text); }

/* ====================== CENNIK ====================== */
.section-pricing {
    background: var(--c-bg);
}
.pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1080px;
    margin: 0 auto;
}

.pricing-group-title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.5rem;
    color: var(--c-accent-dark);
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-line);
    letter-spacing: .01em;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--c-line);
}
.price-row:last-child { border-bottom: none; }

.price-name {
    color: var(--c-text);
    font-size: 1rem;
    flex-shrink: 0;
}
.price-dots {
    flex: 1;
    border-bottom: 1px dotted var(--c-line);
    transform: translateY(-4px);
    min-width: 20px;
}
.price-value {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--c-accent-dark);
    flex-shrink: 0;
    font-style: italic;
}

.pricing-cta {
    text-align: center;
    margin-top: 60px;
}

/* ====================== FOOTER ====================== */
.site-footer {
    background: var(--c-text);
    color: #d8d2cb;
    padding-top: 30px;
    position: relative;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--c-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--c-white);
    margin-bottom: 22px;
    letter-spacing: .02em;
}

.footer-brand p {
    color: #b3aca5;
    font-size: .95rem;
    max-width: 320px;
    margin-top: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}
.footer-logo img {
    width: 100px; height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.footer-logo span {
    font-family: var(--f-display);
    color: var(--c-white);
    font-size: 1.3rem;
    line-height: 1;
}
.footer-logo em {
    display: block;
    font-style: italic;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-top: 3px;
    font-family: var(--f-body);
}

.footer-list { display: flex; flex-direction: column; gap: 14px; }
.footer-list li {
    display: flex;
    gap: 12px;
    font-size: .95rem;
    color: #c2bcb5;
    line-height: 1.5;
}
.footer-list i {
    color: var(--c-accent);
    margin-top: 5px;
    width: 16px;
    flex-shrink: 0;
}
.footer-list a {
    color: #c2bcb5;
}
.footer-list a:hover { color: var(--c-accent); }

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: .95rem;
    color: #c2bcb5;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-hours li span:last-child { color: var(--c-white); font-weight: 400; }

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}
.footer-social a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    color: #d8d2cb;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    transition: all .3s var(--ease);
}
.footer-social a:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-white);
    transform: translateY(-3px);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .9rem;
    color: var(--c-accent);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.footer-map-link:hover { border-color: var(--c-accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 22px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom small {
    color: #8e8983;
    font-size: .82rem;
    letter-spacing: .04em;
}
.footer-policy {
    color: #b3aca5;
    font-size: .82rem;
    letter-spacing: .08em;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.footer-policy:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* ====================== STRONA POLITYKI PRYWATNOŚCI ====================== */
.legal-page {
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 120px;
    background: var(--c-bg);
    min-height: calc(100vh - 400px);
}
.legal-container {
    max-width: 820px;
}
.legal-title {
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--c-text);
    letter-spacing: -.01em;
}
.legal-meta {
    color: var(--c-text-soft);
    font-size: .9rem;
    letter-spacing: .04em;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--c-line);
}

.legal-content h2 {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 1.65rem;
    margin: 50px 0 18px;
    color: var(--c-accent-dark);
    letter-spacing: .005em;
}
.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
    color: var(--c-text-soft);
    margin-bottom: 18px;
    font-size: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 22px 22px;
    color: var(--c-text-soft);
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
    margin-bottom: 8px;
    padding-left: 6px;
}

.legal-content a {
    color: var(--c-accent-dark);
    border-bottom: 1px solid var(--c-accent);
    padding-bottom: 1px;
}
.legal-content a:hover { color: var(--c-text); }

.legal-back {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--c-line);
}
.legal-back a {
    color: var(--c-accent-dark);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap .3s var(--ease);
}
.legal-back a:hover { gap: 16px; color: var(--c-text); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid { gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    :root { --header-h: 72px; }

    /* Header — mobile menu */
    .nav-toggle { display: flex; }

    .treatments-grid { grid-template-columns: 1fr; }

    .main-nav {
        position: fixed;
        top: 0; right: 0;
        width: min(360px, 88vw);
        height: 100vh;
        background: var(--c-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: calc(var(--header-h) + 30px) 32px 32px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,.08);
    }
    .main-nav.open { transform: translateX(0); }

    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }
    .main-nav ul li {
        border-bottom: 1px solid var(--c-line);
    }
    .main-nav ul a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        font-family: var(--f-display);
        font-weight: 500;
        letter-spacing: 0;
    }
    .main-nav ul a::after { display: none; }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
        padding: 16px;
    }

    .logo-img { width: 38px; height: 38px; }
    .logo-text { font-size: 1.2rem; }
    .logo-text em { font-size: .6rem; }

    /* Hero */
    .hero { min-height: 90vh; }
    .hero-cta { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }

    /* O mnie */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-image { max-width: 420px; margin: 0 auto; }
    .about-image-frame { right: -10px; bottom: -10px; top: 10px; left: 10px; }

    .beautycheck-badge {
        flex-wrap: wrap;
        gap: 14px;
        padding: 18px;
    }
    .beautycheck-badge > div { flex: 1 1 calc(100% - 70px); }

    /* Cennik */
    .pricing-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .price-row { gap: 8px; }
    .price-name { font-size: .95rem; }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 50px;
    }
    .site-footer { padding-top: 70px; }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    /* Sections — mniejsze paddingi */
    .section-head { margin-bottom: 50px; }

    /* Polityka */
    .legal-page { padding-top: calc(var(--header-h) + 50px); padding-bottom: 80px; }
    .legal-content h2 { font-size: 1.35rem; margin: 40px 0 14px; }
}

@media (max-width: 480px) {
    .container { 
        padding-left: 18px; 
        padding-right: 18px; 
    }
    .btn { padding: 13px 22px; font-size: 12px; }
    .btn-lg { padding: 16px 28px; font-size: 13px; }

    .hero-content { padding: 40px 18px; }
    .hero-lead { font-size: 1rem; }

    .treatment-body { padding: 24px 22px 26px; }
    .treatment-body h3 { font-size: 1.35rem; }

    .beautycheck-badge {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .beautycheck-badge > div { flex: 1 1 100%; }
}

/* ============================================================
   PREFERS-REDUCED-MOTION — szacunek dla użytkowników
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* COOKIES */

/* ====================== COOKIE BANNER ====================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    z-index: 99999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: bottom 0.5s var(--ease);
}
.cookie-banner.show { bottom: 30px; }

.cookie-content h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--c-text);
    margin-bottom: 8px;
    font-weight: 500;
}
.cookie-content p {
    font-family: var(--f-body);
    font-size: 0.9rem;
    color: var(--c-text-soft);
    line-height: 1.5;
}

.cookie-actions { display: flex; gap: 15px; flex-shrink: 0; }

.cookie-banner .btn-primary, 
.cookie-banner .btn-ghost {
    padding: 12px 24px;
    font-size: 0.85rem;
}
.cookie-banner .btn-ghost {
    border: 1px solid var(--c-line);
}

/* Przycisk ustawień cookies (lewy dolny róg) */
.cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 50%;
    color: var(--c-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.cookie-settings-trigger:hover {
    background: var(--c-bg-alt);
    color: var(--c-text);
    border-color: var(--c-accent);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .cookie-banner {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
        width: calc(100% - 30px);
        bottom: -120%;
    }
    .cookie-banner.show { bottom: 15px; }
    .cookie-actions { width: 100%; justify-content: center; }
    .cookie-banner .btn-primary, .cookie-banner .btn-ghost { width: 100%; text-align: center; justify-content: center; }
    .cookie-settings-trigger { display: none; }
}