/* GT Popup Cookie — Frontend Bar */
.gt-cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 12px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.gt-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gt-cookie-content {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
}

.gt-cookie-content p {
    margin: 0;
}

.gt-cookie-content a {
    color: inherit !important;
}

.gt-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gt-cookie-buttons button {
    padding: 8px 20px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.gt-cookie-buttons button:hover {
    background: #ffffff;
    color: #000000;
}

.gt-cookie-accept {
    background: #ffffff !important;
    color: #000000 !important;
}

.gt-cookie-accept:hover {
    background: transparent !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .gt-cookie-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .gt-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
