/* Canyoning GTM Suite - Cookie Banner Styles */
.canyoning-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 330px;
    max-width: calc(100% - 48px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    z-index: 999999;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateY(150%) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    visibility: hidden;
    font-family: 'Poppins', sans-serif;
}

.canyoning-cookie-banner.is-visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.canyoning-cookie-banner__content p {
    font-size: 0.85rem;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.canyoning-cookie-banner__content p a {
    color: #3CB64B;
    text-decoration: underline;
    text-decoration-color: rgba(60, 182, 75, 0.3);
    text-underline-offset: 2px;
    font-weight: 500;
    transition: all 0.2s;
}

.canyoning-cookie-banner__content p a:hover {
    text-decoration-color: #3CB64B;
    color: #2b8c37;
}

.canyoning-cookie-banner__actions {
    display: flex;
    gap: 8px;
}

.canyoning-cookie-banner__actions button {
    flex: 1;
    padding: 10px 12px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.canyoning-cookie-banner__actions .btn-accept-all {
    background-color: #3CB64B;
    color: #fff;
    box-shadow: 0 4px 10px rgba(60, 182, 75, 0.2);
}

.canyoning-cookie-banner__actions .btn-accept-all:hover {
    background-color: #2b8c37;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 140, 55, 0.3);
}

.canyoning-cookie-banner__actions .btn-reject {
    background-color: transparent;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.canyoning-cookie-banner__actions .btn-reject:hover {
    background-color: #f9fafb;
    color: #111827;
    border-color: #d1d5db;
}

@media (max-width: 480px) {
    .canyoning-cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        max-width: none;
    }
}
