.tm-cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #111;
    color: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    z-index: 9999;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.tm-cookie-content {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.tm-cookie-text p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: .85;
    color: #fff;
}

.tm-cookie-text a {
    color: #00b0bb;
    text-decoration: underline;
}

.tm-cookie-actions {
    display: flex;
    gap: 10px;
}

.tm-btn {
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
}

.tm-btn-primary {
    background: #00b0bb;
    border: none;
    color: #000;
}

.tm-btn-outline {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

/* MODAL */
.tm-cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tm-cookie-modal-box {
    background: #fff;
    padding: 28px;
    max-width: 480px;
    width: 100%;
    border-radius: 16px;
}

.tm-cookie-option {
    margin-top: 18px;
}

.tm-cookie-option p {
    font-size: 14px;
    color: #555;
    margin-left: 22px;
}

.tm-cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}
