/* Georgia Pikes cookie consent banner */
.gp-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: #1a1a1a;
    color: #fff;
    border-top: 3px solid var(--pike-gold, #C9A84C);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.gp-cookie-banner.gp-cookie-hidden {
    display: none;
}

.gp-cookie-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.gp-cookie-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1 1 320px;
    opacity: 0.92;
}

.gp-cookie-text a {
    color: var(--pike-gold, #C9A84C);
    text-decoration: underline;
}

.gp-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 0 0 auto;
}

.gp-cookie-btn {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 0.9rem;
    border-radius: 0.375rem;
    border: 2px solid var(--pike-gold, #C9A84C);
    background: var(--pike-gold, #C9A84C);
    color: #1a1a1a;
    cursor: pointer;
    line-height: 1.2;
}

.gp-cookie-btn:hover {
    filter: brightness(1.05);
}

.gp-cookie-btn-outline {
    background: transparent;
    color: #fff;
}

.gp-cookie-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 575px) {
    .gp-cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .gp-cookie-actions {
        justify-content: stretch;
    }
    .gp-cookie-btn {
        flex: 1 1 auto;
    }
}

/* Persistent footer opt-out link */
.gp-cookie-preferences-link {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
