.tcm-cookie-bar {
    position: fixed;
    left: 24px;
    bottom: 24px;
    min-width: 270px;
    max-width: 370px;
    background: #fff;
    box-shadow: 0 2px 16px rgba(60,60,60,.13);
    border-radius: 11px;
    z-index: 9999;
    padding: 21px 24px 15px 24px;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    color: #222;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.tcm-cookie-text {
    margin-bottom: 18px;
    color: #222;
    font-size: 15px;
    line-height: 1.48;
    text-align: left;
}
.tcm-cookie-text strong {
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 5px;
}
.tcm-cookie-text a {
    color: #4978d2;
    text-decoration: underline;
}
.tcm-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.tcm-btn {
    border: none;
    border-radius: 5px;
    padding: 6px 18px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background .13s, color .13s;
    box-shadow: none;
    outline: none;
}
.tcm-accept {
    background: #4978d2;
    color: #fff;
}
.tcm-reject {
    background: #e0e4ea;
    color: #263659;
}
.tcm-settings {
    background: transparent;
    color: #4978d2;
    border: 1px solid #4978d2;
    padding: 6px 16px;
}
.tcm-btn:active {
    filter: brightness(.93);
}

@media (max-width: 520px) {
    .tcm-cookie-bar {
        left: 3vw;
        right: 3vw;
        min-width: 0;
        max-width: none;
        width: auto;
        padding: 13px 5vw 10px 5vw;
        font-size: 14px;
    }
}

/* --- Модалка настроек --- */
.tcm-settings-modal {
    position: fixed;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(50, 52, 64, 0.18);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tcm-settings-window {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,.16);
    padding: 28px 22px 18px;
    max-width: 400px;
    width: 95vw;
}
.tcm-settings-title {
    font-weight: 600;
    font-size: 1.18rem;
    margin-bottom: 18px;
}
.tcm-settings-row { margin-bottom: 18px; }
.tcm-settings-name { font-size: 1.05rem; }
.tcm-settings-desc { font-size: .93rem; color: #666; margin-bottom: 6px; }
.tcm-settings-switch { margin-top: 2px; }
.tcm-settings-switch input[type="checkbox"] { margin-right: 7px; }
.tcm-settings-switch.tcm-disabled { opacity: .5; }
.tcm-settings-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}
.tcm-save-settings { background: #4978d2; color: #fff; }
.tcm-cancel-settings { background: #eee; color: #333; }
