/* Cookie Consent Banner Styling */
.gv-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 48px);
    max-width: 800px;
    background: rgba(0, 46, 110, 0.9);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px 24px;
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: white;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
    opacity: 0;
}

.gv-cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

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

.gv-cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gv-cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gv-cookie-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffd700;
    /* Gold cookie icon */
    flex-shrink: 0;
}

.gv-cookie-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.gv-cookie-text p span {
    color: white;
    font-weight: 700;
}

.gv-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gv-cookie-btn-primary {
    background: #2ecc71;
    /* Accent green from design system */
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gv-cookie-btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.gv-cookie-btn-close {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-cookie-btn-close:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .gv-cookie-banner {
        bottom: 80px;
        /* Above mobile bottom nav */
        padding: 16px;
    }

    .gv-cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gv-cookie-actions {
        width: 100%;
        justify-content: space-between;
    }

    .gv-cookie-btn-primary {
        flex: 1;
        text-align: center;
    }
}