.cr-cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 100%;
    max-width: 500px;
    background-color: #ffffff;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    z-index: 9999;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    display: none; /* Hidden by default, JS toggles it */
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cr-cookie-banner.is-visible,
.cr-cookie-banner.is-editor {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.cr-cookie-content {
    font-size: 13px;
    line-height: 1.5;
    color: #1a1a1a;
}

.cr-cookie-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cr-cookie-accept-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cr-cookie-deny-btn {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff !important;
    color: #333 !important;
    border: 1px solid #ccc !important;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cr-cookie-deny-btn:hover {
    background-color: #f5f5f5 !important;
    color: #333 !important;
    border-color: #ccc !important;
}

.cr-cookie-accept-btn:hover {
    background-color: #000000;
}

.cr-cookie-accept-btn:active {
    background-color: #000000;
}

.cr-cookie-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
}

.cr-cookie-link {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    transition: opacity 0.2s ease;
    margin-left: auto; /* Push to right */
    white-space: nowrap;
}

.cr-cookie-link:hover {
    opacity: 0.7;
    color: #1a1a1a;
}

.cr-cookie-arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.cr-cookie-link:hover .cr-cookie-arrow {
    transform: translate(2px, -2px);
}

@media (max-width: 767px) {
    .cr-cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        max-width: none;
    }
    
    .cr-cookie-actions {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 15px;
    }
    
    .cr-cookie-link {
        align-self: flex-end;
    }
    
    .cr-cookie-accept-btn {
        width: 100%;
        justify-content: center;
    }
}
