.ccr-gdpr {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #a4cddb;
    box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.18), 0 -0.125rem 0.5rem rgba(0, 0, 0, 0.12);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.ccr-gdpr--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ccr-gdpr__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    width: 60%;
    margin: 0 auto;
    min-height: 6rem;
}

.ccr-gdpr__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.ccr-gdpr__text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a2a3a;
    line-height: 1.6;
}

.ccr-gdpr__link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2a3a;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    white-space: nowrap;
    align-self: flex-start;
}

.ccr-gdpr__link:hover {
    opacity: 0.7;
}

.ccr-gdpr__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.ccr-gdpr__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: 2px solid #1a2a3a;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.ccr-gdpr__btn:focus-visible {
    outline: 2px solid #1a2a3a;
    outline-offset: 2px;
}

.ccr-gdpr__btn:active {
    transform: translate(0.2rem, 0.2rem);
    box-shadow: none;
}

.ccr-gdpr__btn--accept {
    background-color: #1a2a3a;
    color: #fff;
    box-shadow: 0.25rem 0.25rem 0 0 rgba(0, 0, 0, 0.35);
}

.ccr-gdpr__btn--accept:hover {
    background-color: #2d3f52;
    transform: translate(0.1rem, 0.1rem);
    box-shadow: 0.15rem 0.15rem 0 0 rgba(0, 0, 0, 0.35);
}

.ccr-gdpr__btn--reject {
    background-color: transparent;
    color: #1a2a3a;
    box-shadow: 0.25rem 0.25rem 0 0 rgba(0, 0, 0, 0.25);
}

.ccr-gdpr__btn--reject:hover {
    background-color: #1a2a3a;
    color: #fff;
    transform: translate(0.1rem, 0.1rem);
    box-shadow: 0.15rem 0.15rem 0 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 64rem) {
    .ccr-gdpr__inner {
        width: 80%;
    }
}

@media (max-width: 48rem) {
    .ccr-gdpr__inner {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
        min-height: unset;
    }

    .ccr-gdpr__actions {
        width: 100%;
        justify-content: flex-end;
    }

    .ccr-gdpr__btn {
        flex: 1;
        max-width: 50%;
    }
}
