.gcc-cookie {
    position: fixed;
    z-index: 2147483000;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gcc-cookie--visible {
    opacity: 1;
    transform: translateY(0);
}

.gcc-cookie--hide {
    opacity: 0;
    transform: translateY(12px);
}

.gcc-cookie--bottom-left,
.gcc-cookie--bottom-right {
    left: auto;
    right: auto;
    bottom: 16px;
    max-width: 420px;
}

.gcc-cookie--bottom-left {
    left: 16px;
}

.gcc-cookie--bottom-right {
    right: 16px;
}

.gcc-cookie__inner {
    pointer-events: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(22, 24, 28, 0.96);
    color: #f2f2f2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcc-cookie--bottom-left .gcc-cookie__inner,
.gcc-cookie--bottom-right .gcc-cookie__inner {
    margin: 0;
}

.gcc-cookie__text {
    flex: 1 1 220px;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #e8e8e8;
}

.gcc-cookie__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.gcc-cookie__link {
    font-size: 14px;
    color: #8ec5ff;
    text-decoration: underline;
}

.gcc-cookie__link:hover {
    color: #b3d7ff;
}

.gcc-cookie__btn {
    appearance: none;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: #4caf50;
    color: #fff;
    transition: background 0.2s ease;
}

.gcc-cookie__btn:hover {
    background: #43a047;
}

@media (max-width: 600px) {
    .gcc-cookie__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .gcc-cookie__actions {
        justify-content: stretch;
    }

    .gcc-cookie__btn {
        width: 100%;
    }
}
