/* ═══════════════════════════════════════════════════════════════
   Garnet Grid — Cookie Consent Banner
   GDPR/CCPA-compliant consent gate for remarketing pixels
   ═══════════════════════════════════════════════════════════════ */

.gg-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.25rem 2rem;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.97) 0%, rgba(8, 8, 8, 0.99) 100%);
    border-top: 1px solid rgba(170, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gg-consent.visible {
    transform: translateY(0);
}

.gg-consent__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.gg-consent__text {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.gg-consent__text a {
    color: #aa0000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gg-consent__text a:hover {
    color: #cc1111;
}

.gg-consent__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.gg-consent__btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gg-consent__btn--accept {
    color: #fff;
    background: linear-gradient(135deg, #aa0000, #cc1111);
}

.gg-consent__btn--accept:hover {
    box-shadow: 0 4px 16px rgba(170, 0, 0, 0.35);
    transform: translateY(-1px);
}

.gg-consent__btn--decline {
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gg-consent__btn--decline:hover {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .gg-consent__inner {
        flex-direction: column;
        text-align: center;
    }

    .gg-consent__actions {
        width: 100%;
        justify-content: center;
    }
}