html,
body {
    margin: 0;
    padding: 0;
    background: #000000;
    color: #ffffff;
}

/* Scroll to top */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 9999;
}

.contact-whatsapp,
.contact-scroll-top {
    position: static !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 26px;
}

.contact-scroll-top {
    background: transparent;
    color: #d4ff00;
    font-size: 48px;
    box-shadow: none;
}

.contact-whatsapp:hover,
.contact-scroll-top:hover {
    transform: translateY(-3px);
    color: inherit;
}



.cookie-popup {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: none;
    justify-content: center;
}

.cookie-popup.show {
    display: flex;
}

.cookie-popup-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 12px;
    background: #111111;
    border: 1px solid #2a2a2a;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.cookie-popup-text h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.cookie-popup-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #d1d1d1;
    max-width: 650px;
}

.cookie-popup-text a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-popup-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.cookie-btn-decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #5a5a5a;
}

.cookie-btn-decline:hover {
    background: #1c1c1c;
}

.cookie-btn-accept {
    background: #ffffff;
    color: #111111;
    border: 1px solid #ffffff;
}

.cookie-btn-accept:hover {
    background: #e8e8e8;
}

@media (max-width: 768px) {
    .cookie-popup {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-popup-content {
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
    }

    .cookie-popup-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}