.tgm-cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    max-width: 420px;
    width: calc(100% - 48px);
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(10,10,10,0.14);
    padding: 24px;
    font-family: 'Nunito Sans', sans-serif;
}

@media (max-width: 600px) {
    .tgm-cookie-banner {
        bottom: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px;
    }
}

.tgm-cookie-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #0A0A0A;
    margin: 0 0 6px 0;
}

.tgm-cookie-body {
    font-size: 13px;
    color: rgba(10,10,10,0.6);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.tgm-cookie-link {
    color: #23A74A;
    text-decoration: underline;
}

.tgm-cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tgm-cookie-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 12px;
    border-radius: 100px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    transition: opacity 180ms;
}

.tgm-cookie-btn:hover { opacity: 0.85; }

.tgm-cookie-btn--accept {
    background: #23A74A;
    color: #FFFFFF;
}

.tgm-cookie-btn--reject {
    background: #F8F8F6;
    color: #0A0A0A;
    border: 1px solid #E8E8E6;
}

.tgm-cookie-btn--manage {
    background: none;
    color: rgba(10,10,10,0.5);
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
    text-decoration: underline;
}

.tgm-cookie-preferences {
    margin-top: 20px;
    border-top: 1px solid #E8E8E6;
    padding-top: 16px;
}

.tgm-cookie-pref-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #0A0A0A;
    margin: 0 0 14px 0;
}

.tgm-cookie-pref-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 16px;
}

.tgm-cookie-pref-name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #0A0A0A;
    display: block;
}

.tgm-cookie-pref-desc {
    font-size: 11px;
    color: rgba(10,10,10,0.5);
    line-height: 1.5;
    display: block;
    margin-top: 2px;
}

.tgm-cookie-pref-always {
    font-size: 11px;
    color: #23A74A;
    font-weight: 700;
    white-space: nowrap;
}

.tgm-cookie-toggle {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.tgm-cookie-toggle input { opacity: 0; width: 0; height: 0; }

.tgm-cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #E8E8E6;
    border-radius: 100px;
    transition: background 200ms;
}

.tgm-cookie-toggle-slider:before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 200ms;
}

.tgm-cookie-toggle input:checked + .tgm-cookie-toggle-slider {
    background: #23A74A;
}

.tgm-cookie-toggle input:checked + .tgm-cookie-toggle-slider:before {
    transform: translateX(18px);
}

.tgm-cookie-pref-actions {
    margin-top: 16px;
}
