/* Cookie consent banner + push notification toast (theme: var(--primary-color)) */

#gc-cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-dark-1, #1a1a1a);
    color: #f2f2f2;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 22px 26px;
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .4s ease, transform .4s ease;
}

#gc-cookie-consent.show {
    display: block;
}

#gc-cookie-consent.in {
    opacity: 1;
    transform: translateY(0);
}

#gc-cookie-consent .gc-cookie-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

#gc-cookie-consent .gc-cookie-body {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

#gc-cookie-consent .gc-cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
}

#gc-cookie-consent .gc-cookie-text strong {
    display: block;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

#gc-cookie-consent .gc-cookie-note {
    display: none;
    font-size: 12.5px;
    line-height: 1.5;
    color: #ffc107;
    margin-top: 10px;
    padding-left: 54px;
}

#gc-cookie-consent .gc-cookie-note.show {
    display: block;
}

#gc-cookie-consent .gc-cookie-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    justify-content: flex-end;
}

#gc-cookie-consent .gc-btn {
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 30px;
    transition: background .25s ease, color .25s ease, opacity .25s ease;
}

#gc-cookie-consent .gc-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

#gc-cookie-consent .gc-btn-accept:hover {
    opacity: .88;
}

#gc-cookie-consent .gc-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .2);
}

#gc-cookie-consent .gc-btn-decline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

@media (max-width: 575px) {
    #gc-cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 18px;
    }

    #gc-cookie-consent .gc-cookie-actions {
        justify-content: stretch;
    }

    #gc-cookie-consent .gc-cookie-actions .gc-btn {
        flex: 1;
        text-align: center;
    }
}

/* In-page (foreground) push notification toast */

#gc-push-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    max-width: 360px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    border-left: 4px solid var(--primary-color);
    padding: 16px 18px;
    display: none;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .35s ease, transform .35s ease;
    cursor: pointer;
}

#gc-push-toast.show {
    display: flex;
}

#gc-push-toast.in {
    opacity: 1;
    transform: translateY(0);
}

#gc-push-toast .gc-push-image {
    display: none;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
}

#gc-push-toast .gc-push-image.show {
    display: block;
}

#gc-push-toast .gc-push-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

#gc-push-toast .gc-push-content {
    flex: 1;
    min-width: 0;
}

#gc-push-toast .gc-push-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
}

#gc-push-toast .gc-push-body {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
