﻿#carlton-consent-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; 
    background: rgba(0,0,0,0.35);
    z-index: 9998; 
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    #carlton-consent-backdrop.visible {
        opacity: 1;
        pointer-events: auto;
    }

#carlton-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(110%);
    transition: transform 0.3s ease;
    will-change: transform;
}

    #carlton-consent.visible {
        transform: translateY(0) !important;
    }

.consent-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    background: #fff;
    color: #000;
    z-index: 9999;
    padding: 20px;
    width: 100%;
}



.consent-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    opacity: 0.85;
}

.consent-text {
    flex: 1 1 260px;
    min-width: 0;
    text-align: left;
}

    .consent-text strong {
        display: block;
        font-family: var(--consent-font);
        font-size: 15px;
        font-weight: 600;
        color: var(--consent-text);
        letter-spacing: 0.02em;
        margin-bottom: 4px;
    }

    .consent-text p {
        margin-bottom: 0px;
        line-height: 22px;
        font-size: 16px;
        color: #000;
    }

        .consent-text p a {
            line-height: 22px;
            font-size: 16px;
            color: #000;
        }

            .consent-text p a:hover {
                color: #5b2c6f;
            }

.consent-actions {
    gap: 8px;
}

#carlton-consent-badge {
    position: fixed;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
  
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    z-index: 999;
    padding: 10px;
    border: solid 1px #000;
    line-height: 1.2;
    background: #fff;
    border-radius: 28px;
}

    #carlton-consent-badge .badge-dot {
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background: #ff0000;
        flex-shrink: 0;
    }

#consent-badge-label {
    display: inline-block;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-10px);
    transition: max-width 0.3s ease, opacity 0.2s ease, transform 0.3s ease;
    color: #291f26;
}

#carlton-consent-badge:hover #consent-badge-label {
    max-width: 200px;
    margin-left: 5px;
    opacity: 1;
    transform: translateX(0);
}

#carlton-consent-badge.accepted .badge-dot {
    background: #52c77e;
}
