#cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 950px;
    z-index: 999999;
    display: none;
    font-family: 'Poppins', sans-serif;
    pointer-events: auto;
}

.cookie-box {
    background: rgba(8, 29, 53, 0.97);
    border: 1px solid rgba(0, 168, 255, 0.35);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    pointer-events: auto;
}

.cookie-box h3 {
    font-size: 28px;
    margin: 0 0 15px;
}

.cookie-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.cookie-settings {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.cookie-settings.show {
    display: block;
}

.cookie-settings label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
}

.cookie-settings label:last-child {
    border-bottom: none;
}

.cookie-settings span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-settings input {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    accent-color: #00a8ff;
    cursor: pointer;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cookie-actions button {
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    pointer-events: auto;
}

#accept-all,
#save-preferences {
    background: #009dff;
    color: white;
    border: none;
}

#reject-all,
#customize-cookies {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
}

#accept-all:hover,
#save-preferences:hover {
    background: #0088dd;
}

#reject-all:hover,
#customize-cookies:hover {
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    #cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        transform: none;
        width: auto;
    }

    .cookie-box {
        padding: 22px;
        border-radius: 16px;
    }

    .cookie-box h3 {
        font-size: 22px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions button {
        width: 100%;
    }

    .cookie-settings label {
        align-items: flex-start;
    }
}
.floating-actions {
    position: fixed;
    right: 35px;
    bottom: 30px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 205px;
    padding: 18px 34px;
    border-radius: 999px;

    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.call-btn {
    background: #1c2540;
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn:hover {
    background: #0088dd;
}

.whatsapp-btn:hover {
    background: #20bd5a;
}

@media (max-width: 768px) {
    .floating-actions {
        right: 16px;
        bottom: 18px;
        gap: 10px;
    }

    .floating-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

.cookie-link {
    background: none;
    border: none;
    padding: 0;
    color: #00a8ff;
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.cookie-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer {
    position: relative;
    z-index: 1;
}

.cookie-link {
    position: relative;
    z-index: 1000000;
    pointer-events: auto;
}

.floating-actions {
    z-index: 9999;
}

#cookie-banner {
    z-index: 9999999;
}

@media (max-width: 768px) {
    .floating-actions {
        right: 12px;
        bottom: 18px;
        width: auto;
        max-width: 180px;
        pointer-events: none;
    }

    .floating-actions a {
        pointer-events: auto;
    }

    .footer-bottom {
        padding-bottom:30px;
    }

    #cookie-manage-btn {
        position: relative;
        z-index: 1000000;
        pointer-events: auto;
    }
}

.cookie-privacy-link {
    color: #00a8ff;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-privacy-link:hover {
    color: #ffffff;
}