.gs-cookie-banner {
    position: fixed;
    bottom: -100%; /* Hidden by default */
    right: 20px; /* Positioned on the right to avoid WhatsApp on the left */
    width: calc(100% - 40px);
    max-width: 360px;
    background-color: #ffffff;
    color: #333333;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    font-family: inherit;
    box-sizing: border-box;
    opacity: 0;
}

.gs-cookie-banner.is-visible {
    bottom: 20px;
    opacity: 1;
}

.gs-cookie-banner__content {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
}

.gs-cookie-banner__content p {
    margin: 0;
}

.gs-cookie-banner__content a {
    color: #f2a628; /* Go South brand color */
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
}

.gs-cookie-banner__content a:hover {
    color: #d18a1a;
    text-decoration: none;
}

.gs-cookie-banner__actions {
    display: flex;
    gap: 12px;
    width: 100%;
}

.gs-cookie-banner__actions button {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.gs-cookie-banner__actions .btn-reject {
    background-color: #ffffff;
    color: #666666;
    border: 1px solid #e0e0e0;
}

.gs-cookie-banner__actions .btn-reject:hover {
    background-color: #f8f8f8;
    color: #333333;
    border-color: #cccccc;
}

.gs-cookie-banner__actions .btn-accept-all {
    background-color: #f2a628; /* Go South brand color */
    color: #ffffff;
    border: 1px solid #f2a628;
}

.gs-cookie-banner__actions .btn-accept-all:hover {
    background-color: #d18a1a;
    border-color: #d18a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 166, 40, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .gs-cookie-banner__actions {
        flex-direction: column-reverse;
    }
}

