/* AGHL Cookie Consent Banner */

#aghl-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    border-top: 4px solid #ff214f;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    font-family: 'Source Sans Pro', sans-serif;
    padding: 20px 30px;
}

#aghl-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#aghl-cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 260px;
}

#aghl-cookie-logo {
    font-size: 32px;
    flex-shrink: 0;
}

#aghl-cookie-text strong {
    display: block;
    font-size: 16px;
    color: #111111;
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#aghl-cookie-text p {
    font-size: 13px;
    color: #555555;
    margin: 0;
    line-height: 1.5;
}

#aghl-cookie-text p a {
    color: #ff214f;
    text-decoration: underline;
    font-weight: 600;
}

#aghl-cookie-text p a:hover {
    color: #cc0033;
}

#aghl-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

#aghl-cookie-buttons button {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    transition: all 0.2s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

#aghl-cookie-reject {
    background: #ffffff;
    color: #111111;
    border: 2px solid #111111 !important;
}

#aghl-cookie-reject:hover {
    background: #111111;
    color: #ffffff;
}

#aghl-cookie-accept {
    background: #ff214f;
    color: #ffffff;
    border: 2px solid #ff214f !important;
}

#aghl-cookie-accept:hover {
    background: #cc0033;
    border-color: #cc0033 !important;
}

/* Mobile responsive */
@media (max-width: 600px) {
    #aghl-cookie-banner {
        padding: 16px 20px;
    }

    #aghl-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #aghl-cookie-buttons {
        width: 100%;
    }

    #aghl-cookie-buttons button {
        flex: 1;
        text-align: center;
    }
}
