
/* CTA Strip */
.cta-strip {
    background: var(--red);
    padding: 20px 0;
    text-align: center;
}
.cta-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-strip-text {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

/* Floating Actions (Clean, minimal style) */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
}
.floating-actions .scroll-to-top,
.floating-actions .float-wa,
.floating-actions .phone-call-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
.floating-actions .scroll-to-top,
.floating-actions .phone-call-btn {
    background: #18181b;
    border: 1px solid #3f3f46;
}
.floating-actions .scroll-to-top:hover,
.floating-actions .phone-call-btn:hover {
    background: var(--red);
    border-color: var(--red);
}
.floating-actions .float-wa {
    background: #25d366;
}
.floating-actions .float-wa:hover {
    background: #1ebe5d;
}
.floating-actions .scroll-to-top {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}
.floating-actions .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
.floating-actions a:hover,
.floating-actions button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Contact Form Honeypot */
.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Cookie banner: techniczna informacja, bez pozorowania wyboru zgód. */
.cookie-banner {
    position: fixed;
    left: auto;
    right: 24px;
    bottom: 16px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 560px;
    width: calc(100vw - 48px);
    padding: 10px 12px;
    background: #18181b;
    color: #fff;
    border: 1px solid #27272a;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.cookie-banner__content {
    min-width: 0;
}
.cookie-banner__content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #e4e4e7;
}
.cookie-banner__content a {
    color: #fff;
    text-decoration: underline;
}
.cookie-banner__actions {
    flex: 0 0 auto;
}
.cookie-banner__actions button {
    min-height: 44px;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: 1px solid var(--red);
}
.cookie-banner__primary {
    background: var(--red);
    color: #fff;
}
.cookie-banner__primary:hover,
.cookie-banner__primary:focus-visible {
    background: #b91c1c;
    border-color: #b91c1c;
}
@media (max-width: 560px) {
    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px;
        max-width: none;
        width: auto;
        align-items: flex-start;
        padding: 10px;
    }
    .cookie-banner__content p {
        font-size: 12px;
    }
    .cookie-banner__content a {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
    }
}
body.cookie-banner-visible .floating-actions {
    display: none !important;
}

/* Global floating buttons - restrained style */
.floating-actions .phone-call-btn,
.floating-actions .scroll-to-top {
    background: #23262b !important;
    border: 1px solid #15171b !important;
    color: #fff !important;
}
.floating-actions .float-wa {
    background: #fff !important;
    color: #111827 !important;
    border: 1px solid #d9dde3 !important;
}
/* Global keyboard focus: visible only for keyboard navigation, with no layout shift. */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    box-shadow: 0 0 0 2px #fff;
}
