/* ATG cookie consent banner — v1.1.0.0 */
.atg-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(20, 217, 164, 0.35);
    animation: atg-consent-in 0.4s ease;
}
.atg-consent__inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.atg-consent__text {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.88rem;
    line-height: 1.55;
    flex: 1 1 280px;
}
.atg-consent__actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.atg-consent__btn {
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}
.atg-consent__btn--primary {
    background: linear-gradient(135deg, #1b717a, #0c9c76);
    color: #fff;
}
.atg-consent__btn--ghost {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(148, 163, 184, 0.4);
}
.atg-consent__btn:hover { transform: translateY(-1px); }
@keyframes atg-consent-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .atg-consent { animation: none; }
    .atg-consent__btn { transition: none; }
}
