/* Cured Consent Plugin Banner */
#cured-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #13275b 0%, #0b1326 100%);
    color: #F8F6F3;
    padding: 24px;
    box-shadow: 0 -2px 18px rgba(0, 0, 0, 0.22);
    z-index: 999999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: slideUp 0.35s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cured-consent-banner.top {
    top: 0;
    bottom: auto;
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cured-consent-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.cured-consent-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #D4AF37;
}

.cured-consent-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #E7E4DC;
}

.cured-consent-text a {
    color: #D4AF37;
    text-decoration: underline;
}

.cured-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cured-consent-button {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.24s ease;
    border: none;
}

.cured-consent-button.accept {
    background-color: #D4AF37;
    color: #0B1326;
}

.cured-consent-button.reject,
.cured-consent-button.more {
    background-color: transparent;
    color: #F8F6F3;
    border: 1px solid rgba(248, 246, 243, 0.35);
}

.cured-consent-button.accept:hover {
    transform: translateY(-2px);
    background-color: #FFD77A;
}

.cured-consent-button.reject:hover,
.cured-consent-button.more:hover {
    background-color: rgba(248, 246, 243, 0.12);
}

.cured-consent-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 22px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cured-consent-banner {
        padding: 18px;
    }

    .cured-consent-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cured-consent-buttons {
        justify-content: stretch;
    }

    .cured-consent-button {
        width: 100%;
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

#cured-consent-banner.exit {
    animation: slideOut 0.3s ease-out forwards;
}
