/* Angel Cleaning – Cookie Notice */

.angel-cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483000;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(20,20,20,.97), rgba(42,42,42,.98));
    color: #fff;
    box-shadow: 0 -4px 25px rgba(0,0,0,.18);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    transition: transform .35s ease, opacity .35s ease;
    transform: translateY(0);
    opacity: 1;
    box-sizing: border-box;
}

.angel-cookie-notice[hidden] {
    display: none !important;
}

.angel-cookie-notice.angel-cookie-hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.angel-cookie-notice,
.angel-cookie-notice * {
    box-sizing: border-box;
}

.angel-cookie-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.angel-cookie-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}

.angel-cookie-content {
    flex: 1;
    min-width: 0;
}

.angel-cookie-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
}

.angel-cookie-text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,.94);
}

.angel-cookie-legal {
    font-size: 11px;
    line-height: 1.45;
    margin-top: 3px;
    color: rgba(255,255,255,.70);
}

.angel-cookie-legal a {
    color: #fff !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.angel-cookie-legal a:hover {
    opacity: .8;
}

.angel-cookie-actions {
    flex: 0 0 auto;
}

.angel-cookie-button {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: 0;
    padding: 10px 22px;
    border-radius: 6px;
    background: #fff !important;
    color: #202020 !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    min-height: 38px;
}

.angel-cookie-button:hover,
.angel-cookie-button:focus-visible {
    transform: translateY(-1px);
    background: #f3f3f3 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.angel-cookie-button:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .angel-cookie-notice {
        padding: 14px 15px;
    }

    .angel-cookie-inner {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .angel-cookie-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .angel-cookie-content {
        flex: 1 1 calc(100% - 50px);
    }

    .angel-cookie-title {
        font-size: 15px;
    }

    .angel-cookie-text {
        font-size: 12px;
    }

    .angel-cookie-legal {
        font-size: 10px;
    }

    .angel-cookie-actions {
        width: 100%;
    }

    .angel-cookie-button {
        width: 100%;
        padding: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .angel-cookie-notice,
    .angel-cookie-button {
        transition: none;
    }
}
